From a620250a39b242fc284be9a2e08a17f271ca1cbf Mon Sep 17 00:00:00 2001 From: Kampe Date: Wed, 14 Aug 2024 10:31:40 +0200 Subject: [PATCH 1/5] modified JSONFetch to parse ConfIDent data --- .../vivoweb/harvester/fetch/JSONFetch.java | 320 +++++++++++++++--- 1 file changed, 269 insertions(+), 51 deletions(-) diff --git a/src/main/java/org/vivoweb/harvester/fetch/JSONFetch.java b/src/main/java/org/vivoweb/harvester/fetch/JSONFetch.java index 2c47bfaee..d03ce07c3 100644 --- a/src/main/java/org/vivoweb/harvester/fetch/JSONFetch.java +++ b/src/main/java/org/vivoweb/harvester/fetch/JSONFetch.java @@ -5,18 +5,20 @@ ******************************************************************************/ package org.vivoweb.harvester.fetch; -import java.io.IOException; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; +import java.io.IOException; +import java.util.*; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.jayway.jsonpath.*; import net.minidev.json.JSONObject; import net.minidev.json.JSONArray; +import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.vivoweb.harvester.util.FileAide; -import org.vivoweb.harvester.util.InitLog; -import org.vivoweb.harvester.util.SpecialEntities; -import org.vivoweb.harvester.util.WebAide; +import org.vivoweb.harvester.util.*; import org.vivoweb.harvester.util.args.ArgDef; import org.vivoweb.harvester.util.args.ArgList; import org.vivoweb.harvester.util.args.ArgParser; @@ -24,8 +26,6 @@ import org.vivoweb.harvester.util.repo.RecordHandler; import org.vivoweb.harvester.util.repo.RecordStreamOrigin; import org.vivoweb.harvester.util.repo.XMLRecordOutputStream; -import com.jayway.jsonpath.InvalidPathException; -import com.jayway.jsonpath.JsonPath; /** * Class for harvesting from JSON Data Sources @@ -48,7 +48,7 @@ public class JSONFetch implements RecordStreamOrigin { */ private RecordHandler rhOutput; - /** + /** * Namespace for RDF made from this database */ private String uriNS; @@ -291,6 +291,8 @@ private String buildNodeTypeNS(String nodeName) { public void execute() throws IOException { String jsonpath = new String(); +// Configuration conf = Configuration.defaultConfiguration(); +// conf.addOptions(Option.ALWAYS_RETURN_LIST); try { XMLRecordOutputStream xmlRos = xmlRosBase.clone(); @@ -300,10 +302,11 @@ public void execute() throws IOException { // Get json contents as String, check for url first then a file String jsonString = new String(); if (this.strAddress == null) { - System.out.println(getParser().getUsage()); - System.exit(1); + System.out.println(getParser().getUsage()); + System.exit(1); } - if (this.strAddress.startsWith("http:")) { + if (this.strAddress.startsWith("http")) { + log.debug("URL: "+this.strAddress); jsonString = WebAide.getURLContents(this.strAddress); } else { jsonString = FileAide.getTextContent(this.strAddress); @@ -314,16 +317,69 @@ public void execute() throws IOException { String name = this.nodeNames[i]; String id = this.idStrings[i]; jsonpath = this.pathStrings[i]; + List nodes = new ArrayList<>(); log.info("Using path: "+ jsonpath); JsonPath path = JsonPath.compile(jsonpath); log.info("got jsonpath: "+ path.getPath()); - List nodes = path.read(jsonString); + log.debug("type: "+path.read(jsonString).getClass().getSimpleName()); + + // if (path.read(jsonString).getClass().getSimpleName().equals("JSONArray")) { + // nodes = path.read(jsonString); +// } else { +// JSONObject tmpObject = path.read(jsonString); +// Gson gson = new GsonBuilder().create(); +// +// JsonObject job = gson.fromJson(tmpObject.toJSONString(), JsonObject.class); +// +// log.debug("JSONObject: " + job); +// //nodes = Arrays.asList(Arrays.stream(tmpObject).toArray()); +// } + + if (path.read(jsonString).getClass().getSimpleName().equals("JSONObject")) { + Iterator objectIterator; + JSONObject jsonObject = path.read(jsonString); + + objectIterator = jsonObject.keySet().iterator(); + + while (objectIterator.hasNext()) { + + String key = (String) objectIterator.next(); + Object objVal = jsonObject.get(key); + +// log.debug("field: "+key); +// log.debug("value: "+objVal); + JSONObject tmpOpj = new JSONObject(); + tmpOpj.put(key,objVal); + log.debug("adding: "+tmpOpj); + nodes.add(tmpOpj); + + } + } else { + nodes = path.read(jsonString); + } + + // log.debug("JSONArray: " +nodes); + + +// List nodes = path.read(jsonString); + +// List nodes = JsonPath.using(conf).parse(jsonString).read(jsonpath, new TypeReference>() {}); + +// TypeRef> typeReference = new TypeRef>() {}; +// ObjectMapper mapper = new ObjectMapper().registerModule(new JavaTimeModule()); +// List nodes = JsonPath.using( +// conf +// .jsonProvider(new JacksonJsonProvider(mapper)) +// .mappingProvider(new JacksonMappingProvider(mapper)) +// ) +// .parse(jsonString) +// .read(jsonpath, typeReference); + log.info("name: "+ name); - //log.info("id: "+ id); log.info("num nodes: " + nodes.size()); int count = 0; - for (Object o: nodes) { + for (Object o: nodes) { JSONObject jsonObject = (JSONObject) o; Iterator iter = jsonObject.keySet().iterator(); StringBuilder sb = new StringBuilder(); @@ -331,14 +387,14 @@ public void execute() throws IOException { //log.info("fixedkey: "+ fixedkey); StringBuilder recID = new StringBuilder(); recID.append("node_-_"); - recID.append(String.valueOf(count)); + recID.append(count); - //log.trace("Creating RDF for "+name+": "+recID); + log.trace("Creating RDF for "+name+": "+recID); // Build RDF BEGIN // Header info String nodeNS = "node-" + name; sb = new StringBuilder(); - sb.append("\n"); + sb.append("\n"); sb.append("\n"); @@ -394,36 +458,190 @@ public void execute() throws IOException { throw new IOException(e); } } - - public String getFieldXml(String field, Object val) { - StringBuffer sb = new StringBuffer(); - //log.debug("val type for field "+ field +": "+val.getClass().getName()); - sb.append(" <"); - sb.append(SpecialEntities.xmlEncode(field)); - sb.append(">"); - - // insert field value - if (val instanceof JSONArray) { - JSONArray array = (JSONArray) val; - log.debug("field is an array: "+ field); - Iterator iter = array.iterator(); - while (iter.hasNext()) { - Object obj = iter.next(); - log.debug("objtype: "+ obj.getClass().getName()); - log.debug("val: "+ array.toString()); - } - } else { - sb.append(SpecialEntities.xmlEncode(val.toString().trim())); - } - // Field END - sb.append("\n"); - return sb.toString(); + + public String getFieldXml(String field, Object val, String fixedkey) { + StringBuffer sb = new StringBuffer(); + + // to make it possible to handle confident data + if (field.contains(":")) { + field = field.replaceAll("/","_").substring(0,field.indexOf(':')); + } +// field = field.replaceAll("/","_").replaceAll(":","_"); + + log.debug("val type for field "+ field +": "+val.getClass().getName()); + sb.append(" <"); + sb.append(SpecialEntities.xmlEncode(field)); + sb.append(">"); + + // insert field value + if (val instanceof JSONArray) { + log.debug(field+" is an array with "+((JSONArray) val).size()+" elements") ; + XMLTagIndexing xmlTagIndexing = new XMLTagIndexing(); + xmlTagIndexing.setElementNo(0); + arrayHandlingV2(val, sb, xmlTagIndexing, fixedkey); + } if (val instanceof JSONObject) { + log.debug(field+" is an object with "+((JSONObject) val).size()+" elements") ; + objectHandling(val, sb); + } else if (val instanceof String || val instanceof Integer){ + sb.append(SpecialEntities.xmlEncode(val.toString().trim().replaceAll("\u201D", "'").replaceAll("\u201C","'"))); + } + // Field END + sb.append("\n"); + return sb.toString(); } +// private void arrayHandling(Object val, StringBuffer sb) { +// JSONArray array = (JSONArray) val; +// +// sb.append("\n"); +// Iterator arrayIterator = array.iterator(); +// Iterator objectIterator; +//// log.debug("val: "+ array); +// +// while (arrayIterator.hasNext()) { +// if (!arrayIndexOpen) { +// arrayIndexOpen = true; +// sb.append(" <"+ elementNo +">\n"); +// } +// +// Object obj = arrayIterator.next(); +//// log.debug("objtype: "+ obj.getClass().getName()); +// log.debug("val: "+ obj); +// +// if (obj instanceof JSONArray) { +// log.debug("there is an JSON Array inside: "+ obj); +//// arrayHandling(obj, sb); +// } else if (obj instanceof JSONObject) { +// log.debug("there is an JSON Object inside: "+ obj); +// +// JSONObject jsonObject = (JSONObject) obj; +// objectIterator = jsonObject.keySet().iterator(); +// +// +// while (objectIterator.hasNext()) { +// String key = (String) objectIterator.next(); +// Object objVal = jsonObject.get(key); +// if (objVal == null) { +// objVal = ""; +// } +// String fixedkey = key +// .replaceAll(" |/","_") +// .replaceAll("\\(|\\)",""); +// if (!Character.isDigit(fixedkey.charAt(0))) { +// String field = fixedkey; +// sb.append(getFieldXml(field, objVal)); +// } +// } +// +// +// } else { +//// sb.append(" <"+i+">"); +//// sb.append(obj); +//// sb.append("\n"); +//// i++; +// } +// if (arrayIndexOpen) { +// sb.append(" \n"); +// arrayIndexOpen = false; +// elementNo++; +// } +// } +// sb.append(" "); +// } + + private void objectHandling(Object val, StringBuffer sb) { + Iterator objectIterator; + + JSONObject jsonObject = (JSONObject) val; + objectIterator = jsonObject.keySet().iterator(); + + while (objectIterator.hasNext()) { + + String key = (String) objectIterator.next(); + Object objVal = jsonObject.get(key); + if (objVal == null) { + objVal = ""; + } + key = key.replaceAll("/","_") +// .replaceAll("\\(","_") +// .replaceAll("\\)","_") +// .replaceAll("'","_") +// .replaceAll(",","_") + .replaceAll(" ","_"); + if (!Character.isDigit(key.charAt(0))) { + + log.debug("field: "+key); +// sb.append(getTagName(field, objVal)); + sb.append(getFieldXml(key, objVal, key)); + } + } + } + + private void arrayHandlingV2(Object val, StringBuffer sb, XMLTagIndexing xmlTagIndexing, String fixedkey) { + JSONArray array = (JSONArray) val; + + sb.append("\n"); + Iterator arrayIterator = array.iterator(); + + log.debug("val: "+ val); + + while (arrayIterator.hasNext()) { + Object obj = arrayIterator.next(); + + if (!xmlTagIndexing.isArrayIndexOpen()) { + xmlTagIndexing.setArrayIndexOpen(); + String lastChar = fixedkey.substring(fixedkey.length() - 1); + if (lastChar.equals("s")) + xmlTagIndexing.setXmlTagName(StringUtils.chop(fixedkey)); + else + xmlTagIndexing.setXmlTagName(fixedkey); + sb.append(" <"+xmlTagIndexing.getXmlTagName()+"_"+ xmlTagIndexing.getElementNo() +">"); + } + +// log.debug("val: "+ obj); + + if (obj instanceof JSONArray) { + log.debug("there is an JSON Array inside: "+ obj); + XMLTagIndexing xmlArrayIndexing = new XMLTagIndexing(); + xmlArrayIndexing.setElementNo(0); + + arrayHandlingV2(val, sb, xmlArrayIndexing, fixedkey); + } else if (obj instanceof JSONObject) { + log.debug("there is an JSON Object inside: "+ obj); + objectHandling(obj, sb); + } + else { + sb.append(obj.toString().replaceAll("&","&")); + } + if (xmlTagIndexing.isArrayIndexOpen()) { + sb.append("\n"); + xmlTagIndexing.increaseElementNo(); + xmlTagIndexing.setArrayIndexClosed(); + } + } + sb.append(" "); + } + + public String getTagName(String field, Object val) { + StringBuffer sb = new StringBuffer(); + log.debug("val type for tag "+ field +": "+val.getClass().getName()); + sb.append(" <"); + sb.append(SpecialEntities.xmlEncode(field)); + sb.append(">"); + + // insert field value + sb.append(SpecialEntities.xmlEncode(val.toString().trim())); + + // Field END + sb.append("\n"); + return sb.toString(); + } @Override @@ -440,7 +658,7 @@ protected void logMapObject(Object obj) { Object valobj = mapobject.get(keyobj); log.info(keyobj +": "+ valobj); } - } + } /** From 2a36e9d16ff120f65f30f6bfc330cbc906a37ab5 Mon Sep 17 00:00:00 2001 From: Kampe Date: Fri, 16 Aug 2024 14:41:30 +0200 Subject: [PATCH 2/5] added confident fetch example --- .../confident-to-vivo.datamap.xsl | 218 + .../example-confident/confidentFetch.bat | 93 + .../example-confident/confidentFetch.sh | 118 + .../confidentfetch.config.xml | 19 + .../1.13-examples/example-confident/data.json | 40 + .../diff-additions.config.xml | 87 + .../diff-subtractions.config.xml | 86 + .../harvested-data.model.xml | 111 + .../openAlexfetch.config.xml | 16 + .../previous-harvest.model.xml | 10 + .../example-confident/raw-records.config.xml | 299 + .../example-confident/result.json | 10070 ++++++++++++++++ .../example-confident/transfer.config.xml | 38 + .../translated-records.config.xml | 299 + .../1.13-examples/example-confident/usage.txt | 20 + .../example-confident/vivo.model.xml | 104 + .../xsltranslator.config.xml | 17 + 17 files changed, 11645 insertions(+) create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confident-to-vivo.datamap.xsl create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.sh create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentfetch.config.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/data.json create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-additions.config.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-subtractions.config.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/harvested-data.model.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/openAlexfetch.config.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/previous-harvest.model.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/raw-records.config.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/result.json create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/transfer.config.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/translated-records.config.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/usage.txt create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/vivo.model.xml create mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/xsltranslator.config.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confident-to-vivo.datamap.xsl b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confident-to-vivo.datamap.xsl new file mode 100644 index 000000000..3cfca7ec1 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confident-to-vivo.datamap.xsl @@ -0,0 +1,218 @@ + + + + + + + https://forschungsatlas.fid-bau.de/individual/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat new file mode 100644 index 000000000..ea192859d --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat @@ -0,0 +1,93 @@ +@echo off + +IF exist data ( + rmdir /s /q data +) + +IF exist logs ( + rmdir /s /q logs +) + +REM set to the directory where the harvester was installed or unpacked +REM HARVESTER_INSTALL_DIR is set to the location of the installed harvester +REM If the deb file was used to install the harvester then the +REM directory should be set to /usr/share/vivo/harvester which is the +REM current location associated with the deb installation. +REM Since it is also possible the harvester was installed by +REM uncompressing the tar.gz the setting is available to be changed +REM and should agree with the installation location +set HARVESTER_INSTALL_DIR=C:\Users\KampeB\Dev\vivo-fid-bau-1-12\VIVO-Harvester +set HARVEST_NAME=OpenAlex-Fetch +FOR %%A IN (%Date:/=%) DO SET Today=%%A + +REM set the CLASSPATH and HARVESTER_JAVA_OPTS to be used by all commands +set CLASSPATH=%HARVESTER_INSTALL_DIR%/build/harvester.jar;%HARVESTER_INSTALL_DIR%/build/dependency/* +set HARVESTER_JAVA_OPTS=-Xms1024M -Xmx1024M + +REM Execute Fetch +REM This stage of the script is where the information is gathered together into one local +REM place to facilitate the further steps of the harvest. The data is stored locally +REM in a format based off of the source. The format is a form of RDF but not in the VIVO ontology +echo Fetch from Confident +@java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.fetch.JSONFetch -X confidentfetch.config.xml +if %errorlevel% neq 0 exit /b %errorlevel% + +REM Execute Translate +REM This is the part of the script where the input data is transformed into valid RDF +REM Translate will apply an xslt file to the fetched data which will result in the data +REM becoming valid RDF in the VIVO ontology +echo Translate data to valid RDF +@java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.translate.XSLTranslator -X xsltranslator.config.xml +if %errorlevel% neq 0 exit /b %errorlevel% + +REM Execute Transfer to import from record handler into local temp model +REM From this stage on the script places the data into a Jena model. A model is a +REM data storage structure similar to a database, but in RDF. +REM The harvester tool Transfer is used to move/add/remove/dump data in models. + echo Transfer RDF into temporary triple store + @java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.transfer.Transfer -X transfer.config.xml + if %errorlevel% neq 0 exit /b %errorlevel% + +REM Perform an update +REM The harvester maintains copies of previous harvests in order to perform the same harvest twice +REM but only add the new statements, while removing the old statements that are no longer +REM contained in the input data. This is done in several steps of finding the old statements, +REM then the new statements, and then applying them to the Vivo main model. + +REM Find Subtractions +REM When making the previous harvest model agree with the current harvest, the statements that exist in +REM the previous harvest but not in the current harvest need to be identified for removal. + echo Find Subtractions + @java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.diff.Diff -X diff-subtractions.config.xml + if %errorlevel% neq 0 exit /b %errorlevel% + +REM Find Additions +REM When making the previous harvest model agree with the current harvest, the statements that exist in +REM the current harvest but not in the previous harvest need to be identified for addition. + echo Find Additions + @java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.diff.Diff -X diff-additions.config.xml + if %errorlevel% neq 0 exit /b %errorlevel% + +REM Apply Subtractions to Previous model + echo Apply Subtractions to Previous model + @java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.transfer.Transfer -w INFO -o previous-harvest.model.xml -r data/vivo-subtractions.rdf.xml -m + if %errorlevel% neq 0 exit /b %errorlevel% + +REM Apply Additions to Previous model + echo Apply Additions to Previous model + @java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.transfer.Transfer -w INFO -o previous-harvest.model.xml -r data/vivo-additions.rdf.xml + if %errorlevel% neq 0 exit /b %errorlevel% + +REM Now that the changes have been applied to the previous harvest and the harvested data in vivo +REM agree with the previous harvest, the changes are now applied to the vivo model. +REM Apply Subtractions to VIVO model + echo Apply Subtractions to VIVO model + @java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.transfer.Transfer -w INFO -o vivo.model.xml -r data/vivo-subtractions.rdf.xml -m + if %errorlevel% neq 0 exit /b %errorlevel% + +REM Apply Additions to VIVO model + echo Apply Additions to VIVO model + @java %HARVESTER_JAVA_OPTS% -cp %CLASSPATH% org.vivoweb.harvester.transfer.Transfer -w INFO -o vivo.model.xml -r data/vivo-additions.rdf.xml + if %errorlevel% neq 0 exit /b %errorlevel% + +echo Harvest completed successfully \ No newline at end of file diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.sh b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.sh new file mode 100644 index 000000000..ae8cfd492 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.sh @@ -0,0 +1,118 @@ +#!/bin/bash +echo "Shutting down tomcat..." +systemctl stop tomcat9 +echo "done" + +echo "Starting harvest process..." + +export HARVESTER_INSTALL_DIR=/home/kampeb/vivo-fid-bau-1-12/confident-harvester/ +export HARVEST_NAME=Confident-Harvest +export DATE=`date +%Y-%m-%d'T'%T` + +# Add harvester binaries to path for execution +# The tools within this script refer to binaries supplied within the harvester +# Since they can be located in another directory their path should be +# included within the classpath and the path environment variables. +export PATH=$PATH:$HARVESTER_INSTALL_DIR/bin +export CLASSPATH=$HARVESTER_INSTALL_DIR/build/harvester.jar:$HARVESTER_INSTALL_DIR/build/dependency/* + +# Exit on first error +# The -e flag prevents the script from continuing even though a tool fails. +# Continuing after a tool failure is undesirable since the harvested +# data could be rendered corrupted and incompatible. +set -e + +# Supply the location of the detailed log file which is generated during the script. +# If there is an issue with a harvest, this file proves invaluable in finding +# a solution to the problem. It has become common practice in addressing a problem +# to request this file. The passwords and usernames are filtered out of this file +# to prevent these logs from containing sensitive information. +echo "Full Logging in $HARVEST_NAME.$DATE.log" +if [ ! -d logs ]; then + mkdir logs +fi +cd logs +touch $HARVEST_NAME.$DATE.log +ln -sf $HARVEST_NAME.$DATE.log $HARVEST_NAME.latest.log +cd .. + +#clear old data + +# For a fresh harvest, the removal of the previous information maintains data integrity. +# If you are continuing a partial run or wish to use the old and already retrieved +# data, you will want to comment out this line since it could prevent you from having +# the required harvest data. +rm -rf data + +# Execute Fetch +# This stage of the script is where the information is gathered together into one local +# place to facilitate the further steps of the harvest. The data is stored locally +# in a format based off of the source. The format is a form of RDF but not in the VIVO ontology +# The JDBCFetch tool in particular takes the data from the chosen source described in its +# configuration XML file and places it into record set in the flat RDF directly +# related to the rows, columns and tables described in the target database. +echo Execute jsonfetch from Confident.org +harvester-jsonfetch -w DEBUG -X confidentfetch.config.xml + +# Execute Translate +# This is the part of the script where the input data is transformed into valid RDF +# Translate will apply an xslt file to the fetched data which will result in the data +# becoming valid RDF in the VIVO ontology +echo Execute translate +harvester-xsltranslator -X xsltranslator.config.xml + +# Execute Transfer to import from record handler into local temp model +# From this stage on the script places the data into a Jena model. A model is a +# data storage structure similar to a database, but in RDF. +# The harvester tool Transfer is used to move/add/remove/dump data in models. +# For this call on the transfer tool: +# -s refers to the source translated records file, which was just produced by the translator step +# -o refers to the destination model for harvested data +# -d means that this call will also produce a text dump file in the specified location +echo Execute initial transfer to triple store +harvester-transfer -s translated-records.config.xml -o harvested-data.model.xml -d data/harvested-data/imported-records.rdf.xml + +# Perform an update +# The harvester maintains copies of previous harvests in order to perform the same harvest twice +# but only add the new statements, while removing the old statements that are no longer +# contained in the input data. This is done in several steps of finding the old statements, +# then the new statements, and then applying them to the Vivo main model. + +# Find Subtractions +# When making the previous harvest model agree with the current harvest, the statements that exist in +# the previous harvest but not in the current harvest need to be identified for removal. +echo Find Subtractions +harvester-diff -X diff-subtractions.config.xml + +# Find Additions +# When making the previous harvest model agree with the current harvest, the statements that exist in +# the current harvest but not in the previous harvest need to be identified for addition. +echo Find Additions +harvester-diff -X diff-additions.config.xml + +# Apply Subtractions to Previous model +echo Apply Subtractions to Previous model +harvester-transfer -o previous-harvest.model.xml -r data/vivo-subtractions.rdf.xml -m +# Apply Additions to Previous model +echo Apply Additions to Previous model +harvester-transfer -o previous-harvest.model.xml -r data/vivo-additions.rdf.xml + +# Now that the changes have been applied to the previous harvest and the harvested data in vivo +# agree with the previous harvest, the changes are now applied to the vivo model. +# Apply Subtractions to VIVO +echo Apply Subtractions to VIVO +harvester-transfer -o vivo.model.xml -r data/vivo-subtractions.rdf.xml -m +# Apply Additions to VIVO for pre-1.2 versions +echo Apply Additions to VIVO +harvester-transfer -o vivo.model.xml -r data/vivo-additions.rdf.xml + +#Output some counts +ORGS=`cat data/vivo-additions.rdf.xml | grep 'http://xmlns.com/foaf/0.1/Organization' | wc -l` +PEOPLE=`cat data/vivo-additions.rdf.xml | grep 'http://xmlns.com/foaf/0.1/Person' | wc -l` +POSITIONS=`cat data/vivo-additions.rdf.xml | grep 'positionForPerson' | wc -l` +echo "Imported $ORGS organizations, $PEOPLE people, and $POSITIONS positions" + +echo 'Harvest completed successfully' + +echo "Starting tomcat..." +systemctl restart tomcat9 diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentfetch.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentfetch.config.xml new file mode 100644 index 000000000..50f5a638d --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentfetch.config.xml @@ -0,0 +1,19 @@ + + + + + https://www.confident-conference.org/api.php?action=askargs&format=json&conditions=%1FConcept%3AEvents%1FHas%20subobject.Organization%3A%3A%2B%1FAcademic%20Field%3A%3AAcademic_Field%3AArchitecture%7C%7CAcademic_Field%3ACivil_Engineering%7C%7CAcademic_Field%3AUrban%20Studies&printouts=Academic%20Field%7CAcronym%7CTitle%7CIn%20Event%20Series%7CStart%20Date%7CEnd%20Date%7CEvent%20Mode%7CVenue%7CCity%7CRegion%7CCountry%7COfficial%20Website%7CDOI&parameters=offset%3D0%7Climit%3D500 + + raw-records.config.xml + http://vivo.example.com/harvest/aims_users/ + event + uid + $.query.results + + TRACE + + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/data.json b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/data.json new file mode 100644 index 000000000..5b66cd62b --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/data.json @@ -0,0 +1,40 @@ +{ + "nodes": [ { + "node": { + "Username": "fereira", + "Title": "Mr.", + "LastName": "Fereira", + "FirstName": "John", + "Profile": "consultant\r\ntechnology strategist", + "Email": "jaf30@cornell.edu", + "Country": "United States of America", + "geolocation": "http:\/\/aims.fao.org\/aos\/geopolitical.owl#United States of America", + "Organization": "Cornell University", + "Role": "Technology Strategist", + "Picture": "http:\/\/aims.fao.org\/sites\/default\/files\/profiles\/profile_image_108086.jpg", + "Expertise": "library technologies\r\nsemantic web\r\ninstitutional repositories", + "Interests": "Africa, agINFRA, AgMES - Agricultural Metadata Element Set, AgriDrupal, AgriOcean DSpace, AgriVIVO, AgroTagger, AGROVOC", + "Nid": "108086", + "Profile URL": "http:\/\/aims.fao.org\/node\/108086" + } + }, + { + "node": { + "Username": "valeria.pesce", + "LastName": "Pesce", + "FirstName": "Valeria", + "Profile": "In the last six years at the Global Forum on Agricultural research (GFAR) I have worked extensively on metadata standards and protocols for managing and exchanging information between systems, in strict collaboration with the OEKCS group in FAO.", + "Email": "valeria.pesce@fao.org", + "Country": "Italy", + "geolocation": "http:\/\/aims.fao.org\/aos\/geopolitical.owl#Italy", + "Organization": "Food and Agriculture Organization of the United Nations (FAO)", + "Role": "Information Management Specialist", + "Website": "http:\/\/www.valeriapesce.name", + "Picture": "http:\/\/aims.fao.org\/sites\/default\/files\/profiles\/profile_image_108074_0.jpg", + "Expertise": "Information management tools, information systems, information architectures", + "Interests": "agINFRA, AgriDrupal, AgriFeeds, AgriVIVO, authority control, automatic indexing, CIARD Content Management Task Force, CIARD RING, cloud services, CMS - Content Management Systems, data exchange, Drupal, IAALD - International Association of Agricultural Information Specialists, information management, institutional repository software, interoperability, Linked Open Data - LOD, RDF - Resource Description Framework, Semantic Web", + "Nid": "108074", + "Profile URL": "http:\/\/aims.fao.org\/node\/108074" + } + }] +} diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-additions.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-additions.config.xml new file mode 100644 index 000000000..5da668a40 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-additions.config.xml @@ -0,0 +1,87 @@ + + + + + + + + harvested-data.model.xml + + + + previous-harvest.model.xml + + + + + filename=data/vivo-additions.rdf.xml + + + + + + + + + + + + + + INFO + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-subtractions.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-subtractions.config.xml new file mode 100644 index 000000000..2b1455071 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-subtractions.config.xml @@ -0,0 +1,86 @@ + + + + + + + + previous-harvest.model.xml + + + + harvested-data.model.xml + + + + filename=data/vivo-subtractions.rdf.xml + + + + + + + + + + + + + + INFO + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/harvested-data.model.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/harvested-data.model.xml new file mode 100644 index 000000000..e722f84a1 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/harvested-data.model.xml @@ -0,0 +1,111 @@ + + + + + + + tdb + data/harvested-data/ + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/openAlexfetch.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/openAlexfetch.config.xml new file mode 100644 index 000000000..a22718827 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/openAlexfetch.config.xml @@ -0,0 +1,16 @@ + + + + https://api.openalex.org/works?filter=concepts.id:C66862320,authorships.institutions.country_code:de&per-page=200 + raw-records.config.xml + http://vivo.example.com/harvest/aims_users/ + publication + uid + $.results + TRACE + + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/previous-harvest.model.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/previous-harvest.model.xml new file mode 100644 index 000000000..6542cb903 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/previous-harvest.model.xml @@ -0,0 +1,10 @@ + + + + tdb + previous-harvest + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/raw-records.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/raw-records.config.xml new file mode 100644 index 000000000..8fd6c045f --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/raw-records.config.xml @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + org.vivoweb.harvester.util.repo.TextFileRecordHandler + data/raw-records + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/result.json b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/result.json new file mode 100644 index 000000000..a4af7b6a3 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/result.json @@ -0,0 +1,10070 @@ +{ + "printrequests": [ + { + "label": "", + "key": "", + "redi": "", + "typeid": "_wpg", + "mode": 2, + "format": false + }, + { + "label": "subject", + "key": "Academic_Field", + "redi": "", + "typeid": "_wpg", + "mode": 1, + "format": "" + }, + { + "label": "acronym", + "key": "Acronym", + "redi": "", + "typeid": "_txt", + "mode": 1, + "format": "" + }, + { + "label": "title", + "key": "Title", + "redi": "", + "typeid": "_txt", + "mode": 1, + "format": "" + }, + { + "label": "creator", + "key": "Organization", + "redi": "", + "typeid": "_wpg", + "mode": 4, + "format": "", + "chain": "Has subobject.Organization" + }, + { + "label": "in_series", + "key": "In_Event_Series", + "redi": "", + "typeid": "_wpg", + "mode": 1, + "format": "" + }, + { + "label": "start_date", + "key": "Start_Date", + "redi": "", + "typeid": "_dat", + "mode": 1, + "format": "" + }, + { + "label": "end_date", + "key": "End_Date", + "redi": "", + "typeid": "_dat", + "mode": 1, + "format": "" + }, + { + "label": "event_mode", + "key": "Event_Mode", + "redi": "", + "typeid": "_txt", + "mode": 1, + "format": "" + }, + { + "label": "venue", + "key": "Venue", + "redi": "", + "typeid": "_txt", + "mode": 1, + "format": "" + }, + { + "label": "city", + "key": "City", + "redi": "", + "typeid": "_txt", + "mode": 1, + "format": "" + }, + { + "label": "region", + "key": "Region", + "redi": "", + "typeid": "_txt", + "mode": 1, + "format": "" + }, + { + "label": "country", + "key": "Country", + "redi": "", + "typeid": "_wpg", + "mode": 1, + "format": "" + }, + { + "label": "website", + "key": "Official_Website", + "redi": "", + "typeid": "_uri", + "mode": 1, + "format": "" + }, + { + "label": "doi", + "key": "DOI", + "redi": "", + "typeid": "_eid", + "mode": 1, + "format": "" + } + ], + "results": { + "Event:A308e45c-f289-448d-990a-0c0231189d31": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "17th DOCOMOMO Germany Conference" + ], + "creator": [ + { + "fulltext": "Organization:Docomomo Deutschland e.V.", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Docomomo_Deutschland_e.V.", + "namespace": 7500, + "exists": "1", + "displaytitle": "Docomomo Deutschland e.V." + } + ], + "in_series": [ + { + "fulltext": "Event Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", + "namespace": 7100, + "exists": "1", + "displaytitle": "Jahrestagungen von Docomomo Deutschland e.V." + } + ], + "start_date": [ + { + "timestamp": "1583366400", + "raw": "1/2020/3/5" + } + ], + "end_date": [ + { + "timestamp": "1583539200", + "raw": "1/2020/3/7" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Hanseatenweg 10" + ], + "city": [ + "Berlin" + ], + "region": [ + "Berlin" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://docomomo.de/aktivitaeten/jahrestagungen/509-2020-17th-docomomo-germany-conference-info.html" + ], + "doi": [ + "10.25798/hhp9-wv56" + ] + }, + "fulltext": "Event:A308e45c-f289-448d-990a-0c0231189d31", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:A308e45c-f289-448d-990a-0c0231189d31", + "namespace": 7200, + "exists": "1", + "displaytitle": "17th DOCOMOMO Germany Conference" + }, + "Event:C3632bcc-a9be-40a4-baca-73bc319e3ca2": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "18. Docomomo Deutschland Tagung" + ], + "creator": [ + { + "fulltext": "Organization:Docomomo Deutschland e.V.", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Docomomo_Deutschland_e.V.", + "namespace": 7500, + "exists": "1", + "displaytitle": "Docomomo Deutschland e.V." + } + ], + "in_series": [ + { + "fulltext": "Event Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", + "namespace": 7100, + "exists": "1", + "displaytitle": "Jahrestagungen von Docomomo Deutschland e.V." + } + ], + "start_date": [ + { + "timestamp": "1614297600", + "raw": "1/2021/2/26" + } + ], + "end_date": [ + { + "timestamp": "1614384000", + "raw": "1/2021/2/27" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://docomomo.de/aktivitaeten/jahrestagungen/505-2021.html" + ], + "doi": [ + "10.25798/sys0-r112" + ] + }, + "fulltext": "Event:C3632bcc-a9be-40a4-baca-73bc319e3ca2", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:C3632bcc-a9be-40a4-baca-73bc319e3ca2", + "namespace": 7200, + "exists": "1", + "displaytitle": "18. Docomomo Deutschland Tagung" + }, + "Event:A246af97-8011-49c0-b153-21d75b3182b8": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "19. docomomo Deutschland Tagung" + ], + "creator": [ + { + "fulltext": "Organization:Docomomo Deutschland e.V.", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Docomomo_Deutschland_e.V.", + "namespace": 7500, + "exists": "1", + "displaytitle": "Docomomo Deutschland e.V." + } + ], + "in_series": [ + { + "fulltext": "Event Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", + "namespace": 7100, + "exists": "1", + "displaytitle": "Jahrestagungen von Docomomo Deutschland e.V." + } + ], + "start_date": [ + { + "timestamp": "1651190400", + "raw": "1/2022/4/29" + } + ], + "end_date": [ + { + "timestamp": "1651363200", + "raw": "1/2022/5/1" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "UNESCO-Welterbe Zollverein" + ], + "city": [ + "Essen" + ], + "region": [ + "North Rhine-Westphalia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://docomomo.de/aktivitaeten/jahrestagungen/527-2022-19-docomomo-deutschland-tagung-essen-2022.html" + ], + "doi": [ + "10.25798/5p67-jn41" + ] + }, + "fulltext": "Event:A246af97-8011-49c0-b153-21d75b3182b8", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:A246af97-8011-49c0-b153-21d75b3182b8", + "namespace": 7200, + "exists": "1", + "displaytitle": "19. docomomo Deutschland Tagung" + }, + "Event:9c083977-8f3e-461e-b4ab-5d3d6e3a5055": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Engineering" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "'\"`UNIQ--nowiki-00000060-QINU`\"'2 IngD4C" + ], + "title": [ + "Second Symposium Ingenieurbaukunst - Design for Construction" + ], + "creator": [ + { + "fulltext": "Organization:Ernst & Sohn", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ernst_%26_Sohn", + "namespace": 7500, + "exists": "1", + "displaytitle": "Ernst & Sohn" + }, + { + "fulltext": "Organization:Akademie der Ingenieure AkadIng GmbH", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Akademie_der_Ingenieure_AkadIng_GmbH", + "namespace": 7500, + "exists": "1", + "displaytitle": "Akademie der Ingenieure AkadIng GmbH" + } + ], + "in_series": [ + { + "fulltext": "Event Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", + "namespace": 7100, + "exists": "1", + "displaytitle": "Ingenieurbaukunst – Design for Construction" + } + ], + "start_date": [ + { + "timestamp": "1606176000", + "raw": "1/2020/11/24" + } + ], + "end_date": [ + { + "timestamp": "1606176000", + "raw": "1/2020/11/24" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.ernst-und-sohn.de/veranstaltungen/ingenieurbaukunst-design-for-construction-2020" + ], + "doi": [] + }, + "fulltext": "Event:9c083977-8f3e-461e-b4ab-5d3d6e3a5055", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:9c083977-8f3e-461e-b4ab-5d3d6e3a5055", + "namespace": 7200, + "exists": "1", + "displaytitle": "2 IngD4C" + }, + "Event:7a89536e-2b1c-472a-bc06-88be07cdac02": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "20. Projektetage der Bauforschung" + ], + "creator": [ + { + "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung,_Bundesamt_f%C3%BCr_Bauwesen_und_Raumordnung", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung" + } + ], + "in_series": [ + { + "fulltext": "Event Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", + "namespace": 7100, + "exists": "1", + "displaytitle": "BBSR - Projektetage der Bauforschung" + } + ], + "start_date": [ + { + "timestamp": "1655769600", + "raw": "1/2022/6/21" + } + ], + "end_date": [ + { + "timestamp": "1655942400", + "raw": "1/2022/6/23" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Zukunft Bau Pop-up Campus Aachen" + ], + "city": [ + "Aachen" + ], + "region": [ + "North Rhine-Westphalia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.zukunftbau.de/neue-meldung/20-projektetage-der-bauforschung" + ], + "doi": [] + }, + "fulltext": "Event:7a89536e-2b1c-472a-bc06-88be07cdac02", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:7a89536e-2b1c-472a-bc06-88be07cdac02", + "namespace": 7200, + "exists": "1", + "displaytitle": "20. Projektetage der Bauforschung" + }, + "Event:D47007e7-4c9d-4849-bc8c-84696afecb9d": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "20. docomomo Deutschland Tagung" + ], + "creator": [ + { + "fulltext": "Organization:Docomomo Deutschland e.V.", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Docomomo_Deutschland_e.V.", + "namespace": 7500, + "exists": "1", + "displaytitle": "Docomomo Deutschland e.V." + } + ], + "in_series": [ + { + "fulltext": "Event Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", + "namespace": 7100, + "exists": "1", + "displaytitle": "Jahrestagungen von Docomomo Deutschland e.V." + } + ], + "start_date": [ + { + "timestamp": "1682640000", + "raw": "1/2023/4/28" + } + ], + "end_date": [ + { + "timestamp": "1682726400", + "raw": "1/2023/4/29" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Paulskirche" + ], + "city": [ + "Frankfurt am Main" + ], + "region": [ + "Hesse" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://docomomo.de/aktivitaeten/jahrestagungen/560-20-docomomo-deutschland-tagung-ffm-2023.html" + ], + "doi": [ + "10.25798/6d6w-nz78" + ] + }, + "fulltext": "Event:D47007e7-4c9d-4849-bc8c-84696afecb9d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:D47007e7-4c9d-4849-bc8c-84696afecb9d", + "namespace": 7200, + "exists": "1", + "displaytitle": "20. docomomo Deutschland Tagung" + }, + "Event:43347958-f5ad-4d68-8025-1dfc79f947b2": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "21. Projektetage der Bauforschung" + ], + "creator": [ + { + "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung,_Bundesamt_f%C3%BCr_Bauwesen_und_Raumordnung", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung" + } + ], + "in_series": [ + { + "fulltext": "Event Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", + "namespace": 7100, + "exists": "1", + "displaytitle": "BBSR - Projektetage der Bauforschung" + } + ], + "start_date": [ + { + "timestamp": "1663632000", + "raw": "1/2022/9/20" + } + ], + "end_date": [ + { + "timestamp": "1663718400", + "raw": "1/2022/9/21" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.zukunftbau.de/neue-meldung/21-projektetage-der-bauforschung-im-online-format" + ], + "doi": [] + }, + "fulltext": "Event:43347958-f5ad-4d68-8025-1dfc79f947b2", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:43347958-f5ad-4d68-8025-1dfc79f947b2", + "namespace": 7200, + "exists": "1", + "displaytitle": "21. Projektetage der Bauforschung" + }, + "Event:D07bca32-d1e2-4d39-b5ec-a1310ec084b8": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "22. Projektetage der Bauforschung" + ], + "creator": [ + { + "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung,_Bundesamt_f%C3%BCr_Bauwesen_und_Raumordnung", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung" + } + ], + "in_series": [ + { + "fulltext": "Event Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", + "namespace": 7100, + "exists": "1", + "displaytitle": "BBSR - Projektetage der Bauforschung" + } + ], + "start_date": [ + { + "timestamp": "1669075200", + "raw": "1/2022/11/22" + } + ], + "end_date": [ + { + "timestamp": "1669161600", + "raw": "1/2022/11/23" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.zukunftbau.de/neue-meldung/22-projektetage-der-bauforschung-im-online-format" + ], + "doi": [] + }, + "fulltext": "Event:D07bca32-d1e2-4d39-b5ec-a1310ec084b8", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:D07bca32-d1e2-4d39-b5ec-a1310ec084b8", + "namespace": 7200, + "exists": "1", + "displaytitle": "22. Projektetage der Bauforschung" + }, + "Event:F82fb970-b6fb-49ba-908d-c4da68b0cab0": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "23. Projektetage der Bauforschung" + ], + "creator": [ + { + "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung,_Bundesamt_f%C3%BCr_Bauwesen_und_Raumordnung", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung" + } + ], + "in_series": [ + { + "fulltext": "Event Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", + "namespace": 7100, + "exists": "1", + "displaytitle": "BBSR - Projektetage der Bauforschung" + } + ], + "start_date": [ + { + "timestamp": "1678752000", + "raw": "1/2023/3/14" + } + ], + "end_date": [ + { + "timestamp": "1678838400", + "raw": "1/2023/3/15" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.zukunftbau.de/neue-meldung/23-projektetage-der-bauforschung-im-online-format" + ], + "doi": [ + "10.25798/735y-6b28" + ] + }, + "fulltext": "Event:F82fb970-b6fb-49ba-908d-c4da68b0cab0", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:F82fb970-b6fb-49ba-908d-c4da68b0cab0", + "namespace": 7200, + "exists": "1", + "displaytitle": "23. Projektetage der Bauforschung" + }, + "Event:5a2c9bff-13ac-40fa-afbf-f3a47bf6488c": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Engineering" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "'\"`UNIQ--nowiki-0000003A-QINU`\"'3 IngD4C" + ], + "title": [ + "3. Symposium Ingenieurbaukunst – Design for Construction§" + ], + "creator": [ + { + "fulltext": "Organization:Ernst & Sohn", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ernst_%26_Sohn", + "namespace": 7500, + "exists": "1", + "displaytitle": "Ernst & Sohn" + }, + { + "fulltext": "Organization:Akademie der Ingenieure AkadIng GmbH", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Akademie_der_Ingenieure_AkadIng_GmbH", + "namespace": 7500, + "exists": "1", + "displaytitle": "Akademie der Ingenieure AkadIng GmbH" + } + ], + "in_series": [ + { + "fulltext": "Event Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", + "namespace": 7100, + "exists": "1", + "displaytitle": "Ingenieurbaukunst – Design for Construction" + } + ], + "start_date": [ + { + "timestamp": "1637193600", + "raw": "1/2021/11/18" + } + ], + "end_date": [ + { + "timestamp": "1637193600", + "raw": "1/2021/11/18" + } + ], + "event_mode": [ + "hybrid" + ], + "venue": [ + "Museum Angewandte Kunst" + ], + "city": [ + "Frankfurt am Main" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://fort-und-weiterbildung.akademie-der-ingenieure.de/pub/Ingenieurbaukunst-Design-for-Construction/event/INGD/01/open" + ], + "doi": [] + }, + "fulltext": "Event:5a2c9bff-13ac-40fa-afbf-f3a47bf6488c", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:5a2c9bff-13ac-40fa-afbf-f3a47bf6488c", + "namespace": 7200, + "exists": "1", + "displaytitle": "3 IngD4C" + }, + "Event:3b9d829d-b8c0-497c-9e24-5712cabf85ba": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Engineering" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "'\"`UNIQ--nowiki-0000003C-QINU`\"'4 IngD4C" + ], + "title": [ + "4th Annual Symposium Ingenieurbaukunst – Design for Construction" + ], + "creator": [ + { + "fulltext": "Organization:Ernst & Sohn", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ernst_%26_Sohn", + "namespace": 7500, + "exists": "1", + "displaytitle": "Ernst & Sohn" + }, + { + "fulltext": "Organization:Akademie der Ingenieure AkadIng GmbH", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Akademie_der_Ingenieure_AkadIng_GmbH", + "namespace": 7500, + "exists": "1", + "displaytitle": "Akademie der Ingenieure AkadIng GmbH" + } + ], + "in_series": [ + { + "fulltext": "Event Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", + "namespace": 7100, + "exists": "1", + "displaytitle": "Ingenieurbaukunst – Design for Construction" + } + ], + "start_date": [ + { + "timestamp": "1669680000", + "raw": "1/2022/11/29" + } + ], + "end_date": [ + { + "timestamp": "1669680000", + "raw": "1/2022/11/29" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Wallraf-Richartz-Museum" + ], + "city": [ + "Cologne" + ], + "region": [ + "North Rhine-Westphalia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://ingd4c.org/" + ], + "doi": [ + "10.25798/cmes-v035" + ] + }, + "fulltext": "Event:3b9d829d-b8c0-497c-9e24-5712cabf85ba", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:3b9d829d-b8c0-497c-9e24-5712cabf85ba", + "namespace": 7200, + "exists": "1", + "displaytitle": "4 IngD4C" + }, + "Event:33fe5a30-127a-4cfd-8679-fc5ab045645a": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "7. Oldenburger BIMTag" + ], + "creator": [ + { + "fulltext": "Organization:Jade Hochschule", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Jade_Hochschule", + "namespace": 7500, + "exists": "1", + "displaytitle": "Jade Hochschule" + }, + { + "fulltext": "Organization:BIM Baumeister Akademie", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:BIM_Baumeister_Akademie", + "namespace": 7500, + "exists": "1", + "displaytitle": "BIM Baumeister Akademie" + } + ], + "in_series": [ + { + "fulltext": "Event Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", + "namespace": 7100, + "exists": "1", + "displaytitle": "Oldenburger BIMTage" + } + ], + "start_date": [ + { + "timestamp": "1582070400", + "raw": "1/2020/2/19" + } + ], + "end_date": [ + { + "timestamp": "1582156800", + "raw": "1/2020/2/20" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Campus Oldenburg Jade Hochschule" + ], + "city": [ + "Oldenburg" + ], + "region": [ + "Lower Saxony" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.jade-hs.de/unsere-hochschule/wir-stellen-uns-vor/veranstaltungen/oldenburger-bimtag/archiv/7-oldenburger-bimtag/" + ], + "doi": [] + }, + "fulltext": "Event:33fe5a30-127a-4cfd-8679-fc5ab045645a", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:33fe5a30-127a-4cfd-8679-fc5ab045645a", + "namespace": 7200, + "exists": "1", + "displaytitle": "7. Oldenburger BIMTag" + }, + "Event:50d5b904-ba1c-49f9-a9be-fbb1622a63ed": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "8. Forum Architekturwissenschaft" + ], + "creator": [ + { + "fulltext": "Organization:Netzwerk Architekturwissenschaft e.V.", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Netzwerk_Architekturwissenschaft_e.V.", + "namespace": 7500, + "exists": "1", + "displaytitle": "Netzwerk Architekturwissenschaft e.V." + }, + { + "fulltext": "Organization:Staatlichen Akademie der Bildenden Künste Stuttgart", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Staatlichen_Akademie_der_Bildenden_K%C3%BCnste_Stuttgart", + "namespace": 7500, + "exists": "1", + "displaytitle": "Staatlichen Akademie der Bildenden Künste Stuttgart" + }, + { + "fulltext": "Organization:Technischen Universität Darmstadt", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technischen_Universit%C3%A4t_Darmstadt", + "namespace": 7500, + "exists": "1", + "displaytitle": "Technischen Universität Darmstadt" + }, + { + "fulltext": "Organization:Technischen Universität Berlin", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technischen_Universit%C3%A4t_Berlin", + "namespace": 7500, + "exists": "1", + "displaytitle": "Technischen Universität Berlin" + }, + { + "fulltext": "Organization:Berliner Hochschule für Technik", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Berliner_Hochschule_f%C3%BCr_Technik", + "namespace": 7500, + "exists": "1", + "displaytitle": "Berliner Hochschule für Technik" + } + ], + "in_series": [ + { + "fulltext": "Event Series:2e579e1b-c86e-46bc-9020-aec4f7726bd4", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:2e579e1b-c86e-46bc-9020-aec4f7726bd4", + "namespace": 7100, + "exists": "1", + "displaytitle": "" + } + ], + "start_date": [ + { + "timestamp": "1646784000", + "raw": "1/2022/3/9" + } + ], + "end_date": [ + { + "timestamp": "1646956800", + "raw": "1/2022/3/11" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://architekturwissenschaft.net/foren/" + ], + "doi": [] + }, + "fulltext": "Event:50d5b904-ba1c-49f9-a9be-fbb1622a63ed", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:50d5b904-ba1c-49f9-a9be-fbb1622a63ed", + "namespace": 7200, + "exists": "1", + "displaytitle": "8. Forum Architekturwissenschaft" + }, + "Event:406ae21e-59e3-4643-81dd-c6fb57b457e6": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "8. Oldenburger BIMTag DIGITAL" + ], + "creator": [ + { + "fulltext": "Organization:Jade Hochschule", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Jade_Hochschule", + "namespace": 7500, + "exists": "1", + "displaytitle": "Jade Hochschule" + }, + { + "fulltext": "Organization:BIM Baumeister Akademie", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:BIM_Baumeister_Akademie", + "namespace": 7500, + "exists": "1", + "displaytitle": "BIM Baumeister Akademie" + } + ], + "in_series": [ + { + "fulltext": "Event Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", + "namespace": 7100, + "exists": "1", + "displaytitle": "Oldenburger BIMTage" + } + ], + "start_date": [ + { + "timestamp": "1631145600", + "raw": "1/2021/9/9" + } + ], + "end_date": [ + { + "timestamp": "1631145600", + "raw": "1/2021/9/9" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.jade-hs.de/unsere-hochschule/wir-stellen-uns-vor/veranstaltungen/oldenburger-bimtag/archiv/8-oldenburger-bimtag/" + ], + "doi": [] + }, + "fulltext": "Event:406ae21e-59e3-4643-81dd-c6fb57b457e6", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:406ae21e-59e3-4643-81dd-c6fb57b457e6", + "namespace": 7200, + "exists": "1", + "displaytitle": "8. Oldenburger BIMTag DIGITAL" + }, + "Event:9d654957-f498-4812-a636-bcd2de9a2ad7": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "9. Forum Architekturwissenschaft" + ], + "creator": [ + { + "fulltext": "Organization:Netzwerk Architekturwissenschaft e.V.", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Netzwerk_Architekturwissenschaft_e.V.", + "namespace": 7500, + "exists": "1", + "displaytitle": "Netzwerk Architekturwissenschaft e.V." + }, + { + "fulltext": "Organization:Technische Universität Berlin", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technische_Universit%C3%A4t_Berlin", + "namespace": 7500, + "exists": "1", + "displaytitle": "Technische Universität Berlin" + }, + { + "fulltext": "Organization:HafenCity Universität Hamburg", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:HafenCity_Universit%C3%A4t_Hamburg", + "namespace": 7500, + "exists": "1", + "displaytitle": "HafenCity Universität Hamburg" + } + ], + "in_series": [ + { + "fulltext": "Event Series:2e579e1b-c86e-46bc-9020-aec4f7726bd4", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:2e579e1b-c86e-46bc-9020-aec4f7726bd4", + "namespace": 7100, + "exists": "1", + "displaytitle": "" + } + ], + "start_date": [ + { + "timestamp": "1687305600", + "raw": "1/2023/6/21" + } + ], + "end_date": [ + { + "timestamp": "1687478400", + "raw": "1/2023/6/23" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Berlin" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://architekturwissenschaft.net/foren/" + ], + "doi": [ + "10.25798/sz6d-9p82" + ] + }, + "fulltext": "Event:9d654957-f498-4812-a636-bcd2de9a2ad7", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:9d654957-f498-4812-a636-bcd2de9a2ad7", + "namespace": 7200, + "exists": "1", + "displaytitle": "9. Forum Architekturwissenschaft" + }, + "Event:906adadb-6922-44af-83a5-6f80fcd89c33": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "9. Oldenburger BIMTag" + ], + "creator": [ + { + "fulltext": "Organization:Jade Hochschule", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Jade_Hochschule", + "namespace": 7500, + "exists": "1", + "displaytitle": "Jade Hochschule" + }, + { + "fulltext": "Organization:BIM Baumeister Akademie", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:BIM_Baumeister_Akademie", + "namespace": 7500, + "exists": "1", + "displaytitle": "BIM Baumeister Akademie" + } + ], + "in_series": [ + { + "fulltext": "Event Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", + "namespace": 7100, + "exists": "1", + "displaytitle": "Oldenburger BIMTage" + } + ], + "start_date": [ + { + "timestamp": "1662595200", + "raw": "1/2022/9/8" + } + ], + "end_date": [ + { + "timestamp": "1662681600", + "raw": "1/2022/9/9" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Campus Oldenburg Jade Hochschule" + ], + "city": [ + "Oldenburg" + ], + "region": [ + "Lower Saxony" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://bim-baumeister-akademie.de/" + ], + "doi": [] + }, + "fulltext": "Event:906adadb-6922-44af-83a5-6f80fcd89c33", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:906adadb-6922-44af-83a5-6f80fcd89c33", + "namespace": 7200, + "exists": "1", + "displaytitle": "9. Oldenburger BIMTag" + }, + "Event:4b7a7995-4f85-489f-aa83-43109bc2b309": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "ACADIA 2021" + ], + "title": [ + "Realignments: Toward Critical Computation" + ], + "creator": [ + { + "fulltext": "Organization:Association for Computer Aided Design in Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer_Aided_Design_in_Architecture", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer Aided Design in Architecture" + } + ], + "in_series": [ + { + "fulltext": "Event Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", + "namespace": 7100, + "exists": "1", + "displaytitle": "ACADIA - Conference of the Association for Computer Aided Design in Architecture" + } + ], + "start_date": [ + { + "timestamp": "1635897600", + "raw": "1/2021/11/3" + } + ], + "end_date": [ + { + "timestamp": "1636156800", + "raw": "1/2021/11/6" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "http://2021.acadia.org" + ], + "doi": [ + "10.25798/zcp6-ne69" + ] + }, + "fulltext": "Event:4b7a7995-4f85-489f-aa83-43109bc2b309", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:4b7a7995-4f85-489f-aa83-43109bc2b309", + "namespace": 7200, + "exists": "1", + "displaytitle": "ACADIA 2021" + }, + "Event:8aeb092d-e0a9-418a-b6c0-395df36f126b": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "ACADIA 2022" + ], + "title": [ + "Hybrids & Haecceities" + ], + "creator": [ + { + "fulltext": "Organization:Association for Computer Aided Design in Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer_Aided_Design_in_Architecture", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer Aided Design in Architecture" + }, + { + "fulltext": "Organization:Weitzmann School of Design, University of Pennsylvania", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Weitzmann_School_of_Design,_University_of_Pennsylvania", + "namespace": 7500, + "exists": "1", + "displaytitle": "Weitzmann School of Design, University of Pennsylvania" + } + ], + "in_series": [ + { + "fulltext": "Event Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", + "namespace": 7100, + "exists": "1", + "displaytitle": "ACADIA - Conference of the Association for Computer Aided Design in Architecture" + } + ], + "start_date": [ + { + "timestamp": "1666742400", + "raw": "1/2022/10/26" + } + ], + "end_date": [ + { + "timestamp": "1667001600", + "raw": "1/2022/10/29" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Annenberg Center for the Performing Arts" + ], + "city": [ + "Philadelphia" + ], + "region": [ + "Pennsylvania" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://2022.acadia.org/" + ], + "doi": [ + "10.25798/an1d-tc46" + ] + }, + "fulltext": "Event:8aeb092d-e0a9-418a-b6c0-395df36f126b", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:8aeb092d-e0a9-418a-b6c0-395df36f126b", + "namespace": 7200, + "exists": "1", + "displaytitle": "ACADIA 2022" + }, + "Event:Af472289-c8dc-4d1c-a04d-4523953b7804": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "ACADIA 2023" + ], + "title": [ + "Habits of the Anthropocene: Scarcity and Abundance in a Post-Material Economy" + ], + "creator": [ + { + "fulltext": "Organization:Association for Computer Aided Design in Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer_Aided_Design_in_Architecture", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer Aided Design in Architecture" + } + ], + "in_series": [ + { + "fulltext": "Event Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", + "namespace": 7100, + "exists": "1", + "displaytitle": "ACADIA - Conference of the Association for Computer Aided Design in Architecture" + } + ], + "start_date": [ + { + "timestamp": "1697846400", + "raw": "1/2023/10/21" + } + ], + "end_date": [ + { + "timestamp": "1698451200", + "raw": "1/2023/10/28" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "CU Denver" + ], + "city": [ + "Denver" + ], + "region": [ + "Colorado" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "https://acadia2023.cargo.site/" + ], + "doi": [ + "10.25798/9g5e-8y15" + ] + }, + "fulltext": "Event:Af472289-c8dc-4d1c-a04d-4523953b7804", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:Af472289-c8dc-4d1c-a04d-4523953b7804", + "namespace": 7200, + "exists": "1", + "displaytitle": "ACADIA 2023" + }, + "Event:6cc929ad-c2e6-44a0-8712-d83a09ee1d00": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "Advanced Building Skins 2022" + ], + "title": [ + "17th Advanced Building Skins Conference & Expo" + ], + "creator": [ + { + "fulltext": "Organization:Advanced Building Skins GmbH", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Advanced_Building_Skins_GmbH", + "namespace": 7500, + "exists": "1", + "displaytitle": "Advanced Building Skins GmbH" + } + ], + "in_series": [ + { + "fulltext": "Event Series:225acec2-253d-4c8d-b565-07d84b39d6fa", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:225acec2-253d-4c8d-b565-07d84b39d6fa", + "namespace": 7100, + "exists": "1", + "displaytitle": "Advanced Building Skins - International Advanced Building Skins Conference" + } + ], + "start_date": [ + { + "timestamp": "1666224000", + "raw": "1/2022/10/20" + } + ], + "end_date": [ + { + "timestamp": "1666310400", + "raw": "1/2022/10/21" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Bern" + ], + "region": [], + "country": [ + { + "fulltext": "Country:CH", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", + "namespace": 7400, + "exists": "1", + "displaytitle": "Switzerland (CH)" + } + ], + "website": [ + "https://abs.green/de/home" + ], + "doi": [] + }, + "fulltext": "Event:6cc929ad-c2e6-44a0-8712-d83a09ee1d00", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:6cc929ad-c2e6-44a0-8712-d83a09ee1d00", + "namespace": 7200, + "exists": "1", + "displaytitle": "Advanced Building Skins 2022" + }, + "Event:3573b15d-775d-43c2-89ad-9d8dae3c515a": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "Advanced Building Skins 2023" + ], + "title": [ + "18th Advanced Building Skins Conference & Expo" + ], + "creator": [ + { + "fulltext": "Organization:Advanced Building Skins GmbH", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Advanced_Building_Skins_GmbH", + "namespace": 7500, + "exists": "1", + "displaytitle": "Advanced Building Skins GmbH" + } + ], + "in_series": [ + { + "fulltext": "Event Series:225acec2-253d-4c8d-b565-07d84b39d6fa", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:225acec2-253d-4c8d-b565-07d84b39d6fa", + "namespace": 7100, + "exists": "1", + "displaytitle": "Advanced Building Skins - International Advanced Building Skins Conference" + } + ], + "start_date": [ + { + "timestamp": "1698624000", + "raw": "1/2023/10/30" + } + ], + "end_date": [ + { + "timestamp": "1698710400", + "raw": "1/2023/10/31" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Kursaal Congress Centre" + ], + "city": [ + "Bern" + ], + "region": [], + "country": [ + { + "fulltext": "Country:CH", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", + "namespace": 7400, + "exists": "1", + "displaytitle": "Switzerland (CH)" + } + ], + "website": [ + "https://abs.green/de/home" + ], + "doi": [] + }, + "fulltext": "Event:3573b15d-775d-43c2-89ad-9d8dae3c515a", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:3573b15d-775d-43c2-89ad-9d8dae3c515a", + "namespace": 7200, + "exists": "1", + "displaytitle": "Advanced Building Skins 2023" + }, + "Event:0d4f2426-4243-4a7b-bd96-4c7b6187cf84": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "Architecture Winter Talks 19/20" + ], + "creator": [ + { + "fulltext": "Organization:Fachbereich Architektur, Bochum University of Applied Sciences", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fachbereich_Architektur,_Bochum_University_of_Applied_Sciences", + "namespace": 7500, + "exists": "1", + "displaytitle": "Fachbereich Architektur, Bochum University of Applied Sciences" + } + ], + "in_series": [ + { + "fulltext": "Event Series:249277ea-0fb2-4de6-b449-b2b1d5c40340", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:249277ea-0fb2-4de6-b449-b2b1d5c40340", + "namespace": 7100, + "exists": "1", + "displaytitle": "Architecture Winter Talks" + } + ], + "start_date": [ + { + "timestamp": "1573689600", + "raw": "1/2019/11/14" + } + ], + "end_date": [ + { + "timestamp": "1578528000", + "raw": "1/2020/1/9" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Blue Box" + ], + "city": [ + "Bochum" + ], + "region": [ + "North Rhine-Westphalia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.hochschule-bochum.de/fba/veranstaltungen/" + ], + "doi": [ + "10.25798/2vy1-yz49" + ] + }, + "fulltext": "Event:0d4f2426-4243-4a7b-bd96-4c7b6187cf84", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:0d4f2426-4243-4a7b-bd96-4c7b6187cf84", + "namespace": 7200, + "exists": "1", + "displaytitle": "Architecture Winter Talks 19/20" + }, + "Event:B870c505-d7d1-4228-a3e7-3d072c00de19": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "Architecture Winter Talks 2022: Mit Holz" + ], + "creator": [ + { + "fulltext": "Organization:Fachbereich Architektur, Bochum University of Applied Sciences", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fachbereich_Architektur,_Bochum_University_of_Applied_Sciences", + "namespace": 7500, + "exists": "1", + "displaytitle": "Fachbereich Architektur, Bochum University of Applied Sciences" + } + ], + "in_series": [ + { + "fulltext": "Event Series:249277ea-0fb2-4de6-b449-b2b1d5c40340", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:249277ea-0fb2-4de6-b449-b2b1d5c40340", + "namespace": 7100, + "exists": "1", + "displaytitle": "Architecture Winter Talks" + } + ], + "start_date": [ + { + "timestamp": "1668038400", + "raw": "1/2022/11/10" + } + ], + "end_date": [ + { + "timestamp": "1673481600", + "raw": "1/2023/1/12" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Blue Box" + ], + "city": [ + "Bochum" + ], + "region": [ + "North Rhine-Westphalia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.hochschule-bochum.de/aktuelles/n/architecture-winter-talks-2022-mit-holz/" + ], + "doi": [ + "10.25798/xdda-cq33" + ] + }, + "fulltext": "Event:B870c505-d7d1-4228-a3e7-3d072c00de19", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:B870c505-d7d1-4228-a3e7-3d072c00de19", + "namespace": 7200, + "exists": "1", + "displaytitle": "Architecture Winter Talks 2022: Mit Holz" + }, + "Event:164df8cf-d059-4bab-8536-f49d65537969": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "Are You a Model? On an Architectural Medium of Spatial Exploration" + ], + "creator": [ + { + "fulltext": "Organization:Institute for Architecture Theory and Science, Technical University of Darmstadt", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Institute_for_Architecture_Theory_and_Science,_Technical_University_of_Darmstadt", + "namespace": 7500, + "exists": "1", + "displaytitle": "Institute for Architecture Theory and Science, Technical University of Darmstadt" + }, + { + "fulltext": "Organization:Dortmund University of Applied Sciences and Arts", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Dortmund_University_of_Applied_Sciences_and_Arts", + "namespace": 7500, + "exists": "1", + "displaytitle": "Dortmund University of Applied Sciences and Arts" + }, + { + "fulltext": "Organization:German Architecture Museum", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:German_Architecture_Museum", + "namespace": 7500, + "exists": "1", + "displaytitle": "German Architecture Museum" + }, + { + "fulltext": "Organization:Center for Critical Studies in Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Center_for_Critical_Studies_in_Architecture", + "namespace": 7500, + "exists": "1", + "displaytitle": "Center for Critical Studies in Architecture" + }, + { + "fulltext": "Organization:Specialized information service BAUdigital", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Specialized_information_service_BAUdigital", + "namespace": 7500, + "exists": "1", + "displaytitle": "Specialized information service BAUdigital" + }, + { + "fulltext": "Organization:Architectures of Order", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Architectures_of_Order", + "namespace": 7500, + "exists": "1", + "displaytitle": "Architectures of Order" + } + ], + "in_series": [], + "start_date": [ + { + "timestamp": "1667347200", + "raw": "1/2022/11/2" + } + ], + "end_date": [ + { + "timestamp": "1667520000", + "raw": "1/2022/11/4" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Technische Universität Darmstadt" + ], + "city": [ + "Darmstadt" + ], + "region": [ + "Hesse" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.architektur.tu-darmstadt.de/are-you-a-model/info_ayam/index.en.jsp" + ], + "doi": [ + "10.25798/1pff-xw70" + ] + }, + "fulltext": "Event:164df8cf-d059-4bab-8536-f49d65537969", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:164df8cf-d059-4bab-8536-f49d65537969", + "namespace": 7200, + "exists": "1", + "displaytitle": "Are You a Model? On an Architectural Medium of Spatial Exploration" + }, + "Event:4097611c-4cc8-4787-b515-b201e08bfeda": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "BauSIM 2018" + ], + "creator": [ + { + "fulltext": "Organization:Department of Building Lifecycle Management, Karlsruhe Institute of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Department_of_Building_Lifecycle_Management,_Karlsruhe_Institute_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Department of Building Lifecycle Management, Karlsruhe Institute of Technology" + }, + { + "fulltext": "Organization:Fachgebiet Bauphysik & Technischer Ausbau, Karlsruhe Institute of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fachgebiet_Bauphysik_%26_Technischer_Ausbau,_Karlsruhe_Institute_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Fachgebiet Bauphysik & Technischer Ausbau, Karlsruhe Institute of Technology" + }, + { + "fulltext": "Organization:IBPSA Germany and Austria", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:IBPSA_Germany_and_Austria", + "namespace": 7500, + "exists": "1", + "displaytitle": "IBPSA Germany and Austria" + } + ], + "in_series": [ + { + "fulltext": "Event Series:C275761d-2736-4434-ac73-7af4154bb262", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:C275761d-2736-4434-ac73-7af4154bb262", + "namespace": 7100, + "exists": "1", + "displaytitle": "BauSIM" + } + ], + "start_date": [ + { + "timestamp": "1537920000", + "raw": "1/2018/9/26" + } + ], + "end_date": [ + { + "timestamp": "1538092800", + "raw": "1/2018/9/28" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Karlsruhe Institute of Technology" + ], + "city": [ + "Karlsruhe" + ], + "region": [ + "Baden-Württemberg" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [], + "doi": [ + "10.25798/75fm-c639" + ] + }, + "fulltext": "Event:4097611c-4cc8-4787-b515-b201e08bfeda", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:4097611c-4cc8-4787-b515-b201e08bfeda", + "namespace": 7200, + "exists": "1", + "displaytitle": "BauSIM 2018" + }, + "Event:4581bb9b-5620-4d62-a4d3-d132db5276a5": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "BauSIM 2020" + ], + "creator": [ + { + "fulltext": "Organization:IBPSA Germany and Austria", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:IBPSA_Germany_and_Austria", + "namespace": 7500, + "exists": "1", + "displaytitle": "IBPSA Germany and Austria" + }, + { + "fulltext": "Organization:Graz University of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Graz_University_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Graz University of Technology" + } + ], + "in_series": [ + { + "fulltext": "Event Series:C275761d-2736-4434-ac73-7af4154bb262", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:C275761d-2736-4434-ac73-7af4154bb262", + "namespace": 7100, + "exists": "1", + "displaytitle": "BauSIM" + } + ], + "start_date": [ + { + "timestamp": "1600819200", + "raw": "1/2020/9/23" + } + ], + "end_date": [ + { + "timestamp": "1600992000", + "raw": "1/2020/9/25" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.tugraz.at/events/bausim2020/home" + ], + "doi": [] + }, + "fulltext": "Event:4581bb9b-5620-4d62-a4d3-d132db5276a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:4581bb9b-5620-4d62-a4d3-d132db5276a5", + "namespace": 7200, + "exists": "1", + "displaytitle": "BauSIM 2020" + }, + "Event:304dafc1-9faf-4de5-9d3b-dffde5732dcd": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "BauSIM 2022" + ], + "creator": [ + { + "fulltext": "Organization:IBPSA Germany and Austria", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:IBPSA_Germany_and_Austria", + "namespace": 7500, + "exists": "1", + "displaytitle": "IBPSA Germany and Austria" + }, + { + "fulltext": "Organization:Bauhaus University, Weimar", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bauhaus_University,_Weimar", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bauhaus University, Weimar" + } + ], + "in_series": [ + { + "fulltext": "Event Series:C275761d-2736-4434-ac73-7af4154bb262", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:C275761d-2736-4434-ac73-7af4154bb262", + "namespace": 7100, + "exists": "1", + "displaytitle": "BauSIM" + } + ], + "start_date": [ + { + "timestamp": "1663632000", + "raw": "1/2022/9/20" + } + ], + "end_date": [ + { + "timestamp": "1663804800", + "raw": "1/2022/9/22" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Bauhaus-Universität Weimar" + ], + "city": [ + "Weimar" + ], + "region": [ + "Thuringia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.uni-weimar.de/de/bauingenieurwesen/professuren/bauphysik/bausim2022/resuemee/" + ], + "doi": [] + }, + "fulltext": "Event:304dafc1-9faf-4de5-9d3b-dffde5732dcd", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:304dafc1-9faf-4de5-9d3b-dffde5732dcd", + "namespace": 7200, + "exists": "1", + "displaytitle": "BauSIM 2022" + }, + "Event:C839168d-46eb-4099-8fe4-e44b6be7d935": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "Braunschweiger Brandschutz-Tage 2022" + ], + "creator": [ + { + "fulltext": "Organization:Institut für Baustoffe, Massivbau und Brandschutz, Technische Universität Braunschweig", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Institut_f%C3%BCr_Baustoffe,_Massivbau_und_Brandschutz,_Technische_Universit%C3%A4t_Braunschweig", + "namespace": 7500, + "exists": "1", + "displaytitle": "Institut für Baustoffe, Massivbau und Brandschutz, Technische Universität Braunschweig" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A3b3f4fc-91eb-42b2-b407-bb3605d4a3da", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A3b3f4fc-91eb-42b2-b407-bb3605d4a3da", + "namespace": 7100, + "exists": "1", + "displaytitle": "Braunschweiger Brandschutz-Tage" + } + ], + "start_date": [ + { + "timestamp": "1663113600", + "raw": "1/2022/9/14" + } + ], + "end_date": [ + { + "timestamp": "1663200000", + "raw": "1/2022/9/15" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Milleniumhalle" + ], + "city": [ + "Braunschweig" + ], + "region": [ + "Lower Saxony" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.brandschutztage.info/rueckblick-braunschweiger-brandschutz-tage-2022/" + ], + "doi": [ + "10.25798/0nnf-d474" + ] + }, + "fulltext": "Event:C839168d-46eb-4099-8fe4-e44b6be7d935", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:C839168d-46eb-4099-8fe4-e44b6be7d935", + "namespace": 7200, + "exists": "1", + "displaytitle": "Braunschweiger Brandschutz-Tage 2022" + }, + "Event:3c1be573-6a50-4f9c-ba0a-e77e63b8cc64": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "Braunschweiger Brandschutz-Tage 2023" + ], + "creator": [ + { + "fulltext": "Organization:Institut für Baustoffe, Massivbau und Brandschutz, Technische Universität Braunschweig", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Institut_f%C3%BCr_Baustoffe,_Massivbau_und_Brandschutz,_Technische_Universit%C3%A4t_Braunschweig", + "namespace": 7500, + "exists": "1", + "displaytitle": "Institut für Baustoffe, Massivbau und Brandschutz, Technische Universität Braunschweig" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A3b3f4fc-91eb-42b2-b407-bb3605d4a3da", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A3b3f4fc-91eb-42b2-b407-bb3605d4a3da", + "namespace": 7100, + "exists": "1", + "displaytitle": "Braunschweiger Brandschutz-Tage" + } + ], + "start_date": [ + { + "timestamp": "1693958400", + "raw": "1/2023/9/6" + } + ], + "end_date": [ + { + "timestamp": "1694044800", + "raw": "1/2023/9/7" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Milleniumhalle" + ], + "city": [ + "Braunschweig" + ], + "region": [ + "Lower Saxony" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.brandschutztage.info/braunschweiger-brandschutz-tage-2023/" + ], + "doi": [ + "10.25798/024k-y528" + ] + }, + "fulltext": "Event:3c1be573-6a50-4f9c-ba0a-e77e63b8cc64", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:3c1be573-6a50-4f9c-ba0a-e77e63b8cc64", + "namespace": 7200, + "exists": "1", + "displaytitle": "Braunschweiger Brandschutz-Tage 2023" + }, + "Event:CAAD Futures 2017": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAAD Futures 2017" + ], + "title": [ + "CAAD Futures 2017: Future Trajectories" + ], + "creator": [ + { + "fulltext": "Organization:CAAD Futures Foundation", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CAAD_Futures_Foundation", + "namespace": 7500, + "exists": "1", + "displaytitle": "CAAD Futures Foundation" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAAD Futures", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAAD_Futures", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAAD Futures - CAAD Futures Conference" + } + ], + "start_date": [ + { + "timestamp": "1499817600", + "raw": "1/2017/7/12" + } + ], + "end_date": [ + { + "timestamp": "1499990400", + "raw": "1/2017/7/14" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Istanbul Technical University" + ], + "city": [ + "Istanbul" + ], + "region": [ + "Istanbul" + ], + "country": [ + { + "fulltext": "Country:TR", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:TR", + "namespace": 7400, + "exists": "1", + "displaytitle": "Turkey (TR)" + } + ], + "website": [], + "doi": [ + "10.25798/kk5s-1941" + ] + }, + "fulltext": "Event:CAAD Futures 2017", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAAD_Futures_2017", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAAD Futures 2017" + }, + "Event:D9d172a9-172e-4970-bef4-9c31e098b45d": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAAD Futures 2019" + ], + "title": [ + "CAAD Futures 2019: Hello Culture" + ], + "creator": [ + { + "fulltext": "Organization:CAAD Futures Foundation", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CAAD_Futures_Foundation", + "namespace": 7500, + "exists": "1", + "displaytitle": "CAAD Futures Foundation" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAAD Futures", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAAD_Futures", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAAD Futures - CAAD Futures Conference" + } + ], + "start_date": [ + { + "timestamp": "1561507200", + "raw": "1/2019/6/26" + } + ], + "end_date": [ + { + "timestamp": "1561680000", + "raw": "1/2019/6/28" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Korea Advanced Institute of Science and Technology" + ], + "city": [ + "Daejeon" + ], + "region": [ + "Daejeon" + ], + "country": [ + { + "fulltext": "Country:KR", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:KR", + "namespace": 7400, + "exists": "1", + "displaytitle": "Korea (Republic of) (KR)" + } + ], + "website": [], + "doi": [ + "10.25798/3gpx-xb97" + ] + }, + "fulltext": "Event:D9d172a9-172e-4970-bef4-9c31e098b45d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:D9d172a9-172e-4970-bef4-9c31e098b45d", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAAD Futures 2019" + }, + "Event:CAAD Futures 2021": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAAD Futures 2021" + ], + "title": [ + "CAAD Futures 2021: Design Imperatives: The Future is Now" + ], + "creator": [ + { + "fulltext": "Organization:University of Southern California", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_Southern_California", + "namespace": 7500, + "exists": "1", + "displaytitle": "University of Southern California" + }, + { + "fulltext": "Organization:CAAD Futures Foundation", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CAAD_Futures_Foundation", + "namespace": 7500, + "exists": "1", + "displaytitle": "CAAD Futures Foundation" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAAD Futures", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAAD_Futures", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAAD Futures - CAAD Futures Conference" + } + ], + "start_date": [ + { + "timestamp": "1626393600", + "raw": "1/2021/7/16" + } + ], + "end_date": [ + { + "timestamp": "1626566400", + "raw": "1/2021/7/18" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "University of Southern California" + ], + "city": [ + "Los Angeles" + ], + "region": [ + "California" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [], + "doi": [ + "10.25798/m09y-ps59" + ] + }, + "fulltext": "Event:CAAD Futures 2021", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAAD_Futures_2021", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAAD Futures 2021" + }, + "Event:B33db6cb-0c63-4dc5-be72-f9580099dc6b": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAAD Futures 2023" + ], + "title": [ + "CAAD Futures 2023: INTERCONNECTIONS: Co-computing beyond boundaries" + ], + "creator": [ + { + "fulltext": "Organization:CAAD Futures Foundation", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CAAD_Futures_Foundation", + "namespace": 7500, + "exists": "1", + "displaytitle": "CAAD Futures Foundation" + }, + { + "fulltext": "Organization:Faculty of Architecture and the Built Environment, Delft University of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture_and_the_Built_Environment,_Delft_University_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Faculty of Architecture and the Built Environment, Delft University of Technology" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAAD Futures", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAAD_Futures", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAAD Futures - CAAD Futures Conference" + } + ], + "start_date": [ + { + "timestamp": "1688515200", + "raw": "1/2023/7/5" + } + ], + "end_date": [ + { + "timestamp": "1688688000", + "raw": "1/2023/7/7" + } + ], + "event_mode": [ + "hybrid" + ], + "venue": [ + "Delft University of Technology" + ], + "city": [ + "Delft" + ], + "region": [ + "South Holland" + ], + "country": [ + { + "fulltext": "Country:NL", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:NL", + "namespace": 7400, + "exists": "1", + "displaytitle": "Netherlands (NL)" + } + ], + "website": [ + "https://www.caadfutures2023.nl/" + ], + "doi": [ + "10.25798/wn73-nq23" + ] + }, + "fulltext": "Event:B33db6cb-0c63-4dc5-be72-f9580099dc6b", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:B33db6cb-0c63-4dc5-be72-f9580099dc6b", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAAD Futures 2023" + }, + "Event:CAADRIA 2018": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAADRIA 2018" + ], + "title": [ + "23rd Conference on Computer-Aided Architectural Design Research in Asia" + ], + "creator": [ + { + "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" + }, + { + "fulltext": "Organization:School of Architecture, Tsinghua University", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:School_of_Architecture,_Tsinghua_University", + "namespace": 7500, + "exists": "1", + "displaytitle": "School of Architecture, Tsinghua University" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAADRIA", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" + } + ], + "start_date": [ + { + "timestamp": "1526515200", + "raw": "1/2018/5/17" + } + ], + "end_date": [ + { + "timestamp": "1526688000", + "raw": "1/2018/5/19" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Tsinghua University" + ], + "city": [ + "Beijing" + ], + "region": [ + "Beijing Shi" + ], + "country": [ + { + "fulltext": "Country:CN", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CN", + "namespace": 7400, + "exists": "1", + "displaytitle": "China (CN)" + } + ], + "website": [ + "https://www.caadria.org/conf/caadria2018/" + ], + "doi": [ + "10.25798/jnsn-4z15" + ] + }, + "fulltext": "Event:CAADRIA 2018", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAADRIA_2018", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAADRIA 2018" + }, + "Event:CAADRIA 2019": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAADRIA 2019" + ], + "title": [ + "24th Annual Conference of the Association for Computer-Aided Architectural Design Research in Asia" + ], + "creator": [ + { + "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" + }, + { + "fulltext": "Organization:Faculty of Architecture & Design, Victoria University of Wellington", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture_%26_Design,_Victoria_University_of_Wellington", + "namespace": 7500, + "exists": "1", + "displaytitle": "Faculty of Architecture & Design, Victoria University of Wellington" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAADRIA", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" + } + ], + "start_date": [ + { + "timestamp": "1555286400", + "raw": "1/2019/4/15" + } + ], + "end_date": [ + { + "timestamp": "1555545600", + "raw": "1/2019/4/18" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Faculty of Architecture & Design" + ], + "city": [ + "Wellington" + ], + "region": [ + "Greater Wellington" + ], + "country": [ + { + "fulltext": "Country:NZ", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:NZ", + "namespace": 7400, + "exists": "1", + "displaytitle": "New Zealand (NZ)" + } + ], + "website": [ + "https://caadria2019.nz/" + ], + "doi": [ + "10.25798/4mc1-nq06" + ] + }, + "fulltext": "Event:CAADRIA 2019", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAADRIA_2019", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAADRIA 2019" + }, + "Event:CAADRIA 2020": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAADRIA 2020" + ], + "title": [ + "25th International Conference of the Association for Computer-Aided Architectural Design Research in Asia" + ], + "creator": [ + { + "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" + }, + { + "fulltext": "Organization:Faculty of Architecture, Chulalongkorn University", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture,_Chulalongkorn_University", + "namespace": 7500, + "exists": "1", + "displaytitle": "Faculty of Architecture, Chulalongkorn University" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAADRIA", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" + } + ], + "start_date": [ + { + "timestamp": "1596585600", + "raw": "1/2020/8/5" + } + ], + "end_date": [ + { + "timestamp": "1596672000", + "raw": "1/2020/8/6" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://caadria2020.org/" + ], + "doi": [ + "10.25798/d1g7-az96" + ] + }, + "fulltext": "Event:CAADRIA 2020", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAADRIA_2020", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAADRIA 2020" + }, + "Event:CAADRIA 2021": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAADRIA 2021" + ], + "title": [ + "26th International Conference of the Association for Computer-Aided Architectural Design Research in Asia" + ], + "creator": [ + { + "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" + }, + { + "fulltext": "Organization:School of Architecture, Chinese University of Hong Kong", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:School_of_Architecture,_Chinese_University_of_Hong_Kong", + "namespace": 7500, + "exists": "1", + "displaytitle": "School of Architecture, Chinese University of Hong Kong" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAADRIA", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" + } + ], + "start_date": [ + { + "timestamp": "1616976000", + "raw": "1/2021/3/29" + } + ], + "end_date": [ + { + "timestamp": "1617235200", + "raw": "1/2021/4/1" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://caadria2021.org/" + ], + "doi": [ + "10.25798/bkx0-ac04" + ] + }, + "fulltext": "Event:CAADRIA 2021", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAADRIA_2021", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAADRIA 2021" + }, + "Event:716db11c-a8b1-4fe0-81a1-a1ff495f8d4a": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAADRIA 2022" + ], + "title": [ + "27th International Conference of the Association for Computer-Aided Architectural Design Research in Asia: Post Carbon" + ], + "creator": [ + { + "fulltext": "Organization:University of New South Wales", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_New_South_Wales", + "namespace": 7500, + "exists": "1", + "displaytitle": "University of New South Wales" + }, + { + "fulltext": "Organization:University of Sydney", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_Sydney", + "namespace": 7500, + "exists": "1", + "displaytitle": "University of Sydney" + }, + { + "fulltext": "Organization:University of Technology Sydney", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_Technology_Sydney", + "namespace": 7500, + "exists": "1", + "displaytitle": "University of Technology Sydney" + }, + { + "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAADRIA", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" + } + ], + "start_date": [ + { + "timestamp": "1649462400", + "raw": "1/2022/4/9" + } + ], + "end_date": [ + { + "timestamp": "1649980800", + "raw": "1/2022/4/15" + } + ], + "event_mode": [ + "hybrid" + ], + "venue": [ + "Museum of Applied Arts and Science" + ], + "city": [ + "Ultimo" + ], + "region": [ + "Sydney" + ], + "country": [ + { + "fulltext": "Country:AU", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:AU", + "namespace": 7400, + "exists": "1", + "displaytitle": "Australia (AU)" + } + ], + "website": [ + "https://caadria2022.org/" + ], + "doi": [ + "10.25798/r20y-ry33" + ] + }, + "fulltext": "Event:716db11c-a8b1-4fe0-81a1-a1ff495f8d4a", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:716db11c-a8b1-4fe0-81a1-a1ff495f8d4a", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAADRIA 2022" + }, + "Event:Ef676145-9fc9-4bc8-aefc-0c228cc6e277": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "CAADRIA 2023" + ], + "title": [ + "28th International Conference of the Association for Computer-Aided Architectural Design Research in Asia: Human-Centric" + ], + "creator": [ + { + "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" + }, + { + "fulltext": "Organization:Faculty of Architecture, CEPT University", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture,_CEPT_University", + "namespace": 7500, + "exists": "1", + "displaytitle": "Faculty of Architecture, CEPT University" + } + ], + "in_series": [ + { + "fulltext": "Event Series:CAADRIA", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", + "namespace": 7100, + "exists": "1", + "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" + } + ], + "start_date": [ + { + "timestamp": "1679097600", + "raw": "1/2023/3/18" + } + ], + "end_date": [ + { + "timestamp": "1679616000", + "raw": "1/2023/3/24" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "CEPT University" + ], + "city": [ + "Ahmedabad" + ], + "region": [ + "Gujarat" + ], + "country": [ + { + "fulltext": "Country:IN", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:IN", + "namespace": 7400, + "exists": "1", + "displaytitle": "India (IN)" + } + ], + "website": [ + "https://caadria2023.org/" + ], + "doi": [ + "10.25798/y4p4-yy07" + ] + }, + "fulltext": "Event:Ef676145-9fc9-4bc8-aefc-0c228cc6e277", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:Ef676145-9fc9-4bc8-aefc-0c228cc6e277", + "namespace": 7200, + "exists": "1", + "displaytitle": "CAADRIA 2023" + }, + "Event:00b39483-4365-426a-b5aa-b1912e22e23f": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Planning" + } + ], + "acronym": [ + "CHNT 27" + ], + "title": [ + "Conference on Cultural Heritage and New Technologies" + ], + "creator": [ + { + "fulltext": "Organization:CHNT-ICOMOS Austria", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CHNT-ICOMOS_Austria", + "namespace": 7500, + "exists": "1", + "displaytitle": "CHNT-ICOMOS Austria" + } + ], + "in_series": [ + { + "fulltext": "Event Series:50200210-5ac3-4f77-8145-55c0e4529eea", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50200210-5ac3-4f77-8145-55c0e4529eea", + "namespace": 7100, + "exists": "1", + "displaytitle": "CHNT - Conference on Cultural Heritage and New Technologies" + } + ], + "start_date": [ + { + "timestamp": "1668038400", + "raw": "1/2022/11/10" + } + ], + "end_date": [ + { + "timestamp": "1668211200", + "raw": "1/2022/11/12" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Vienna City Hall" + ], + "city": [ + "Vienna" + ], + "region": [ + "Vienna" + ], + "country": [ + { + "fulltext": "Country:AT", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:AT", + "namespace": 7400, + "exists": "1", + "displaytitle": "Austria (AT)" + } + ], + "website": [ + "https://chnt.at/" + ], + "doi": [ + "10.25798/v9j4-zn02" + ] + }, + "fulltext": "Event:00b39483-4365-426a-b5aa-b1912e22e23f", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:00b39483-4365-426a-b5aa-b1912e22e23f", + "namespace": 7200, + "exists": "1", + "displaytitle": "CHNT 27" + }, + "Event:6f447e2a-7e3b-4000-b4cb-300b43eb1fbb": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Planning" + } + ], + "acronym": [ + "CHNT 28" + ], + "title": [ + "Conference on Cultural Heritage and New Technologies 2023" + ], + "creator": [ + { + "fulltext": "Organization:CHNT-ICOMOS Austria", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CHNT-ICOMOS_Austria", + "namespace": 7500, + "exists": "1", + "displaytitle": "CHNT-ICOMOS Austria" + } + ], + "in_series": [ + { + "fulltext": "Event Series:50200210-5ac3-4f77-8145-55c0e4529eea", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50200210-5ac3-4f77-8145-55c0e4529eea", + "namespace": 7100, + "exists": "1", + "displaytitle": "CHNT - Conference on Cultural Heritage and New Technologies" + } + ], + "start_date": [ + { + "timestamp": "1700006400", + "raw": "1/2023/11/15" + } + ], + "end_date": [ + { + "timestamp": "1700179200", + "raw": "1/2023/11/17" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Vienna City Hall" + ], + "city": [ + "Vienna" + ], + "region": [ + "Vienna" + ], + "country": [ + { + "fulltext": "Country:AT", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:AT", + "namespace": 7400, + "exists": "1", + "displaytitle": "Austria (AT)" + } + ], + "website": [ + "https://chnt.at/" + ], + "doi": [ + "10.25798/c8tz-1p29" + ] + }, + "fulltext": "Event:6f447e2a-7e3b-4000-b4cb-300b43eb1fbb", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:6f447e2a-7e3b-4000-b4cb-300b43eb1fbb", + "namespace": 7200, + "exists": "1", + "displaytitle": "CHNT 28" + }, + "Event:70318a3f-7f8a-417a-a402-d896bc7e3449": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "CHS 2021" + ], + "title": [ + "8th Construction History Society Conference" + ], + "creator": [ + { + "fulltext": "Organization:Department of Architecture, Cambridge University", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Department_of_Architecture,_Cambridge_University", + "namespace": 7500, + "exists": "1", + "displaytitle": "Department of Architecture, Cambridge University" + }, + { + "fulltext": "Organization:Construction History Society", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Construction_History_Society", + "namespace": 7500, + "exists": "1", + "displaytitle": "Construction History Society" + } + ], + "in_series": [ + { + "fulltext": "Event Series:33d13622-2819-4d42-9a6a-867832ec0d9a", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:33d13622-2819-4d42-9a6a-867832ec0d9a", + "namespace": 7100, + "exists": "1", + "displaytitle": "CHS - Construction History Society Conferences" + } + ], + "start_date": [ + { + "timestamp": "1630022400", + "raw": "1/2021/8/27" + } + ], + "end_date": [ + { + "timestamp": "1630108800", + "raw": "1/2021/8/28" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [], + "doi": [ + "10.25798/k450-eq64" + ] + }, + "fulltext": "Event:70318a3f-7f8a-417a-a402-d896bc7e3449", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:70318a3f-7f8a-417a-a402-d896bc7e3449", + "namespace": 7200, + "exists": "1", + "displaytitle": "CHS 2021" + }, + "Event:4cb84374-cd56-496f-8b4d-72da0bed3370": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "CHS 2022" + ], + "title": [ + "9th Construction History Society Conferences" + ], + "creator": [ + { + "fulltext": "Organization:Department of Architecture, Cambridge University", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Department_of_Architecture,_Cambridge_University", + "namespace": 7500, + "exists": "1", + "displaytitle": "Department of Architecture, Cambridge University" + }, + { + "fulltext": "Organization:Construction History Society", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Construction_History_Society", + "namespace": 7500, + "exists": "1", + "displaytitle": "Construction History Society" + } + ], + "in_series": [ + { + "fulltext": "Event Series:33d13622-2819-4d42-9a6a-867832ec0d9a", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:33d13622-2819-4d42-9a6a-867832ec0d9a", + "namespace": 7100, + "exists": "1", + "displaytitle": "CHS - Construction History Society Conferences" + } + ], + "start_date": [ + { + "timestamp": "1648771200", + "raw": "1/2022/4/1" + } + ], + "end_date": [ + { + "timestamp": "1648857600", + "raw": "1/2022/4/2" + } + ], + "event_mode": [ + "hybrid" + ], + "venue": [ + "Queens College" + ], + "city": [ + "Cambridge" + ], + "region": [ + "Cambridgeshire" + ], + "country": [ + { + "fulltext": "Country:GB", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", + "namespace": 7400, + "exists": "1", + "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" + } + ], + "website": [], + "doi": [ + "10.25798/qhwe-s169" + ] + }, + "fulltext": "Event:4cb84374-cd56-496f-8b4d-72da0bed3370", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:4cb84374-cd56-496f-8b4d-72da0bed3370", + "namespace": 7200, + "exists": "1", + "displaytitle": "CHS 2022" + }, + "Event:F31fce8b-b353-4532-96dc-8e111bb8b680": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "CHS 2023" + ], + "title": [ + "Tenth Annual Conference of the Construction History Society" + ], + "creator": [ + { + "fulltext": "Organization:Department of Architecture, Cambridge University", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Department_of_Architecture,_Cambridge_University", + "namespace": 7500, + "exists": "1", + "displaytitle": "Department of Architecture, Cambridge University" + }, + { + "fulltext": "Organization:Construction History Society", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Construction_History_Society", + "namespace": 7500, + "exists": "1", + "displaytitle": "Construction History Society" + } + ], + "in_series": [ + { + "fulltext": "Event Series:33d13622-2819-4d42-9a6a-867832ec0d9a", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:33d13622-2819-4d42-9a6a-867832ec0d9a", + "namespace": 7100, + "exists": "1", + "displaytitle": "CHS - Construction History Society Conferences" + } + ], + "start_date": [ + { + "timestamp": "1681257600", + "raw": "1/2023/4/12" + } + ], + "end_date": [ + { + "timestamp": "1681344000", + "raw": "1/2023/4/13" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Queens College" + ], + "city": [ + "Cambridge" + ], + "region": [ + "Cambridgeshire" + ], + "country": [ + { + "fulltext": "Country:GB", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", + "namespace": 7400, + "exists": "1", + "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" + } + ], + "website": [ + "https://www.constructionhistory.co.uk/" + ], + "doi": [ + "10.25798/rwp7-3959" + ] + }, + "fulltext": "Event:F31fce8b-b353-4532-96dc-8e111bb8b680", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:F31fce8b-b353-4532-96dc-8e111bb8b680", + "namespace": 7200, + "exists": "1", + "displaytitle": "CHS 2023" + }, + "Event:Bb4e7d03-0d7f-4a8b-a3e5-024b7c1aa247": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Urban Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Planning" + }, + { + "fulltext": "Academic Field:Urban Studies", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Studies", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Studies" + }, + { + "fulltext": "Academic Field:Spatial Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Spatial_Planning", + "namespace": 7300, + "exists": "1", + "displaytitle": "Spatial Planning" + }, + { + "fulltext": "Academic Field:Planning Research", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Planning_Research", + "namespace": 7300, + "exists": "1", + "displaytitle": "Planning Research" + } + ], + "acronym": [ + "DOKORP 2023" + ], + "title": [ + "\"If possible, please turn around!\" Research and Planning for the Sustainability Turn" + ], + "creator": [ + { + "fulltext": "Organization:Technical University of Dortmund", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technical_University_of_Dortmund", + "namespace": 7500, + "exists": "1", + "displaytitle": "Technical University of Dortmund" + }, + { + "fulltext": "Organization:ARL – Academy for Territorial Development in the Leibniz Association", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ARL_%E2%80%93_Academy_for_Territorial_Development_in_the_Leibniz_Association", + "namespace": 7500, + "exists": "1", + "displaytitle": "ARL – Academy for Territorial Development in the Leibniz Association" + }, + { + "fulltext": "Organization:ILS–Institut für Landes- und Stadtentwicklungsforschung", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ILS%E2%80%93Institut_f%C3%BCr_Landes-_und_Stadtentwicklungsforschung", + "namespace": 7500, + "exists": "1", + "displaytitle": "ILS–Institut für Landes- und Stadtentwicklungsforschung" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5044e3b2-4741-43de-b4a0-c013bc91296d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5044e3b2-4741-43de-b4a0-c013bc91296d", + "namespace": 7100, + "exists": "1", + "displaytitle": "DOKORP - Dortmund Conference on Spatial and Planning Research" + } + ], + "start_date": [ + { + "timestamp": "1676246400", + "raw": "1/2023/2/13" + } + ], + "end_date": [ + { + "timestamp": "1676332800", + "raw": "1/2023/2/14" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Dortmund" + ], + "region": [], + "country": [], + "website": [ + "https://raumplanung.tu-dortmund.de/en/events-transfer/dortmund-conference/dokorp-2023/" + ], + "doi": [] + }, + "fulltext": "Event:Bb4e7d03-0d7f-4a8b-a3e5-024b7c1aa247", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:Bb4e7d03-0d7f-4a8b-a3e5-024b7c1aa247", + "namespace": 7200, + "exists": "1", + "displaytitle": "DOKORP 2023" + }, + "Event:991b978d-1294-406b-ac2b-56933d9b19bf": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Planning" + } + ], + "acronym": [], + "title": [ + "Design Modelling Symposium 2019: Impact: Design With All Senses" + ], + "creator": [ + { + "fulltext": "Organization:Berlin University of the Arts", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Berlin_University_of_the_Arts", + "namespace": 7500, + "exists": "1", + "displaytitle": "Berlin University of the Arts" + } + ], + "in_series": [ + { + "fulltext": "Event Series:19925f30-9ed8-4e04-856a-919a7cfbe8bf", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:19925f30-9ed8-4e04-856a-919a7cfbe8bf", + "namespace": 7100, + "exists": "1", + "displaytitle": "Design Modelling Symposium" + } + ], + "start_date": [ + { + "timestamp": "1569024000", + "raw": "1/2019/9/21" + } + ], + "end_date": [ + { + "timestamp": "1569369600", + "raw": "1/2019/9/25" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "University of the Arts Berlin" + ], + "city": [ + "Berlin" + ], + "region": [ + "Berlin" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [], + "doi": [ + "10.25798/mtkn-he65" + ] + }, + "fulltext": "Event:991b978d-1294-406b-ac2b-56933d9b19bf", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:991b978d-1294-406b-ac2b-56933d9b19bf", + "namespace": 7200, + "exists": "1", + "displaytitle": "Design Modelling Symposium 2019: Impact: Design With All Senses" + }, + "Event:E06f1888-5ee2-418d-ade5-d981e5335958": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Planning" + } + ], + "acronym": [], + "title": [ + "Design Modelling Symposium 2022: Towards Radical Regeneration" + ], + "creator": [ + { + "fulltext": "Organization:Berlin University of the Arts", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Berlin_University_of_the_Arts", + "namespace": 7500, + "exists": "1", + "displaytitle": "Berlin University of the Arts" + } + ], + "in_series": [ + { + "fulltext": "Event Series:19925f30-9ed8-4e04-856a-919a7cfbe8bf", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:19925f30-9ed8-4e04-856a-919a7cfbe8bf", + "namespace": 7100, + "exists": "1", + "displaytitle": "Design Modelling Symposium" + } + ], + "start_date": [ + { + "timestamp": "1664150400", + "raw": "1/2022/9/26" + } + ], + "end_date": [ + { + "timestamp": "1664323200", + "raw": "1/2022/9/28" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "University of the Arts Berlin" + ], + "city": [ + "Berlin" + ], + "region": [ + "Berlin" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://design-modelling-symposium.de/" + ], + "doi": [ + "10.25798/19wb-cx82" + ] + }, + "fulltext": "Event:E06f1888-5ee2-418d-ade5-d981e5335958", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:E06f1888-5ee2-418d-ade5-d981e5335958", + "namespace": 7200, + "exists": "1", + "displaytitle": "Design Modelling Symposium 2022: Towards Radical Regeneration" + }, + "Event:E8cace1e-30f0-4050-ab90-cb2fb91ba959": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "Digital Concrete 2018" + ], + "title": [ + "1st RILEM International Conference on Concrete and Digital Fabrication" + ], + "creator": [ + { + "fulltext": "Organization:International Union of Laboratories and Experts in Construction Materials, Systems and Structures", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Union_of_Laboratories_and_Experts_in_Construction_Materials,_Systems_and_Structures", + "namespace": 7500, + "exists": "1", + "displaytitle": "International Union of Laboratories and Experts in Construction Materials, Systems and Structures" + } + ], + "in_series": [ + { + "fulltext": "Event Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", + "namespace": 7100, + "exists": "1", + "displaytitle": "Digital Concrete - RILEM International Conference on Concrete and Digital Fabrication" + } + ], + "start_date": [ + { + "timestamp": "1536537600", + "raw": "1/2018/9/10" + } + ], + "end_date": [ + { + "timestamp": "1536710400", + "raw": "1/2018/9/12" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Campus Hönggerberg" + ], + "city": [ + "Zürich" + ], + "region": [ + "Zürich" + ], + "country": [ + { + "fulltext": "Country:CH", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", + "namespace": 7400, + "exists": "1", + "displaytitle": "Switzerland (CH)" + } + ], + "website": [], + "doi": [ + "10.25798/e9zv-2038" + ] + }, + "fulltext": "Event:E8cace1e-30f0-4050-ab90-cb2fb91ba959", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:E8cace1e-30f0-4050-ab90-cb2fb91ba959", + "namespace": 7200, + "exists": "1", + "displaytitle": "Digital Concrete 2018" + }, + "Event:29a2953c-a933-4639-98f7-ac7071adcb70": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "Digital Concrete 2020" + ], + "title": [ + "2nd RILEM International Conference on Concrete and Digital Fabrication" + ], + "creator": [ + { + "fulltext": "Organization:Eindhoven University of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Eindhoven_University_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Eindhoven University of Technology" + }, + { + "fulltext": "Organization:International Union of Laboratories and Experts in Construction Materials, Systems and Structures", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Union_of_Laboratories_and_Experts_in_Construction_Materials,_Systems_and_Structures", + "namespace": 7500, + "exists": "1", + "displaytitle": "International Union of Laboratories and Experts in Construction Materials, Systems and Structures" + } + ], + "in_series": [ + { + "fulltext": "Event Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", + "namespace": 7100, + "exists": "1", + "displaytitle": "Digital Concrete - RILEM International Conference on Concrete and Digital Fabrication" + } + ], + "start_date": [ + { + "timestamp": "1593993600", + "raw": "1/2020/7/6" + } + ], + "end_date": [ + { + "timestamp": "1594252800", + "raw": "1/2020/7/9" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.tue.nl/en/our-university/calendar-and-events/06-07-2020-digital-concrete-2020/" + ], + "doi": [ + "10.25798/c30y-y330" + ] + }, + "fulltext": "Event:29a2953c-a933-4639-98f7-ac7071adcb70", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:29a2953c-a933-4639-98f7-ac7071adcb70", + "namespace": 7200, + "exists": "1", + "displaytitle": "Digital Concrete 2020" + }, + "Event:237d4e2c-ca76-4fba-ba46-452f750118e1": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "Digital Concrete 2022" + ], + "title": [ + "3rd RILEM International Conference on Concrete and Digital Fabrication" + ], + "creator": [ + { + "fulltext": "Organization:Loughborough University", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Loughborough_University", + "namespace": 7500, + "exists": "1", + "displaytitle": "Loughborough University" + }, + { + "fulltext": "Organization:International Union of Laboratories and Experts in Construction Materials, Systems and Structures", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Union_of_Laboratories_and_Experts_in_Construction_Materials,_Systems_and_Structures", + "namespace": 7500, + "exists": "1", + "displaytitle": "International Union of Laboratories and Experts in Construction Materials, Systems and Structures" + } + ], + "in_series": [ + { + "fulltext": "Event Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", + "namespace": 7100, + "exists": "1", + "displaytitle": "Digital Concrete - RILEM International Conference on Concrete and Digital Fabrication" + } + ], + "start_date": [ + { + "timestamp": "1656288000", + "raw": "1/2022/6/27" + } + ], + "end_date": [ + { + "timestamp": "1656460800", + "raw": "1/2022/6/29" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Edward Herbert Building" + ], + "city": [ + "Loughborough" + ], + "region": [ + "Leicestershire" + ], + "country": [ + { + "fulltext": "Country:GB", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", + "namespace": 7400, + "exists": "1", + "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" + } + ], + "website": [ + "https://www.digitalconcrete2022.com/" + ], + "doi": [ + "10.25798/n86b-at09" + ] + }, + "fulltext": "Event:237d4e2c-ca76-4fba-ba46-452f750118e1", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:237d4e2c-ca76-4fba-ba46-452f750118e1", + "namespace": 7200, + "exists": "1", + "displaytitle": "Digital Concrete 2022" + }, + "Event:50fcf186-9b7a-433e-bd9d-ccd53a3a3c6b": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "EAHN 2018" + ], + "title": [ + "EAHN 2018 Fifth International Meeting" + ], + "creator": [ + { + "fulltext": "Organization:European Architectural History Network", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:European_Architectural_History_Network", + "namespace": 7500, + "exists": "1", + "displaytitle": "European Architectural History Network" + } + ], + "in_series": [ + { + "fulltext": "Event Series:7f37e6eb-1235-46ba-9472-afa00953399d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:7f37e6eb-1235-46ba-9472-afa00953399d", + "namespace": 7100, + "exists": "1", + "displaytitle": "EAHN Biennial Conferences - Biennial Conferences of the European architectural histoty network" + } + ], + "start_date": [ + { + "timestamp": "1528848000", + "raw": "1/2018/6/13" + } + ], + "end_date": [ + { + "timestamp": "1529107200", + "raw": "1/2018/6/16" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Estonian National Library" + ], + "city": [ + "Tallinn" + ], + "region": [ + "Harju" + ], + "country": [ + { + "fulltext": "Country:EE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:EE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Estonia (EE)" + } + ], + "website": [], + "doi": [] + }, + "fulltext": "Event:50fcf186-9b7a-433e-bd9d-ccd53a3a3c6b", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:50fcf186-9b7a-433e-bd9d-ccd53a3a3c6b", + "namespace": 7200, + "exists": "1", + "displaytitle": "EAHN 2018" + }, + "Event:2969e449-1698-45b7-aa43-181a409b18a2": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "EAHN 2021" + ], + "title": [ + "EAHN 2021 Sixth International Meeting" + ], + "creator": [ + { + "fulltext": "Organization:European Architectural History Network", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:European_Architectural_History_Network", + "namespace": 7500, + "exists": "1", + "displaytitle": "European Architectural History Network" + } + ], + "in_series": [ + { + "fulltext": "Event Series:7f37e6eb-1235-46ba-9472-afa00953399d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:7f37e6eb-1235-46ba-9472-afa00953399d", + "namespace": 7100, + "exists": "1", + "displaytitle": "EAHN Biennial Conferences - Biennial Conferences of the European architectural histoty network" + } + ], + "start_date": [ + { + "timestamp": "1622592000", + "raw": "1/2021/6/2" + } + ], + "end_date": [ + { + "timestamp": "1622851200", + "raw": "1/2021/6/5" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [], + "doi": [] + }, + "fulltext": "Event:2969e449-1698-45b7-aa43-181a409b18a2", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:2969e449-1698-45b7-aa43-181a409b18a2", + "namespace": 7200, + "exists": "1", + "displaytitle": "EAHN 2021" + }, + "Event:D13897b9-1945-4830-b2d1-274e4e3834b8": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "EAHN 2022" + ], + "title": [ + "EAHN 2022 Seventh International Meeting" + ], + "creator": [ + { + "fulltext": "Organization:European Architectural History Network", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:European_Architectural_History_Network", + "namespace": 7500, + "exists": "1", + "displaytitle": "European Architectural History Network" + }, + { + "fulltext": "Organization:Superior Technical School of Architecture of Madrid, Technical University of Madrid", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Superior_Technical_School_of_Architecture_of_Madrid,_Technical_University_of_Madrid", + "namespace": 7500, + "exists": "1", + "displaytitle": "Superior Technical School of Architecture of Madrid, Technical University of Madrid" + } + ], + "in_series": [ + { + "fulltext": "Event Series:7f37e6eb-1235-46ba-9472-afa00953399d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:7f37e6eb-1235-46ba-9472-afa00953399d", + "namespace": 7100, + "exists": "1", + "displaytitle": "EAHN Biennial Conferences - Biennial Conferences of the European architectural histoty network" + } + ], + "start_date": [ + { + "timestamp": "1655251200", + "raw": "1/2022/6/15" + } + ], + "end_date": [ + { + "timestamp": "1655596800", + "raw": "1/2022/6/19" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Architecture School of Madrid - Polytechnic University of Madrid" + ], + "city": [ + "Madrid" + ], + "region": [ + "Madrid" + ], + "country": [ + { + "fulltext": "Country:ES", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:ES", + "namespace": 7400, + "exists": "1", + "displaytitle": "Spain (ES)" + } + ], + "website": [ + "https://eahn2022conference.aq.upm.es/" + ], + "doi": [] + }, + "fulltext": "Event:D13897b9-1945-4830-b2d1-274e4e3834b8", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:D13897b9-1945-4830-b2d1-274e4e3834b8", + "namespace": 7200, + "exists": "1", + "displaytitle": "EAHN 2022" + }, + "Event:B86521d2-86f1-489d-89cb-ccd498a2efd8": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "EAHN 2024" + ], + "title": [ + "EAHN 2024 Eighth International Meeting" + ], + "creator": [ + { + "fulltext": "Organization:European Architectural History Network", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:European_Architectural_History_Network", + "namespace": 7500, + "exists": "1", + "displaytitle": "European Architectural History Network" + } + ], + "in_series": [ + { + "fulltext": "Event Series:7f37e6eb-1235-46ba-9472-afa00953399d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:7f37e6eb-1235-46ba-9472-afa00953399d", + "namespace": 7100, + "exists": "1", + "displaytitle": "EAHN Biennial Conferences - Biennial Conferences of the European architectural histoty network" + } + ], + "start_date": [ + { + "timestamp": "1718755200", + "raw": "1/2024/6/19" + } + ], + "end_date": [ + { + "timestamp": "1719100800", + "raw": "1/2024/6/23" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "National Technical University of Athens" + ], + "city": [ + "Athens" + ], + "region": [ + "Attica" + ], + "country": [ + { + "fulltext": "Country:GR", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:GR", + "namespace": 7400, + "exists": "1", + "displaytitle": "Greece (GR)" + } + ], + "website": [ + "http://eahn2024.arch.ntua.gr/" + ], + "doi": [] + }, + "fulltext": "Event:B86521d2-86f1-489d-89cb-ccd498a2efd8", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:B86521d2-86f1-489d-89cb-ccd498a2efd8", + "namespace": 7200, + "exists": "1", + "displaytitle": "EAHN 2024" + }, + "Event:811bacf3-1f17-44fc-9ec9-b9a8d103317c": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "Euro Med Sec 04" + ], + "title": [ + "Fourth European and Mediterranean Structural Engineering and Construction Conference" + ], + "creator": [ + { + "fulltext": "Organization:Leipzig University of Applied Sciences", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Leipzig_University_of_Applied_Sciences", + "namespace": 7500, + "exists": "1", + "displaytitle": "Leipzig University of Applied Sciences" + }, + { + "fulltext": "Organization:ISEC Society", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ISEC_Society", + "namespace": 7500, + "exists": "1", + "displaytitle": "ISEC Society" + } + ], + "in_series": [ + { + "fulltext": "Event Series:86c30d76-d35f-4a0a-a70b-aaa162b78cc9", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:86c30d76-d35f-4a0a-a70b-aaa162b78cc9", + "namespace": 7100, + "exists": "1", + "displaytitle": "EURO MED SEC - European and Mediterranean Structural Engineering and Construction Conference" + } + ], + "start_date": [ + { + "timestamp": "1655683200", + "raw": "1/2022/6/20" + } + ], + "end_date": [ + { + "timestamp": "1656115200", + "raw": "1/2022/6/25" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Leipzig University of Applied Sciences" + ], + "city": [ + "Leipzig" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.isec-society.org/EURO_MED_SEC_04/" + ], + "doi": [] + }, + "fulltext": "Event:811bacf3-1f17-44fc-9ec9-b9a8d103317c", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:811bacf3-1f17-44fc-9ec9-b9a8d103317c", + "namespace": 7200, + "exists": "1", + "displaytitle": "Euro Med Sec 04" + }, + "Event:FABRICATE 2011": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "FABRICATE 2011" + ], + "title": [ + "FABRICATE 2011" + ], + "creator": [ + { + "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bartlett Faculty of the Built Environment, University College London" + } + ], + "in_series": [ + { + "fulltext": "Event Series:FABRICATE", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", + "namespace": 7100, + "exists": "1", + "displaytitle": "FABRICATE - FABRICATE" + } + ], + "start_date": [ + { + "timestamp": "1293840000", + "raw": "1/2011" + } + ], + "end_date": [ + { + "timestamp": "1293840000", + "raw": "1/2011" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "London" + ], + "region": [], + "country": [ + { + "fulltext": "Country:GB", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", + "namespace": 7400, + "exists": "1", + "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" + } + ], + "website": [ + "https://www.fabricate.org/?page_id=15774" + ], + "doi": [] + }, + "fulltext": "Event:FABRICATE 2011", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:FABRICATE_2011", + "namespace": 7200, + "exists": "1", + "displaytitle": "FABRICATE 2011" + }, + "Event:FABRICATE 2014": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "FABRICATE 2014" + ], + "title": [ + "FABRICATE 2014" + ], + "creator": [ + { + "fulltext": "Organization:Professorship for Architecture and Digital Fabrication, ETH Zurich", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Professorship_for_Architecture_and_Digital_Fabrication,_ETH_Zurich", + "namespace": 7500, + "exists": "1", + "displaytitle": "Professorship for Architecture and Digital Fabrication, ETH Zurich" + }, + { + "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bartlett Faculty of the Built Environment, University College London" + } + ], + "in_series": [ + { + "fulltext": "Event Series:FABRICATE", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", + "namespace": 7100, + "exists": "1", + "displaytitle": "FABRICATE - FABRICATE" + } + ], + "start_date": [ + { + "timestamp": "1388534400", + "raw": "1/2014" + } + ], + "end_date": [ + { + "timestamp": "1388534400", + "raw": "1/2014" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Zürich" + ], + "region": [], + "country": [ + { + "fulltext": "Country:CH", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", + "namespace": 7400, + "exists": "1", + "displaytitle": "Switzerland (CH)" + } + ], + "website": [ + "https://www.fabricate.org/?page_id=16312" + ], + "doi": [] + }, + "fulltext": "Event:FABRICATE 2014", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:FABRICATE_2014", + "namespace": 7200, + "exists": "1", + "displaytitle": "FABRICATE 2014" + }, + "Event:FABRICATE 2017": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "FABRICATE 2017" + ], + "title": [ + "FABRICATE 2017" + ], + "creator": [ + { + "fulltext": "Organization:Institute for Computational Design and Construction, University of Stuttgart", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Institute_for_Computational_Design_and_Construction,_University_of_Stuttgart", + "namespace": 7500, + "exists": "1", + "displaytitle": "Institute for Computational Design and Construction, University of Stuttgart" + }, + { + "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bartlett Faculty of the Built Environment, University College London" + } + ], + "in_series": [ + { + "fulltext": "Event Series:FABRICATE", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", + "namespace": 7100, + "exists": "1", + "displaytitle": "FABRICATE - FABRICATE" + } + ], + "start_date": [ + { + "timestamp": "1491004800", + "raw": "1/2017/4" + } + ], + "end_date": [ + { + "timestamp": "1491004800", + "raw": "1/2017/4" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Stuttgart" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.fabricate.org/?page_id=16524" + ], + "doi": [] + }, + "fulltext": "Event:FABRICATE 2017", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:FABRICATE_2017", + "namespace": 7200, + "exists": "1", + "displaytitle": "FABRICATE 2017" + }, + "Event:FABRICATE 2020": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Engineering" + }, + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "FABRICATE 2020" + ], + "title": [ + "FABRICATE 2020" + ], + "creator": [ + { + "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bartlett Faculty of the Built Environment, University College London" + }, + { + "fulltext": "Organization:Cornell University College of Architecture, Art, and Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Cornell_University_College_of_Architecture,_Art,_and_Planning", + "namespace": 7500, + "exists": "1", + "displaytitle": "Cornell University College of Architecture, Art, and Planning" + }, + { + "fulltext": "Organization:Swinburne University of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Swinburne_University_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Swinburne University of Technology" + } + ], + "in_series": [ + { + "fulltext": "Event Series:FABRICATE", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", + "namespace": 7100, + "exists": "1", + "displaytitle": "FABRICATE - FABRICATE" + } + ], + "start_date": [ + { + "timestamp": "1599609600", + "raw": "1/2020/9/9" + } + ], + "end_date": [ + { + "timestamp": "1599868800", + "raw": "1/2020/9/12" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.fabricate.org/" + ], + "doi": [] + }, + "fulltext": "Event:FABRICATE 2020", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:FABRICATE_2020", + "namespace": 7200, + "exists": "1", + "displaytitle": "FABRICATE 2020" + }, + "Event:FBI 2021": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "FBI 2021" + ], + "title": [ + "32. Forum Bauinformatik 2021 in Darmstadt" + ], + "creator": [ + { + "fulltext": "Organization:Technische Universität Darmstadt - Institut für Numerische Methoden und Informatik im Bauwesen", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technische_Universit%C3%A4t_Darmstadt_-_Institut_f%C3%BCr_Numerische_Methoden_und_Informatik_im_Bauwesen", + "namespace": 7500, + "exists": "1", + "displaytitle": "Technische Universität Darmstadt - Institut für Numerische Methoden und Informatik im Bauwesen" + } + ], + "in_series": [ + { + "fulltext": "Event Series:FBI", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FBI", + "namespace": 7100, + "exists": "1", + "displaytitle": "FBI - Forum Bauinformatik" + } + ], + "start_date": [ + { + "timestamp": "1631059200", + "raw": "1/2021/9/8" + } + ], + "end_date": [ + { + "timestamp": "1631232000", + "raw": "1/2021/9/10" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Darmstadt" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://fbi2021.de/" + ], + "doi": [] + }, + "fulltext": "Event:FBI 2021", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:FBI_2021", + "namespace": 7200, + "exists": "1", + "displaytitle": "FBI 2021" + }, + "Event:462c5e90-44cf-449b-8d56-3904226939e2": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "FBI 2023" + ], + "title": [ + "34. Forum Bauinformatik 2023" + ], + "creator": [ + { + "fulltext": "Organization:Ruhr-Universität Bochum", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ruhr-Universit%C3%A4t_Bochum", + "namespace": 7500, + "exists": "1", + "displaytitle": "Ruhr-Universität Bochum" + } + ], + "in_series": [ + { + "fulltext": "Event Series:FBI", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FBI", + "namespace": 7100, + "exists": "1", + "displaytitle": "FBI - Forum Bauinformatik" + } + ], + "start_date": [ + { + "timestamp": "1693958400", + "raw": "1/2023/9/6" + } + ], + "end_date": [ + { + "timestamp": "1694131200", + "raw": "1/2023/9/8" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Ruhr-Universität Bochum" + ], + "city": [ + "Bochum" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://fbi2023.blogs.ruhr-uni-bochum.de/" + ], + "doi": [] + }, + "fulltext": "Event:462c5e90-44cf-449b-8d56-3904226939e2", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:462c5e90-44cf-449b-8d56-3904226939e2", + "namespace": 7200, + "exists": "1", + "displaytitle": "FBI 2023" + }, + "Event:E729503c-27d7-42fa-8cf8-92f72002f3da": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "Fabricate 2024" + ], + "creator": [ + { + "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bartlett Faculty of the Built Environment, University College London" + }, + { + "fulltext": "Organization:Cornell University College of Architecture, Art, and Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Cornell_University_College_of_Architecture,_Art,_and_Planning", + "namespace": 7500, + "exists": "1", + "displaytitle": "Cornell University College of Architecture, Art, and Planning" + }, + { + "fulltext": "Organization:Swinburne University of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Swinburne_University_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Swinburne University of Technology" + } + ], + "in_series": [ + { + "fulltext": "Event Series:FABRICATE", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", + "namespace": 7100, + "exists": "1", + "displaytitle": "FABRICATE - FABRICATE" + } + ], + "start_date": [ + { + "timestamp": "1711929600", + "raw": "1/2024/4" + } + ], + "end_date": [ + { + "timestamp": "1711929600", + "raw": "1/2024/4" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "CITA - Royal Danish Academy – Architecture, Design, Conservation" + ], + "city": [ + "Copenhagen" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DK", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DK", + "namespace": 7400, + "exists": "1", + "displaytitle": "Denmark (DK)" + } + ], + "website": [ + "http://www.fabricate.org/" + ], + "doi": [] + }, + "fulltext": "Event:E729503c-27d7-42fa-8cf8-92f72002f3da", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:E729503c-27d7-42fa-8cf8-92f72002f3da", + "namespace": 7200, + "exists": "1", + "displaytitle": "Fabricate 2024" + }, + "Event:7281004a-e6e1-4762-9dd4-81c7730cde3e": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "GBTG 2019" + ], + "title": [ + "4. Jahrestagung der Gesellschaft für Bautechnikgeschichte" + ], + "creator": [ + { + "fulltext": "Organization:Gesellschaft für Bautechnikgeschichte (GBTG)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Gesellschaft_f%C3%BCr_Bautechnikgeschichte_(GBTG)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Gesellschaft für Bautechnikgeschichte (GBTG)" + }, + { + "fulltext": "Organization:Niedersächsischen Landesamt für Denkmalpflege", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Nieders%C3%A4chsischen_Landesamt_f%C3%BCr_Denkmalpflege", + "namespace": 7500, + "exists": "1", + "displaytitle": "Niedersächsischen Landesamt für Denkmalpflege" + } + ], + "in_series": [ + { + "fulltext": "Event Series:785b2e37-87e2-4152-83ba-423208d2694e", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:785b2e37-87e2-4152-83ba-423208d2694e", + "namespace": 7100, + "exists": "1", + "displaytitle": "GBTG - Jahrestagungen der Gesellschaft für Bautechnikgeschichte" + } + ], + "start_date": [ + { + "timestamp": "1557360000", + "raw": "1/2019/5/9" + } + ], + "end_date": [ + { + "timestamp": "1557532800", + "raw": "1/2019/5/11" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Vortragssaal Niedersächsisches Landesmuseum" + ], + "city": [ + "Hannover" + ], + "region": [ + "Lower Saxony" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://gesellschaft.bautechnikgeschichte.org/veranstaltungen-2/jahrestagungen/jahrestagung-2019-in-hannover/" + ], + "doi": [] + }, + "fulltext": "Event:7281004a-e6e1-4762-9dd4-81c7730cde3e", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:7281004a-e6e1-4762-9dd4-81c7730cde3e", + "namespace": 7200, + "exists": "1", + "displaytitle": "GBTG 2019" + }, + "Event:C4dc9cb9-5975-410e-8b3b-d1e93d30435c": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "GBTG 2021" + ], + "title": [ + "5. Jahrestagung der Gesellschaft für Bautechnikgeschichte" + ], + "creator": [ + { + "fulltext": "Organization:Gesellschaft für Bautechnikgeschichte (GBTG)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Gesellschaft_f%C3%BCr_Bautechnikgeschichte_(GBTG)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Gesellschaft für Bautechnikgeschichte (GBTG)" + }, + { + "fulltext": "Organization:ETH Zurich", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ETH_Zurich", + "namespace": 7500, + "exists": "1", + "displaytitle": "ETH Zurich" + } + ], + "in_series": [ + { + "fulltext": "Event Series:785b2e37-87e2-4152-83ba-423208d2694e", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:785b2e37-87e2-4152-83ba-423208d2694e", + "namespace": 7100, + "exists": "1", + "displaytitle": "GBTG - Jahrestagungen der Gesellschaft für Bautechnikgeschichte" + } + ], + "start_date": [ + { + "timestamp": "1623283200", + "raw": "1/2021/6/10" + } + ], + "end_date": [ + { + "timestamp": "1623369600", + "raw": "1/2021/6/11" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://gesellschaft.bautechnikgeschichte.org/veranstaltungen-2/jahrestagungen/jahrestagung-2021-in-zuerich/" + ], + "doi": [] + }, + "fulltext": "Event:C4dc9cb9-5975-410e-8b3b-d1e93d30435c", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:C4dc9cb9-5975-410e-8b3b-d1e93d30435c", + "namespace": 7200, + "exists": "1", + "displaytitle": "GBTG 2021" + }, + "Event:D5d1007b-cf85-491e-84e9-4d344870bfe8": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "GBTG 2023" + ], + "title": [ + "6. Jahrestagung der Gesellschaft für Bautechnikgeschichte" + ], + "creator": [ + { + "fulltext": "Organization:Gesellschaft für Bautechnikgeschichte (GBTG)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Gesellschaft_f%C3%BCr_Bautechnikgeschichte_(GBTG)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Gesellschaft für Bautechnikgeschichte (GBTG)" + }, + { + "fulltext": "Organization:Landesdenkmalamt Berlin", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Landesdenkmalamt_Berlin", + "namespace": 7500, + "exists": "1", + "displaytitle": "Landesdenkmalamt Berlin" + } + ], + "in_series": [ + { + "fulltext": "Event Series:785b2e37-87e2-4152-83ba-423208d2694e", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:785b2e37-87e2-4152-83ba-423208d2694e", + "namespace": 7100, + "exists": "1", + "displaytitle": "GBTG - Jahrestagungen der Gesellschaft für Bautechnikgeschichte" + } + ], + "start_date": [ + { + "timestamp": "1683763200", + "raw": "1/2023/5/11" + } + ], + "end_date": [ + { + "timestamp": "1683936000", + "raw": "1/2023/5/13" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Berlin" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://gesellschaft.bautechnikgeschichte.org/" + ], + "doi": [] + }, + "fulltext": "Event:D5d1007b-cf85-491e-84e9-4d344870bfe8", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:D5d1007b-cf85-491e-84e9-4d344870bfe8", + "namespace": 7200, + "exists": "1", + "displaytitle": "GBTG 2023" + }, + "Event:B811530b-a330-474a-b126-514f4466e178": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [], + "title": [ + "GND Forum Bauwerke" + ], + "creator": [ + { + "fulltext": "Organization:Deutsche Nationalbibliothek", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Deutsche_Nationalbibliothek", + "namespace": 7500, + "exists": "1", + "displaytitle": "Deutsche Nationalbibliothek" + }, + { + "fulltext": "Organization:Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Deutsches_Dokumentationszentrum_f%C3%BCr_Kunstgeschichte_-_Bildarchiv_Foto_Marburg", + "namespace": 7500, + "exists": "1", + "displaytitle": "Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg" + }, + { + "fulltext": "Organization:Herder-Institut für historische Ostmitteleuropaforschung", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Herder-Institut_f%C3%BCr_historische_Ostmitteleuropaforschung", + "namespace": 7500, + "exists": "1", + "displaytitle": "Herder-Institut für historische Ostmitteleuropaforschung" + }, + { + "fulltext": "Organization:VDL - Vereinigung der Denkmalfachämter in den Ländern", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:VDL_-_Vereinigung_der_Denkmalfach%C3%A4mter_in_den_L%C3%A4ndern", + "namespace": 7500, + "exists": "1", + "displaytitle": "VDL - Vereinigung der Denkmalfachämter in den Ländern" + }, + { + "fulltext": "Organization:German National Library Of Science and Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:German_National_Library_Of_Science_and_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "German National Library Of Science and Technology" + } + ], + "in_series": [], + "start_date": [ + { + "timestamp": "1668384000", + "raw": "1/2022/11/14" + } + ], + "end_date": [ + { + "timestamp": "1668384000", + "raw": "1/2022/11/14" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.uni-marburg.de/de/fotomarburg/aktuelles/nachrichten/gnd-forum-bauwerke" + ], + "doi": [] + }, + "fulltext": "Event:B811530b-a330-474a-b126-514f4466e178", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:B811530b-a330-474a-b126-514f4466e178", + "namespace": 7200, + "exists": "1", + "displaytitle": "GND Forum Bauwerke" + }, + "Event:323da176-0739-49b2-b6d4-40533b57f6a2": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "ICAM20" + ], + "title": [ + "Conference of the International Confederation of Architectural Museums" + ], + "creator": [ + { + "fulltext": "Organization:International Confederation of Architectural Museums", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Confederation_of_Architectural_Museums", + "namespace": 7500, + "exists": "1", + "displaytitle": "International Confederation of Architectural Museums" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5f37f3f9-7069-4e89-90e5-119af83427b9", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5f37f3f9-7069-4e89-90e5-119af83427b9", + "namespace": 7100, + "exists": "1", + "displaytitle": "ICAM Conference - Conference of the International Confederation of Architectural Museums" + } + ], + "start_date": [ + { + "timestamp": "1631059200", + "raw": "1/2021/9/8" + } + ], + "end_date": [ + { + "timestamp": "1631232000", + "raw": "1/2021/9/10" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://icam-web.org/conferences/icam20-munich-neu/" + ], + "doi": [] + }, + "fulltext": "Event:323da176-0739-49b2-b6d4-40533b57f6a2", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:323da176-0739-49b2-b6d4-40533b57f6a2", + "namespace": 7200, + "exists": "1", + "displaytitle": "ICAM20" + }, + "Event:8ef45e8a-8ab5-4c27-994e-9c1ee40e4ea2": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "ICAM2019" + ], + "title": [ + "Conference of the International Confederation of Architectural Museums" + ], + "creator": [ + { + "fulltext": "Organization:International Confederation of Architectural Museums", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Confederation_of_Architectural_Museums", + "namespace": 7500, + "exists": "1", + "displaytitle": "International Confederation of Architectural Museums" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5f37f3f9-7069-4e89-90e5-119af83427b9", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5f37f3f9-7069-4e89-90e5-119af83427b9", + "namespace": 7100, + "exists": "1", + "displaytitle": "ICAM Conference - Conference of the International Confederation of Architectural Museums" + } + ], + "start_date": [ + { + "timestamp": "1536451200", + "raw": "1/2018/9/9" + } + ], + "end_date": [ + { + "timestamp": "1536796800", + "raw": "1/2018/9/13" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Danish Architecture Centre" + ], + "city": [ + "Copenhagen" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DK", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DK", + "namespace": 7400, + "exists": "1", + "displaytitle": "Denmark (DK)" + } + ], + "website": [ + "https://icam-web.org/conferences/icam19-copenhagen/" + ], + "doi": [] + }, + "fulltext": "Event:8ef45e8a-8ab5-4c27-994e-9c1ee40e4ea2", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:8ef45e8a-8ab5-4c27-994e-9c1ee40e4ea2", + "namespace": 7200, + "exists": "1", + "displaytitle": "ICAM2019" + }, + "Event:98b96f21-e5a1-432b-a432-8ed4a3ed8811": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "ICAM21" + ], + "title": [ + "Conference of the International Confederation of Architectural Museums" + ], + "creator": [ + { + "fulltext": "Organization:Technische Universität München", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technische_Universit%C3%A4t_M%C3%BCnchen", + "namespace": 7500, + "exists": "1", + "displaytitle": "Technische Universität München" + }, + { + "fulltext": "Organization:International Confederation of Architectural Museums", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Confederation_of_Architectural_Museums", + "namespace": 7500, + "exists": "1", + "displaytitle": "International Confederation of Architectural Museums" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5f37f3f9-7069-4e89-90e5-119af83427b9", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5f37f3f9-7069-4e89-90e5-119af83427b9", + "namespace": 7100, + "exists": "1", + "displaytitle": "ICAM Conference - Conference of the International Confederation of Architectural Museums" + } + ], + "start_date": [ + { + "timestamp": "1662422400", + "raw": "1/2022/9/6" + } + ], + "end_date": [ + { + "timestamp": "1662854400", + "raw": "1/2022/9/11" + } + ], + "event_mode": [ + "hybrid" + ], + "venue": [ + "Architekturmuseum Technische Universität München" + ], + "city": [ + "München" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.architekturmuseum.de/ausstellungen/icam22-in-muenchen/" + ], + "doi": [] + }, + "fulltext": "Event:98b96f21-e5a1-432b-a432-8ed4a3ed8811", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:98b96f21-e5a1-432b-a432-8ed4a3ed8811", + "namespace": 7200, + "exists": "1", + "displaytitle": "ICAM21" + }, + "Event:ICCCBE 2020": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "ICCCBE 2020" + ], + "title": [ + "International Society for Computing in Civil and Building Engineering" + ], + "creator": [ + { + "fulltext": "Organization:International Society for Computing in Civil and Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Society_for_Computing_in_Civil_and_Building_Engineering", + "namespace": 7500, + "exists": "1", + "displaytitle": "International Society for Computing in Civil and Building Engineering" + } + ], + "in_series": [ + { + "fulltext": "Event Series:ICCCBE", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:ICCCBE", + "namespace": 7100, + "exists": "1", + "displaytitle": "ICCCBE - International Society for Computing in Civil and Building Engineering" + } + ], + "start_date": [ + { + "timestamp": "1597708800", + "raw": "1/2020/8/18" + } + ], + "end_date": [ + { + "timestamp": "1597881600", + "raw": "1/2020/8/20" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "São Paulo" + ], + "region": [ + "online" + ], + "country": [ + { + "fulltext": "Country:BR", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:BR", + "namespace": 7400, + "exists": "1", + "displaytitle": "Brazil (BR)" + } + ], + "website": [ + "http://www.isccbe.org/" + ], + "doi": [] + }, + "fulltext": "Event:ICCCBE 2020", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:ICCCBE_2020", + "namespace": 7200, + "exists": "1", + "displaytitle": "ICCCBE 2020" + }, + "Event:E81506db-caa2-446e-aa9e-9d86ead1867b": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "ICGG2022" + ], + "title": [ + "The 20th International Conference on Geometry and Graphics" + ], + "creator": [ + { + "fulltext": "Organization:International Society for Geometry and Graphics (ISGG)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Society_for_Geometry_and_Graphics_(ISGG)", + "namespace": 7500, + "exists": "1", + "displaytitle": "International Society for Geometry and Graphics (ISGG)" + } + ], + "in_series": [ + { + "fulltext": "Event Series:ICGG", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:ICGG", + "namespace": 7100, + "exists": "1", + "displaytitle": "ICGG - International Conference on Geometry and Graphics" + } + ], + "start_date": [ + { + "timestamp": "1660521600", + "raw": "1/2022/8/15" + } + ], + "end_date": [ + { + "timestamp": "1660867200", + "raw": "1/2022/8/19" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "http://icgg2022.pcc.usp.br/" + ], + "doi": [] + }, + "fulltext": "Event:E81506db-caa2-446e-aa9e-9d86ead1867b", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:E81506db-caa2-446e-aa9e-9d86ead1867b", + "namespace": 7200, + "exists": "1", + "displaytitle": "ICGG2022" + }, + "Event:354f0bb1-7b7f-48a3-a69d-dde5d808f788": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Computational Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Computational_Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Computational Architecture" + }, + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Computational Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Computational_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Computational Design" + } + ], + "acronym": [ + "IntCDC Conference 2022" + ], + "title": [ + "Integrative Computational Design and Construction for Future-Proof Architecture" + ], + "creator": [ + { + "fulltext": "Organization:Cluster of Excellence \"Integrative Computational Design and Construction for Architecture\"", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Cluster_of_Excellence_%22Integrative_Computational_Design_and_Construction_for_Architecture%22", + "namespace": 7500, + "exists": "1", + "displaytitle": "Cluster of Excellence \"Integrative Computational Design and Construction for Architecture\"" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A72015c3-b9f5-4aec-a836-ed884efe146b", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A72015c3-b9f5-4aec-a836-ed884efe146b", + "namespace": 7100, + "exists": "1", + "displaytitle": "IntCDC - Integrative Computational Design and Construction for Future-proof Architecture" + } + ], + "start_date": [ + { + "timestamp": "1665532800", + "raw": "1/2022/10/12" + } + ], + "end_date": [ + { + "timestamp": "1665619200", + "raw": "1/2022/10/13" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "University of Stuttgart, Keplerstraße" + ], + "city": [ + "Stuttgart" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.intcdc.uni-stuttgart.de/stuttgart-week-of-advancing-aec/intcdc-conference-2022/" + ], + "doi": [] + }, + "fulltext": "Event:354f0bb1-7b7f-48a3-a69d-dde5d808f788", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:354f0bb1-7b7f-48a3-a69d-dde5d808f788", + "namespace": 7200, + "exists": "1", + "displaytitle": "IntCDC Conference 2022" + }, + "Event:057890b8-006c-4fbe-9b25-097b1b25f9e1": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:History of Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:History_of_Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "History of Architecture" + } + ], + "acronym": [], + "title": [ + "Kolloquium: „Hochschulsammlungen zu Architektur und Graphik als Herausforderung für Forschung und Lehre“" + ], + "creator": [ + { + "fulltext": "Organization:Leibniz University Hannover", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Leibniz_University_Hannover", + "namespace": 7500, + "exists": "1", + "displaytitle": "Leibniz University Hannover" + }, + { + "fulltext": "Organization:German National Library Of Science and Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:German_National_Library_Of_Science_and_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "German National Library Of Science and Technology" + }, + { + "fulltext": "Organization:DFG, German Research Foundation", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:DFG,_German_Research_Foundation", + "namespace": 7500, + "exists": "1", + "displaytitle": "DFG, German Research Foundation" + } + ], + "in_series": [], + "start_date": [ + { + "timestamp": "1678838400", + "raw": "1/2023/3/15" + } + ], + "end_date": [ + { + "timestamp": "1678924800", + "raw": "1/2023/3/16" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Appelstraße 7" + ], + "city": [ + "Hanover" + ], + "region": [ + "Lower Saxony" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://projects.tib.eu/haupt/aktuelles/detail/als-wichtiges-studienmaterial-nuetzlich-zu-machen-hochschulsammlungen-zu-architektur-und-graphik-als-herausforderung-fuer-forschung-und-lehre/" + ], + "doi": [ + "10.25798/8ymv-tn58" + ] + }, + "fulltext": "Event:057890b8-006c-4fbe-9b25-097b1b25f9e1", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:057890b8-006c-4fbe-9b25-097b1b25f9e1", + "namespace": 7200, + "exists": "1", + "displaytitle": "Kolloquium: „Hochschulsammlungen zu Architektur und Graphik als Herausforderung für Forschung und Lehre“" + }, + "Event:55b9b472-6733-443a-96ac-3ecb8b4cb5c4": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "LDAC 2021" + ], + "title": [ + "8th Linked Data in Architecture and Construction Workshop" + ], + "creator": [ + { + "fulltext": "Organization:Luxembourg Institute of Science and Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Luxembourg_Institute_of_Science_and_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Luxembourg Institute of Science and Technology" + } + ], + "in_series": [ + { + "fulltext": "Event Series:161117e9-f313-484c-b5ca-3ed46f670369", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:161117e9-f313-484c-b5ca-3ed46f670369", + "namespace": 7100, + "exists": "1", + "displaytitle": "LDAC - Conferences on Linked Data in Architecture and Construction" + } + ], + "start_date": [ + { + "timestamp": "1633910400", + "raw": "1/2021/10/11" + } + ], + "end_date": [ + { + "timestamp": "1634256000", + "raw": "1/2021/10/15" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Luxembourg" + ], + "region": [], + "country": [ + { + "fulltext": "Country:LU", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:LU", + "namespace": 7400, + "exists": "1", + "displaytitle": "Luxembourg (LU)" + } + ], + "website": [ + "https://www.cibw78-ldac-2021.lu/" + ], + "doi": [] + }, + "fulltext": "Event:55b9b472-6733-443a-96ac-3ecb8b4cb5c4", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:55b9b472-6733-443a-96ac-3ecb8b4cb5c4", + "namespace": 7200, + "exists": "1", + "displaytitle": "LDAC 2021" + }, + "Event:NEXUS 20/21": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "NEXUS 20/21" + ], + "title": [ + "Relationships Between Architecture and Mathematics" + ], + "creator": [ + { + "fulltext": "Organization:Fatuk – Faculty of Architecture, TU Kaiserslautern", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fatuk_%E2%80%93_Faculty_of_Architecture,_TU_Kaiserslautern", + "namespace": 7500, + "exists": "1", + "displaytitle": "Fatuk – Faculty of Architecture, TU Kaiserslautern" + } + ], + "in_series": [], + "start_date": [ + { + "timestamp": "1627257600", + "raw": "1/2021/7/26" + } + ], + "end_date": [ + { + "timestamp": "1627516800", + "raw": "1/2021/7/29" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "Kaiserslautern" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://nexus2021.architektur.uni-kl.de/" + ], + "doi": [] + }, + "fulltext": "Event:NEXUS 20/21", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:NEXUS_20/21", + "namespace": 7200, + "exists": "1", + "displaytitle": "NEXUS 20/21" + }, + "Event:01a3d4ae-5225-4ae6-988a-d2d8a6dc6904": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "NEXUS 20/21" + ], + "title": [ + "Relationships Between Architecture and Mathematics – 13. International Conference" + ], + "creator": [ + { + "fulltext": "Organization:Research Culture in Architecture (RCA)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Research_Culture_in_Architecture_(RCA)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Research Culture in Architecture (RCA)" + }, + { + "fulltext": "Organization:Fatuk – Faculty of Architecture, TU Kaiserslautern", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fatuk_%E2%80%93_Faculty_of_Architecture,_TU_Kaiserslautern", + "namespace": 7500, + "exists": "1", + "displaytitle": "Fatuk – Faculty of Architecture, TU Kaiserslautern" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A4a71a48-7b96-49c1-bd51-8c9c13ce45be", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A4a71a48-7b96-49c1-bd51-8c9c13ce45be", + "namespace": 7100, + "exists": "1", + "displaytitle": "RCA - Research Culture in Architecture – International Conference on Cross-Disciplinary Collaboration in Architecture" + } + ], + "start_date": [ + { + "timestamp": "1627257600", + "raw": "1/2021/7/26" + } + ], + "end_date": [ + { + "timestamp": "1627516800", + "raw": "1/2021/7/29" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://nexus2021.architektur.uni-kl.de/" + ], + "doi": [] + }, + "fulltext": "Event:01a3d4ae-5225-4ae6-988a-d2d8a6dc6904", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:01a3d4ae-5225-4ae6-988a-d2d8a6dc6904", + "namespace": 7200, + "exists": "1", + "displaytitle": "NEXUS 20/21" + }, + "Event:8f28cba3-4e04-4e7c-ade2-00cd5008bae3": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Urban Studies", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Studies", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Studies" + }, + { + "fulltext": "Academic Field:Spatial Planning", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Spatial_Planning", + "namespace": 7300, + "exists": "1", + "displaytitle": "Spatial Planning" + } + ], + "acronym": [], + "title": [ + "Raumentwicklung und Raumordnung in Grenzregionen stärken: zwei deutsch-französische Planspiele" + ], + "creator": [ + { + "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung_(BBSR)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)" + }, + { + "fulltext": "Organization:Agence Nationale de la Cohésion des Territoires (ANCT)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Agence_Nationale_de_la_Coh%C3%A9sion_des_Territoires_(ANCT)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Agence Nationale de la Cohésion des Territoires (ANCT)" + } + ], + "in_series": [], + "start_date": [ + { + "timestamp": "1670976000", + "raw": "1/2022/12/14" + } + ], + "end_date": [ + { + "timestamp": "1670976000", + "raw": "1/2022/12/14" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Salle de l’Hémicycle/ Sitz der Région Grand Est" + ], + "city": [ + "Strasbourg" + ], + "region": [], + "country": [ + { + "fulltext": "Country:FR", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:FR", + "namespace": 7400, + "exists": "1", + "displaytitle": "France (FR)" + } + ], + "website": [ + "https://www.bbsr.bund.de/BBSR/DE/service/veranstaltungen/2022/2022-12-14-planspiele-abschluss.html" + ], + "doi": [] + }, + "fulltext": "Event:8f28cba3-4e04-4e7c-ade2-00cd5008bae3", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:8f28cba3-4e04-4e7c-ade2-00cd5008bae3", + "namespace": 7200, + "exists": "1", + "displaytitle": "Raumentwicklung und Raumordnung in Grenzregionen stärken: zwei deutsch-französische Planspiele" + }, + "Event:62ff56a1-eda2-442c-ac27-3013a13ae2f4": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "RobArch 2018" + ], + "title": [ + "conference on robotic fabrication in architecture, art, and design" + ], + "creator": [ + { + "fulltext": "Organization:Association for Robots in Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Robots_in_Architecture", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Robots in Architecture" + }, + { + "fulltext": "Organization:ETH Zurich", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ETH_Zurich", + "namespace": 7500, + "exists": "1", + "displaytitle": "ETH Zurich" + } + ], + "in_series": [ + { + "fulltext": "Event Series:99ec81e1-0e57-471e-ac55-8660a4484922", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:99ec81e1-0e57-471e-ac55-8660a4484922", + "namespace": 7100, + "exists": "1", + "displaytitle": "RobArch - Conference on robotic fabrication in architecture, art, and design" + } + ], + "start_date": [ + { + "timestamp": "1536710400", + "raw": "1/2018/9/12" + } + ], + "end_date": [ + { + "timestamp": "1536883200", + "raw": "1/2018/9/14" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "ETH Zurich" + ], + "city": [ + "Zurich" + ], + "region": [], + "country": [ + { + "fulltext": "Country:CH", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", + "namespace": 7400, + "exists": "1", + "displaytitle": "Switzerland (CH)" + } + ], + "website": [ + "http://www.robarch2018.org/" + ], + "doi": [] + }, + "fulltext": "Event:62ff56a1-eda2-442c-ac27-3013a13ae2f4", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:62ff56a1-eda2-442c-ac27-3013a13ae2f4", + "namespace": 7200, + "exists": "1", + "displaytitle": "RobArch 2018" + }, + "Event:35c7ca1d-3cb6-4c15-a2db-1d74b6b8f461": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "RobArch 2020" + ], + "title": [ + "conference on robotic fabrication in architecture, art, and design" + ], + "creator": [ + { + "fulltext": "Organization:Association for Robots in Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Robots_in_Architecture", + "namespace": 7500, + "exists": "1", + "displaytitle": "Association for Robots in Architecture" + }, + { + "fulltext": "Organization:Tsinghua University China", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Tsinghua_University_China", + "namespace": 7500, + "exists": "1", + "displaytitle": "Tsinghua University China" + } + ], + "in_series": [ + { + "fulltext": "Event Series:99ec81e1-0e57-471e-ac55-8660a4484922", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:99ec81e1-0e57-471e-ac55-8660a4484922", + "namespace": 7100, + "exists": "1", + "displaytitle": "RobArch - Conference on robotic fabrication in architecture, art, and design" + } + ], + "start_date": [ + { + "timestamp": "1599177600", + "raw": "1/2020/9/4" + } + ], + "end_date": [ + { + "timestamp": "1599264000", + "raw": "1/2020/9/5" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Tsinghua University" + ], + "city": [ + "Peking" + ], + "region": [], + "country": [ + { + "fulltext": "Country:CN", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CN", + "namespace": 7400, + "exists": "1", + "displaytitle": "China (CN)" + } + ], + "website": [ + "https://www.robarch2020.org/" + ], + "doi": [] + }, + "fulltext": "Event:35c7ca1d-3cb6-4c15-a2db-1d74b6b8f461", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:35c7ca1d-3cb6-4c15-a2db-1d74b6b8f461", + "namespace": 7200, + "exists": "1", + "displaytitle": "RobArch 2020" + }, + "Event:304da54c-6e96-44ef-845b-75e6ff4dc46c": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "SIGraDI2020" + ], + "title": [ + "24. Conference of the Ibero American Society of Digital Graphics" + ], + "creator": [ + { + "fulltext": "Organization:Ibero-American Society of Digital Graphics", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ibero-American_Society_of_Digital_Graphics", + "namespace": 7500, + "exists": "1", + "displaytitle": "Ibero-American Society of Digital Graphics" + } + ], + "in_series": [ + { + "fulltext": "Event Series:086c414a-cf19-4245-b707-2f932f0a4d5d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:086c414a-cf19-4245-b707-2f932f0a4d5d", + "namespace": 7100, + "exists": "1", + "displaytitle": "SIGraDi - Conference of the Ibero American Society of Digital Graphics" + } + ], + "start_date": [ + { + "timestamp": "1605657600", + "raw": "1/2020/11/18" + } + ], + "end_date": [ + { + "timestamp": "1605830400", + "raw": "1/2020/11/20" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://sigradi2020.upb.edu.co" + ], + "doi": [] + }, + "fulltext": "Event:304da54c-6e96-44ef-845b-75e6ff4dc46c", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:304da54c-6e96-44ef-845b-75e6ff4dc46c", + "namespace": 7200, + "exists": "1", + "displaytitle": "SIGraDI2020" + }, + "Event:360c7292-24cc-471c-8ef6-acced40e5f48": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "SIGraDI2021" + ], + "title": [ + "25. Conference of the Ibero American Society of Digital Graphics" + ], + "creator": [ + { + "fulltext": "Organization:Ibero-American Society of Digital Graphics", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ibero-American_Society_of_Digital_Graphics", + "namespace": 7500, + "exists": "1", + "displaytitle": "Ibero-American Society of Digital Graphics" + } + ], + "in_series": [ + { + "fulltext": "Event Series:086c414a-cf19-4245-b707-2f932f0a4d5d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:086c414a-cf19-4245-b707-2f932f0a4d5d", + "namespace": 7100, + "exists": "1", + "displaytitle": "SIGraDi - Conference of the Ibero American Society of Digital Graphics" + } + ], + "start_date": [ + { + "timestamp": "1636329600", + "raw": "1/2021/11/8" + } + ], + "end_date": [ + { + "timestamp": "1636675200", + "raw": "1/2021/11/12" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.sigradi.org/sigradi2021/" + ], + "doi": [] + }, + "fulltext": "Event:360c7292-24cc-471c-8ef6-acced40e5f48", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:360c7292-24cc-471c-8ef6-acced40e5f48", + "namespace": 7200, + "exists": "1", + "displaytitle": "SIGraDI2021" + }, + "Event:7c6204c4-5e9e-4fa8-ad2d-3de97639f4f4": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "SIGraDI2022" + ], + "title": [ + "26. Conference of the Ibero American Society of Digital Graphics" + ], + "creator": [ + { + "fulltext": "Organization:Ibero-American Society of Digital Graphics", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ibero-American_Society_of_Digital_Graphics", + "namespace": 7500, + "exists": "1", + "displaytitle": "Ibero-American Society of Digital Graphics" + }, + { + "fulltext": "Organization:Universidad Peruana de Ciencias Aplicadas (UPC) School of Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Universidad_Peruana_de_Ciencias_Aplicadas_(UPC)_School_of_Architecture", + "namespace": 7500, + "exists": "1", + "displaytitle": "Universidad Peruana de Ciencias Aplicadas (UPC) School of Architecture" + } + ], + "in_series": [ + { + "fulltext": "Event Series:086c414a-cf19-4245-b707-2f932f0a4d5d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:086c414a-cf19-4245-b707-2f932f0a4d5d", + "namespace": 7100, + "exists": "1", + "displaytitle": "SIGraDi - Conference of the Ibero American Society of Digital Graphics" + } + ], + "start_date": [ + { + "timestamp": "1667779200", + "raw": "1/2022/11/7" + } + ], + "end_date": [ + { + "timestamp": "1668124800", + "raw": "1/2022/11/11" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Universidad Peruana de Ciencias Aplicadas" + ], + "city": [ + "Lima" + ], + "region": [], + "country": [ + { + "fulltext": "Country:PE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:PE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Peru (PE)" + } + ], + "website": [ + "https://www.sigradi.org/sigradi2022/" + ], + "doi": [] + }, + "fulltext": "Event:7c6204c4-5e9e-4fa8-ad2d-3de97639f4f4", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:7c6204c4-5e9e-4fa8-ad2d-3de97639f4f4", + "namespace": 7200, + "exists": "1", + "displaytitle": "SIGraDI2022" + }, + "Event:70a9ecdc-2ae2-4642-8d35-b97d7d5885f0": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SIMAUD 2023" + ], + "title": [ + "14th annual Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1684800000", + "raw": "1/2023/5/23" + } + ], + "end_date": [ + { + "timestamp": "1685059200", + "raw": "1/2023/5/26" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Mohawk College" + ], + "city": [ + "Hamilton" + ], + "region": [ + "Ontario" + ], + "country": [ + { + "fulltext": "Country:CA", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CA", + "namespace": 7400, + "exists": "1", + "displaytitle": "Canada (CA)" + } + ], + "website": [ + "http://simaud.org/2023/" + ], + "doi": [ + "10.25798/csk5-vk03" + ] + }, + "fulltext": "Event:70a9ecdc-2ae2-4642-8d35-b97d7d5885f0", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:70a9ecdc-2ae2-4642-8d35-b97d7d5885f0", + "namespace": 7200, + "exists": "1", + "displaytitle": "SIMAUD 2023" + }, + "Event:03aba977-c7f6-4c08-8a6f-6607f371b78a": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2010" + ], + "title": [ + "Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1271030400", + "raw": "1/2010/4/12" + } + ], + "end_date": [ + { + "timestamp": "1271289600", + "raw": "1/2010/4/15" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "The Florida Hotel" + ], + "city": [ + "Orlando" + ], + "region": [ + "Florida" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://www.simaud.org/2010/" + ], + "doi": [ + "10.25798/jpky-a739" + ] + }, + "fulltext": "Event:03aba977-c7f6-4c08-8a6f-6607f371b78a", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:03aba977-c7f6-4c08-8a6f-6607f371b78a", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2010" + }, + "Event:E5687a94-f3bd-4d82-8594-6758411b3e8b": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2011" + ], + "title": [ + "Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1301875200", + "raw": "1/2011/4/4" + } + ], + "end_date": [ + { + "timestamp": "1302134400", + "raw": "1/2011/4/7" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Boston Marriott Long Wharf" + ], + "city": [ + "Boston" + ], + "region": [ + "Massachusetts" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://www.simaud.org/2011/" + ], + "doi": [ + "10.25798/we02-ah37" + ] + }, + "fulltext": "Event:E5687a94-f3bd-4d82-8594-6758411b3e8b", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:E5687a94-f3bd-4d82-8594-6758411b3e8b", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2011" + }, + "Event:0230ebd0-2ee5-453d-9320-4535b215af5d": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2012" + ], + "title": [ + "Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1332720000", + "raw": "1/2012/3/26" + } + ], + "end_date": [ + { + "timestamp": "1333065600", + "raw": "1/2012/3/30" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "The Florida Hotel" + ], + "city": [ + "Orlando" + ], + "region": [ + "Florida" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://www.simaud.org/2012/" + ], + "doi": [ + "10.25798/wkq1-0f86" + ] + }, + "fulltext": "Event:0230ebd0-2ee5-453d-9320-4535b215af5d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:0230ebd0-2ee5-453d-9320-4535b215af5d", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2012" + }, + "Event:67de08d8-6896-44fe-a5cf-0809265481ee": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2013" + ], + "title": [ + "4th annual Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1365292800", + "raw": "1/2013/4/7" + } + ], + "end_date": [ + { + "timestamp": "1365552000", + "raw": "1/2013/4/10" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Bahia Resort Hotel" + ], + "city": [ + "San Diego" + ], + "region": [ + "California" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://www.simaud.org/2013/" + ], + "doi": [ + "10.25798/nsw2-0d50" + ] + }, + "fulltext": "Event:67de08d8-6896-44fe-a5cf-0809265481ee", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:67de08d8-6896-44fe-a5cf-0809265481ee", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2013" + }, + "Event:51093971-4878-4a82-8234-bd82a14128ee": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2014" + ], + "title": [ + "5th annual Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1397347200", + "raw": "1/2014/4/13" + } + ], + "end_date": [ + { + "timestamp": "1397606400", + "raw": "1/2014/4/16" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Grand Hyatt Tampa Bay" + ], + "city": [ + "Tampa" + ], + "region": [ + "Florida" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://www.simaud.org/2014/" + ], + "doi": [ + "10.25798/atcr-w358" + ] + }, + "fulltext": "Event:51093971-4878-4a82-8234-bd82a14128ee", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:51093971-4878-4a82-8234-bd82a14128ee", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2014" + }, + "Event:SimAUD 2015": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2015" + ], + "title": [ + "6th Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1428796800", + "raw": "1/2015/4/12" + } + ], + "end_date": [ + { + "timestamp": "1429056000", + "raw": "1/2015/4/15" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "The Westin Alexandria" + ], + "city": [ + "Alexandria" + ], + "region": [ + "Virginia" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://www.simaud.org/2015/" + ], + "doi": [ + "10.25798/x8z9-5543" + ] + }, + "fulltext": "Event:SimAUD 2015", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2015", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2015" + }, + "Event:SimAUD 2016": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2016" + ], + "title": [ + "7th Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1463356800", + "raw": "1/2016/5/16" + } + ], + "end_date": [ + { + "timestamp": "1463529600", + "raw": "1/2016/5/18" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "University College London" + ], + "city": [ + "London" + ], + "region": [], + "country": [ + { + "fulltext": "Country:GB", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", + "namespace": 7400, + "exists": "1", + "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" + } + ], + "website": [ + "http://www.simaud.com/2016/call_for_submissions.php" + ], + "doi": [ + "10.25798/3f0m-rn59" + ] + }, + "fulltext": "Event:SimAUD 2016", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2016", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2016" + }, + "Event:SimAUD 2017": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2017" + ], + "title": [ + "8th Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:University of Toronto", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_Toronto", + "namespace": 7500, + "exists": "1", + "displaytitle": "University of Toronto" + }, + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1495411200", + "raw": "1/2017/5/22" + } + ], + "end_date": [ + { + "timestamp": "1495584000", + "raw": "1/2017/5/24" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "University of Toronto" + ], + "city": [ + "Toronto" + ], + "region": [ + "Ontario" + ], + "country": [ + { + "fulltext": "Country:CA", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CA", + "namespace": 7400, + "exists": "1", + "displaytitle": "Canada (CA)" + } + ], + "website": [ + "http://www.simaud.org/2017/" + ], + "doi": [ + "10.25798/482p-mh80" + ] + }, + "fulltext": "Event:SimAUD 2017", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2017", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2017" + }, + "Event:SimAUD 2018": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2018" + ], + "title": [ + "9th Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + }, + { + "fulltext": "Organization:Delft University of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Delft_University_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Delft University of Technology" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1528070400", + "raw": "1/2018/6/4" + } + ], + "end_date": [ + { + "timestamp": "1528329600", + "raw": "1/2018/6/7" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Delft University of Technology" + ], + "city": [ + "Delft" + ], + "region": [], + "country": [ + { + "fulltext": "Country:NL", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:NL", + "namespace": 7400, + "exists": "1", + "displaytitle": "Netherlands (NL)" + } + ], + "website": [ + "http://www.simaud.org/2018/index.php" + ], + "doi": [ + "10.25798/cagj-ed47" + ] + }, + "fulltext": "Event:SimAUD 2018", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2018", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2018" + }, + "Event:SimAUD 2019": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2019" + ], + "title": [ + "10th Symposium on Simulation for Architecure and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Georgia Tech, College of Design, School of Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Georgia_Tech,_College_of_Design,_School_of_Architecture", + "namespace": 7500, + "exists": "1", + "displaytitle": "Georgia Tech, College of Design, School of Architecture" + }, + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1554595200", + "raw": "1/2019/4/7" + } + ], + "end_date": [ + { + "timestamp": "1554768000", + "raw": "1/2019/4/9" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "John and Joyce Caddell Building" + ], + "city": [ + "Atlanta" + ], + "region": [ + "Georgia" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://www.simaud.org/2019/index.php" + ], + "doi": [ + "10.25798/acnr-tq55" + ] + }, + "fulltext": "Event:SimAUD 2019", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2019", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2019" + }, + "Event:SimAUD 2020": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2020" + ], + "title": [ + "11th Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:TU Wien", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:TU_Wien", + "namespace": 7500, + "exists": "1", + "displaytitle": "TU Wien" + }, + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1590364800", + "raw": "1/2020/5/25" + } + ], + "end_date": [ + { + "timestamp": "1590537600", + "raw": "1/2020/5/27" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "http://www.simaud.org/2020/" + ], + "doi": [ + "10.25798/3fxp-0d40" + ] + }, + "fulltext": "Event:SimAUD 2020", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2020", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2020" + }, + "Event:70e4c22a-ffe7-46ed-ab5c-7871f1d25200": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2021" + ], + "title": [ + "12th annual Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1618444800", + "raw": "1/2021/4/15" + } + ], + "end_date": [ + { + "timestamp": "1618617600", + "raw": "1/2021/4/17" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "http://www.simaud.org/2021/" + ], + "doi": [ + "10.25798/d015-m798" + ] + }, + "fulltext": "Event:70e4c22a-ffe7-46ed-ab5c-7871f1d25200", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:70e4c22a-ffe7-46ed-ab5c-7871f1d25200", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2021" + }, + "Event:19d75bde-5f50-4b76-bb6d-187242b4d3ef": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Urban Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Urban Design" + } + ], + "acronym": [ + "SimAUD 2022" + ], + "title": [ + "13th annual Symposium on Simulation for Architecture and Urban Design" + ], + "creator": [ + { + "fulltext": "Organization:Society for Modeling and Simulation International", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", + "namespace": 7500, + "exists": "1", + "displaytitle": "Society for Modeling and Simulation International" + } + ], + "in_series": [ + { + "fulltext": "Event Series:SimAUD", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", + "namespace": 7100, + "exists": "1", + "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" + } + ], + "start_date": [ + { + "timestamp": "1658016000", + "raw": "1/2022/7/17" + } + ], + "end_date": [ + { + "timestamp": "1658188800", + "raw": "1/2022/7/19" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Conrad Prebys Aztec Student Union" + ], + "city": [ + "San Diego" + ], + "region": [ + "California" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "http://www.simaud.org/2022/" + ], + "doi": [ + "10.25798/6h4c-cp83" + ] + }, + "fulltext": "Event:19d75bde-5f50-4b76-bb6d-187242b4d3ef", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:19d75bde-5f50-4b76-bb6d-187242b4d3ef", + "namespace": 7200, + "exists": "1", + "displaytitle": "SimAUD 2022" + }, + "Event:Ec16e16b-e7bb-4c61-aa3c-8815b054b688": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Education", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Education", + "namespace": 7300, + "exists": "1", + "displaytitle": "Education" + }, + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "TT 2021" + ], + "title": [ + "TYPOLOGY TALKS #1" + ], + "creator": [ + { + "fulltext": "Organization:Faculty of Architecture and Landscape, Leibniz University Hanover", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture_and_Landscape,_Leibniz_University_Hanover", + "namespace": 7500, + "exists": "1", + "displaytitle": "Faculty of Architecture and Landscape, Leibniz University Hanover" + } + ], + "in_series": [ + { + "fulltext": "Event Series:B5a4a389-aa41-4d75-881b-9b888fd7c7be", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:B5a4a389-aa41-4d75-881b-9b888fd7c7be", + "namespace": 7100, + "exists": "1", + "displaytitle": "TT - Typology Talks" + } + ], + "start_date": [ + { + "timestamp": "1634688000", + "raw": "1/2021/10/20" + } + ], + "end_date": [ + { + "timestamp": "1634688000", + "raw": "1/2021/10/20" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "https://www.entwerfen.uni-hannover.de/de/kempethill/forschung-und-publikationen/typology-talks-1" + ], + "doi": [ + "10.25798/ryzs-f833" + ] + }, + "fulltext": "Event:Ec16e16b-e7bb-4c61-aa3c-8815b054b688", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:Ec16e16b-e7bb-4c61-aa3c-8815b054b688", + "namespace": 7200, + "exists": "1", + "displaytitle": "TT 2021" + }, + "Event:9c09a880-070e-4118-93ed-e11e1d0809cc": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Education", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Education", + "namespace": 7300, + "exists": "1", + "displaytitle": "Education" + }, + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "TT 2022" + ], + "title": [ + "TYPOLOGY TALKS #2 - LEARNING LANDSCAPES" + ], + "creator": [ + { + "fulltext": "Organization:Faculty of Architecture and Landscape, Leibniz University Hanover", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture_and_Landscape,_Leibniz_University_Hanover", + "namespace": 7500, + "exists": "1", + "displaytitle": "Faculty of Architecture and Landscape, Leibniz University Hanover" + } + ], + "in_series": [ + { + "fulltext": "Event Series:B5a4a389-aa41-4d75-881b-9b888fd7c7be", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:B5a4a389-aa41-4d75-881b-9b888fd7c7be", + "namespace": 7100, + "exists": "1", + "displaytitle": "TT - Typology Talks" + } + ], + "start_date": [ + { + "timestamp": "1665619200", + "raw": "1/2022/10/13" + } + ], + "end_date": [ + { + "timestamp": "1665619200", + "raw": "1/2022/10/13" + } + ], + "event_mode": [ + "hybrid" + ], + "venue": [], + "city": [ + "Hanover" + ], + "region": [ + "Lower Saxony" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.entwerfen.uni-hannover.de/de/kempethill/forschung-und-publikationen/typology-talks-2" + ], + "doi": [ + "10.25798/n9mh-vf19" + ] + }, + "fulltext": "Event:9c09a880-070e-4118-93ed-e11e1d0809cc", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:9c09a880-070e-4118-93ed-e11e1d0809cc", + "namespace": 7200, + "exists": "1", + "displaytitle": "TT 2022" + }, + "Event:32e6b42c-f04b-4ecd-aa74-49ce80374d65": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "Zukunft Bau Kongress 2019" + ], + "creator": [ + { + "fulltext": "Organization:Bundesministerium des Innern, für Bau und Heimat (BMI)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesministerium_des_Innern,_f%C3%BCr_Bau_und_Heimat_(BMI)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesministerium des Innern, für Bau und Heimat (BMI)" + }, + { + "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung_(BBSR)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)" + } + ], + "in_series": [ + { + "fulltext": "Event Series:20ff421f-a551-43d4-914a-14a05baf7428", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:20ff421f-a551-43d4-914a-14a05baf7428", + "namespace": 7100, + "exists": "1", + "displaytitle": "Zukunft Bau Kongress" + } + ], + "start_date": [ + { + "timestamp": "1575331200", + "raw": "1/2019/12/3" + } + ], + "end_date": [ + { + "timestamp": "1575417600", + "raw": "1/2019/12/4" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Bundeshaus" + ], + "city": [ + "Bonn" + ], + "region": [ + "North Rhine-Westphalia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.zukunftbau.de/veranstaltungen/zukunft-bau-kongresse/2019" + ], + "doi": [ + "10.25798/hxbx-eg02" + ] + }, + "fulltext": "Event:32e6b42c-f04b-4ecd-aa74-49ce80374d65", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:32e6b42c-f04b-4ecd-aa74-49ce80374d65", + "namespace": 7200, + "exists": "1", + "displaytitle": "Zukunft Bau Kongress 2019" + }, + "Event:44dc6929-92af-409e-8856-8bfb6da0f77d": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "Zukunft Bau Kongress 2021" + ], + "creator": [ + { + "fulltext": "Organization:Bundesministerium des Innern, für Bau und Heimat (BMI)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesministerium_des_Innern,_f%C3%BCr_Bau_und_Heimat_(BMI)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesministerium des Innern, für Bau und Heimat (BMI)" + }, + { + "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung_(BBSR)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)" + } + ], + "in_series": [ + { + "fulltext": "Event Series:20ff421f-a551-43d4-914a-14a05baf7428", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:20ff421f-a551-43d4-914a-14a05baf7428", + "namespace": 7100, + "exists": "1", + "displaytitle": "Zukunft Bau Kongress" + } + ], + "start_date": [ + { + "timestamp": "1637193600", + "raw": "1/2021/11/18" + } + ], + "end_date": [ + { + "timestamp": "1637280000", + "raw": "1/2021/11/19" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Bundeshaus" + ], + "city": [ + "Bonn" + ], + "region": [ + "North Rhine-Westphalia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.zukunftbau.de/veranstaltungen/zukunft-bau-kongresse/2021" + ], + "doi": [ + "10.25798/vb0d-ng63" + ] + }, + "fulltext": "Event:44dc6929-92af-409e-8856-8bfb6da0f77d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:44dc6929-92af-409e-8856-8bfb6da0f77d", + "namespace": 7200, + "exists": "1", + "displaytitle": "Zukunft Bau Kongress 2021" + }, + "Event:6a4a653e-1002-4f63-bd37-6d5c1475bd6d": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Building Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Building Engineering" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [], + "title": [ + "Zukunft Bau Kongress 2023" + ], + "creator": [ + { + "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung_(BBSR)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)" + }, + { + "fulltext": "Organization:Bundesministerium des Innern, für Bau und Heimat (BMI)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesministerium_des_Innern,_f%C3%BCr_Bau_und_Heimat_(BMI)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Bundesministerium des Innern, für Bau und Heimat (BMI)" + } + ], + "in_series": [ + { + "fulltext": "Event Series:20ff421f-a551-43d4-914a-14a05baf7428", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:20ff421f-a551-43d4-914a-14a05baf7428", + "namespace": 7100, + "exists": "1", + "displaytitle": "Zukunft Bau Kongress" + } + ], + "start_date": [ + { + "timestamp": "1700697600", + "raw": "1/2023/11/23" + } + ], + "end_date": [ + { + "timestamp": "1700784000", + "raw": "1/2023/11/24" + } + ], + "event_mode": [ + "hybrid" + ], + "venue": [ + "WCCB Bonn" + ], + "city": [ + "Bonn" + ], + "region": [ + "North Rhine-Westphalia" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://www.zukunftbau.de/termine/zukunft-bau-kongress-2023" + ], + "doi": [ + "10.25798/pq0c-mw39" + ] + }, + "fulltext": "Event:6a4a653e-1002-4f63-bd37-6d5c1475bd6d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:6a4a653e-1002-4f63-bd37-6d5c1475bd6d", + "namespace": 7200, + "exists": "1", + "displaytitle": "Zukunft Bau Kongress 2023" + }, + "Event:A4f00ae5-dea4-4598-a06b-0fbd24c5b0cd": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "eCAADe 2020" + ], + "title": [ + "38th Education and research in Computer Aided Architectural Design in Europe Conference" + ], + "creator": [ + { + "fulltext": "Organization:Education and Research in Computer Aided Architectural Design in Europe", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Education_and_Research_in_Computer_Aided_Architectural_Design_in_Europe", + "namespace": 7500, + "exists": "1", + "displaytitle": "Education and Research in Computer Aided Architectural Design in Europe" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", + "namespace": 7100, + "exists": "1", + "displaytitle": "eCAADe - Conference on Education and research in Computer Aided Architectural Design in Europe" + } + ], + "start_date": [ + { + "timestamp": "1600214400", + "raw": "1/2020/9/16" + } + ], + "end_date": [ + { + "timestamp": "1600387200", + "raw": "1/2020/9/18" + } + ], + "event_mode": [ + "online" + ], + "venue": [], + "city": [], + "region": [], + "country": [], + "website": [ + "http://www.ecaade.org/prev-conf/archive/ecaade2020/" + ], + "doi": [ + "10.25798/ajxc-cj93" + ] + }, + "fulltext": "Event:A4f00ae5-dea4-4598-a06b-0fbd24c5b0cd", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:A4f00ae5-dea4-4598-a06b-0fbd24c5b0cd", + "namespace": 7200, + "exists": "1", + "displaytitle": "eCAADe 2020" + }, + "Event:Ecfedc22-1a0e-4e9d-a5a8-5c65188be5a6": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "eCAADe 2021" + ], + "title": [ + "39th Education and research in Computer Aided Architectural Design in Europe Conference" + ], + "creator": [ + { + "fulltext": "Organization:Education and Research in Computer Aided Architectural Design in Europe", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Education_and_Research_in_Computer_Aided_Architectural_Design_in_Europe", + "namespace": 7500, + "exists": "1", + "displaytitle": "Education and Research in Computer Aided Architectural Design in Europe" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", + "namespace": 7100, + "exists": "1", + "displaytitle": "eCAADe - Conference on Education and research in Computer Aided Architectural Design in Europe" + } + ], + "start_date": [ + { + "timestamp": "1631059200", + "raw": "1/2021/9/8" + } + ], + "end_date": [ + { + "timestamp": "1631232000", + "raw": "1/2021/9/10" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Rektorat" + ], + "city": [ + "Novi Sad" + ], + "region": [ + "Južnobački okrug" + ], + "country": [ + { + "fulltext": "Country:RS", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:RS", + "namespace": 7400, + "exists": "1", + "displaytitle": "Serbia (RS)" + } + ], + "website": [ + "http://www.ecaade.org/prev-conf/archive/ecaade2021/eCAADe2021/www.ecaade2021.ftn.uns.ac.rs/index.html" + ], + "doi": [ + "10.25798/5f51-3a36" + ] + }, + "fulltext": "Event:Ecfedc22-1a0e-4e9d-a5a8-5c65188be5a6", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:Ecfedc22-1a0e-4e9d-a5a8-5c65188be5a6", + "namespace": 7200, + "exists": "1", + "displaytitle": "eCAADe 2021" + }, + "Event:89ca2e86-d081-43ba-9a6e-499ab1747d95": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "eCAADe 2022" + ], + "title": [ + "40th Education and research in Computer Aided Architectural Design in Europe Conference" + ], + "creator": [ + { + "fulltext": "Organization:Education and Research in Computer Aided Architectural Design in Europe", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Education_and_Research_in_Computer_Aided_Architectural_Design_in_Europe", + "namespace": 7500, + "exists": "1", + "displaytitle": "Education and Research in Computer Aided Architectural Design in Europe" + }, + { + "fulltext": "Organization:Faculty of Architecture, KU Leuven", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture,_KU_Leuven", + "namespace": 7500, + "exists": "1", + "displaytitle": "Faculty of Architecture, KU Leuven" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", + "namespace": 7100, + "exists": "1", + "displaytitle": "eCAADe - Conference on Education and research in Computer Aided Architectural Design in Europe" + } + ], + "start_date": [ + { + "timestamp": "1663027200", + "raw": "1/2022/9/13" + } + ], + "end_date": [ + { + "timestamp": "1663286400", + "raw": "1/2022/9/16" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Technologiecampus Odisee" + ], + "city": [ + "Ghent" + ], + "region": [ + "Oost-Vlaanderen" + ], + "country": [ + { + "fulltext": "Country:BE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:BE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Belgium (BE)" + } + ], + "website": [ + "https://kuleuven.ecaade2022.be/" + ], + "doi": [ + "10.25798/830j-av15" + ] + }, + "fulltext": "Event:89ca2e86-d081-43ba-9a6e-499ab1747d95", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:89ca2e86-d081-43ba-9a6e-499ab1747d95", + "namespace": 7200, + "exists": "1", + "displaytitle": "eCAADe 2022" + }, + "Event:Ebce85e4-052c-41cc-be2b-393120789bde": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "eCAADe 2023" + ], + "title": [ + "41th Education and research in Computer Aided Architectural Design in Europe Conference" + ], + "creator": [ + { + "fulltext": "Organization:Graz University of Technology", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Graz_University_of_Technology", + "namespace": 7500, + "exists": "1", + "displaytitle": "Graz University of Technology" + }, + { + "fulltext": "Organization:Education and Research in Computer Aided Architectural Design in Europe", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Education_and_Research_in_Computer_Aided_Architectural_Design_in_Europe", + "namespace": 7500, + "exists": "1", + "displaytitle": "Education and Research in Computer Aided Architectural Design in Europe" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", + "namespace": 7100, + "exists": "1", + "displaytitle": "eCAADe - Conference on Education and research in Computer Aided Architectural Design in Europe" + } + ], + "start_date": [ + { + "timestamp": "1695168000", + "raw": "1/2023/9/20" + } + ], + "end_date": [ + { + "timestamp": "1695427200", + "raw": "1/2023/9/23" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Graz University of Technology" + ], + "city": [ + "Graz" + ], + "region": [ + "Styria" + ], + "country": [ + { + "fulltext": "Country:AT", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:AT", + "namespace": 7400, + "exists": "1", + "displaytitle": "Austria (AT)" + } + ], + "website": [ + "https://ecaade2023.tugraz.at/" + ], + "doi": [ + "10.25798/pzb8-9g95" + ] + }, + "fulltext": "Event:Ebce85e4-052c-41cc-be2b-393120789bde", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:Ebce85e4-052c-41cc-be2b-393120789bde", + "namespace": 7200, + "exists": "1", + "displaytitle": "eCAADe 2023" + }, + "Event:C42ed88b-2a3d-4355-81b4-bc0a95460e47": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + } + ], + "acronym": [ + "rca 2018" + ], + "title": [ + "Research Culture in Architecture - International Conference on Cross-Disciplinary Collaboration" + ], + "creator": [ + { + "fulltext": "Organization:Research Culture in Architecture (RCA)", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Research_Culture_in_Architecture_(RCA)", + "namespace": 7500, + "exists": "1", + "displaytitle": "Research Culture in Architecture (RCA)" + }, + { + "fulltext": "Organization:Fatuk – Faculty of Architecture, TU Kaiserslautern", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fatuk_%E2%80%93_Faculty_of_Architecture,_TU_Kaiserslautern", + "namespace": 7500, + "exists": "1", + "displaytitle": "Fatuk – Faculty of Architecture, TU Kaiserslautern" + } + ], + "in_series": [ + { + "fulltext": "Event Series:A4a71a48-7b96-49c1-bd51-8c9c13ce45be", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A4a71a48-7b96-49c1-bd51-8c9c13ce45be", + "namespace": 7100, + "exists": "1", + "displaytitle": "RCA - Research Culture in Architecture – International Conference on Cross-Disciplinary Collaboration in Architecture" + } + ], + "start_date": [ + { + "timestamp": "1538006400", + "raw": "1/2018/9/27" + } + ], + "end_date": [ + { + "timestamp": "1538092800", + "raw": "1/2018/9/28" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Faculty of Architecture, Technical University of Kaiserslautern" + ], + "city": [ + "Kaiserslautern" + ], + "region": [ + "Rhineland-Palatinate" + ], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [ + "https://rca2018.architektur.uni-kl.de/" + ], + "doi": [] + }, + "fulltext": "Event:C42ed88b-2a3d-4355-81b4-bc0a95460e47", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:C42ed88b-2a3d-4355-81b4-bc0a95460e47", + "namespace": 7200, + "exists": "1", + "displaytitle": "rca 2018" + }, + "Event:A343d41d-7491-4ad1-89bd-c6cfa510b9b2": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2008" + ], + "title": [ + "2008 SmartGeometry Conference" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1207180800", + "raw": "1/2008/4/3" + } + ], + "end_date": [ + { + "timestamp": "1207353600", + "raw": "1/2008/4/5" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "BMW Welt" + ], + "city": [ + "Munich" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Germany (DE)" + } + ], + "website": [], + "doi": [ + "10.25798/cc3c-cc88" + ] + }, + "fulltext": "Event:A343d41d-7491-4ad1-89bd-c6cfa510b9b2", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:A343d41d-7491-4ad1-89bd-c6cfa510b9b2", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2008" + }, + "Event:4b26c837-89d0-4d46-b4a7-54139af566c3": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2009" + ], + "title": [ + "2009 SmartGeometry Conference - Building Vision" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1237939200", + "raw": "1/2009/3/25" + } + ], + "end_date": [ + { + "timestamp": "1238544000", + "raw": "1/2009/4/1" + } + ], + "event_mode": [ + "on site" + ], + "venue": [], + "city": [ + "San Francisco" + ], + "region": [ + "CA" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "https://www.smartgeometry.org/sg2009-san-francisco" + ], + "doi": [ + "10.25798/efha-ex10" + ] + }, + "fulltext": "Event:4b26c837-89d0-4d46-b4a7-54139af566c3", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:4b26c837-89d0-4d46-b4a7-54139af566c3", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2009" + }, + "Event:04e4bd12-8888-48c4-979b-9b9a8d00d539": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2010" + ], + "title": [ + "2010 Smartgeometry Conference - Working Prototypes" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1268956800", + "raw": "1/2010/3/19" + } + ], + "end_date": [ + { + "timestamp": "1269388800", + "raw": "1/2010/3/24" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Institute for Advanced Architecture of Catalonia" + ], + "city": [ + "Barcelona" + ], + "region": [], + "country": [ + { + "fulltext": "Country:ES", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:ES", + "namespace": 7400, + "exists": "1", + "displaytitle": "Spain (ES)" + } + ], + "website": [ + "https://www.smartgeometry.org/sg2010-barcelona" + ], + "doi": [ + "10.25798/5ak8-nn24" + ] + }, + "fulltext": "Event:04e4bd12-8888-48c4-979b-9b9a8d00d539", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:04e4bd12-8888-48c4-979b-9b9a8d00d539", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2010" + }, + "Event:Dfc82b4e-179d-4e1c-bc0c-cc644225b3ec": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2011" + ], + "title": [ + "2011 Smartgeometry Conference - Building The Invisible" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1301270400", + "raw": "1/2011/3/28" + } + ], + "end_date": [ + { + "timestamp": "1301702400", + "raw": "1/2011/4/2" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Center for Information Technology and Architecture" + ], + "city": [ + "Copenhagen" + ], + "region": [], + "country": [ + { + "fulltext": "Country:DK", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:DK", + "namespace": 7400, + "exists": "1", + "displaytitle": "Denmark (DK)" + } + ], + "website": [ + "https://www.smartgeometry.org/sg2011-copenhagen" + ], + "doi": [ + "10.25798/y1s4-x603" + ] + }, + "fulltext": "Event:Dfc82b4e-179d-4e1c-bc0c-cc644225b3ec", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:Dfc82b4e-179d-4e1c-bc0c-cc644225b3ec", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2011" + }, + "Event:A397ccbd-0308-4f7f-be97-1c13ab4df957": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2012" + ], + "title": [ + "2012 Smartgeometry Conference - Material Intensities: Simulation, Energy, Environment" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1332115200", + "raw": "1/2012/3/19" + } + ], + "end_date": [ + { + "timestamp": "1332547200", + "raw": "1/2012/3/24" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Rensselaer Polytechnic Institute" + ], + "city": [ + "Troy" + ], + "region": [ + "New York" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "https://www.smartgeometry.org/sg2012-troy" + ], + "doi": [ + "10.25798/dv3e-fa91" + ] + }, + "fulltext": "Event:A397ccbd-0308-4f7f-be97-1c13ab4df957", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:A397ccbd-0308-4f7f-be97-1c13ab4df957", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2012" + }, + "Event:4ef0db92-733c-4881-ba16-800e9ba38110": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2013" + ], + "title": [ + "2013 Smartgeometry Conference - Constructing for Uncertainty" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1365984000", + "raw": "1/2013/4/15" + } + ], + "end_date": [ + { + "timestamp": "1366416000", + "raw": "1/2013/4/20" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "The Bartlett" + ], + "city": [ + "London" + ], + "region": [], + "country": [ + { + "fulltext": "Country:GB", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", + "namespace": 7400, + "exists": "1", + "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" + } + ], + "website": [ + "https://www.smartgeometry.org/sg2013-london" + ], + "doi": [ + "10.25798/1hdv-bh63" + ] + }, + "fulltext": "Event:4ef0db92-733c-4881-ba16-800e9ba38110", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:4ef0db92-733c-4881-ba16-800e9ba38110", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2013" + }, + "Event:Fd5ef231-c45c-4912-8cfd-4bbb4827602d": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2014" + ], + "title": [ + "2014 Smartgeometry Conference - Urban Compaction" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1405296000", + "raw": "1/2014/7/14" + } + ], + "end_date": [ + { + "timestamp": "1405728000", + "raw": "1/2014/7/19" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Chinese University of Hong Kong" + ], + "city": [ + "Hong Kong" + ], + "region": [], + "country": [ + { + "fulltext": "Country:CN", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CN", + "namespace": 7400, + "exists": "1", + "displaytitle": "China (CN)" + } + ], + "website": [ + "https://www.smartgeometry.org/sg2014-hong-kong" + ], + "doi": [ + "10.25798/ap4z-eb78" + ] + }, + "fulltext": "Event:Fd5ef231-c45c-4912-8cfd-4bbb4827602d", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:Fd5ef231-c45c-4912-8cfd-4bbb4827602d", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2014" + }, + "Event:9530ef08-cf54-4d46-8e9e-0516bb798166": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2016" + ], + "title": [ + "2016 Smartgeometry Conference - Hybrid Domains" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1459728000", + "raw": "1/2016/4/4" + } + ], + "end_date": [ + { + "timestamp": "1460160000", + "raw": "1/2016/4/9" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Chalmers University of Technology" + ], + "city": [ + "Gothenburg" + ], + "region": [], + "country": [ + { + "fulltext": "Country:SE", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:SE", + "namespace": 7400, + "exists": "1", + "displaytitle": "Sweden (SE)" + } + ], + "website": [ + "https://www.smartgeometry.org/sg2016-gothenburg" + ], + "doi": [ + "10.25798/6m8r-8z16" + ] + }, + "fulltext": "Event:9530ef08-cf54-4d46-8e9e-0516bb798166", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:9530ef08-cf54-4d46-8e9e-0516bb798166", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2016" + }, + "Event:078b109d-7552-41bb-bfc3-91f4f700f9c4": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2018" + ], + "title": [ + "2018 Smartgeometry Conference - Machine Minds" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1523059200", + "raw": "1/2018/4/7" + } + ], + "end_date": [ + { + "timestamp": "1523491200", + "raw": "1/2018/4/12" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "John H. Daniels Faculty of Architecture, Landscape, and Design" + ], + "city": [ + "CA/ON/Toronto" + ], + "region": [ + "Ontario" + ], + "country": [ + { + "fulltext": "Country:CA", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:CA", + "namespace": 7400, + "exists": "1", + "displaytitle": "Canada (CA)" + } + ], + "website": [ + "https://www.smartgeometry.org/sg2018-toronto" + ], + "doi": [ + "10.25798/zsma-9q10" + ] + }, + "fulltext": "Event:078b109d-7552-41bb-bfc3-91f4f700f9c4", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:078b109d-7552-41bb-bfc3-91f4f700f9c4", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2018" + }, + "Event:0192c1e5-1c4a-455a-853d-160ad09f82a5": { + "printouts": { + "subject": [ + { + "fulltext": "Academic Field:Architecture", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", + "namespace": 7300, + "exists": "1", + "displaytitle": "Architecture" + }, + { + "fulltext": "Academic Field:Design", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", + "namespace": 7300, + "exists": "1", + "displaytitle": "Design" + }, + { + "fulltext": "Academic Field:Civil Engineering", + "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", + "namespace": 7300, + "exists": "1", + "displaytitle": "Civil Engineering" + } + ], + "acronym": [ + "sg2020" + ], + "title": [ + "2020 Smartgeometry Conference - Vision" + ], + "creator": [ + { + "fulltext": "Organization:SmartGeometry Group", + "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", + "namespace": 7500, + "exists": "1", + "displaytitle": "SmartGeometry Group" + } + ], + "in_series": [ + { + "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", + "namespace": 7100, + "exists": "1", + "displaytitle": "sg - Smartgeometry" + } + ], + "start_date": [ + { + "timestamp": "1609459200", + "raw": "1/2021" + } + ], + "end_date": [ + { + "timestamp": "1609459200", + "raw": "1/2021" + } + ], + "event_mode": [ + "on site" + ], + "venue": [ + "Carnegie Mellon University" + ], + "city": [ + "Pittsburgh" + ], + "region": [ + "Pennsylvania" + ], + "country": [ + { + "fulltext": "Country:US", + "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", + "namespace": 7400, + "exists": "1", + "displaytitle": "United States of America (US)" + } + ], + "website": [ + "https://www.smartgeometry.org" + ], + "doi": [] + }, + "fulltext": "Event:0192c1e5-1c4a-455a-853d-160ad09f82a5", + "fullurl": "https://www.confident-conference.org:443/index.php/Event:0192c1e5-1c4a-455a-853d-160ad09f82a5", + "namespace": 7200, + "exists": "1", + "displaytitle": "sg2020" + } + }, + "serializer": "SMW\\Serializers\\QueryResultSerializer", + "version": 2, + "rows": 116 +} \ No newline at end of file diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/transfer.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/transfer.config.xml new file mode 100644 index 000000000..5a46d1df1 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/transfer.config.xml @@ -0,0 +1,38 @@ + + + + + INFO + + + translated-records.config.xml + + + harvested-data.model.xml + data/harvested-data/imported-records.rdf.xml + + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/translated-records.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/translated-records.config.xml new file mode 100644 index 000000000..4835eda84 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/translated-records.config.xml @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + org.vivoweb.harvester.util.repo.TextFileRecordHandler + data/translated-records + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/usage.txt b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/usage.txt new file mode 100644 index 000000000..efb259765 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/usage.txt @@ -0,0 +1,20 @@ +usage: JSONFetch + -d,--description a descriptive name for the json + object [have multiple -d for more + names] + -f,--file file containing json + -h,--help Help Message + -i,--id a single id for the json object + [have multiple -i for more ids] + -n,--namespaceBase the base namespace to use for each + node created + -o,--output RecordHandler config file path + -O,--outputOverride override the RH_PARAM of output + recordhandler using VALUE + -p,--path a single path for the json object + [have multiple -p for more json + paths] + -u,--url url which produces json + -w,--wordiness Set the console log level + -X,--config XML Configuration File + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/vivo.model.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/vivo.model.xml new file mode 100644 index 000000000..ec3558bc5 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/vivo.model.xml @@ -0,0 +1,104 @@ + + + + + tdb + /opt/data/forschungsatlas/tdbContentModels + http://vitro.mannlib.cornell.edu/default/vitro-kb-2 + diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/xsltranslator.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/xsltranslator.config.xml new file mode 100644 index 000000000..6669c0e76 --- /dev/null +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/xsltranslator.config.xml @@ -0,0 +1,17 @@ + + + + INFO + + raw-records.config.xml + + + translated-records.config.xml + + + confident-to-vivo.datamap.xsl + From caca8c54a3cab1cb8b9a62b1f22126064802c3f2 Mon Sep 17 00:00:00 2001 From: Kampe Date: Tue, 20 Aug 2024 14:14:03 +0200 Subject: [PATCH 3/5] added confident example configuration --- .gitignore | 3 ++ .../example-confident/confidentFetch.bat | 2 +- .../vivoweb/harvester/fetch/JSONFetch.java | 18 ++++----- .../harvester/util/XMLTagIndexing.java | 40 +++++++++++++++++++ 4 files changed, 53 insertions(+), 10 deletions(-) create mode 100644 src/main/java/org/vivoweb/harvester/util/XMLTagIndexing.java diff --git a/.gitignore b/.gitignore index d18021646..e395e2167 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,6 @@ utilities/rdbmigration/.work **/.classpath **/.project **/bin/ +/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/data/ +/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/logs/ +/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/previous-harvest/ diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat index ea192859d..eabc33499 100644 --- a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat @@ -16,7 +16,7 @@ REM current location associated with the deb installation. REM Since it is also possible the harvester was installed by REM uncompressing the tar.gz the setting is available to be changed REM and should agree with the installation location -set HARVESTER_INSTALL_DIR=C:\Users\KampeB\Dev\vivo-fid-bau-1-12\VIVO-Harvester +set HARVESTER_INSTALL_DIR=C:\Users\KampeB\Dev\Harvester set HARVEST_NAME=OpenAlex-Fetch FOR %%A IN (%Date:/=%) DO SET Today=%%A diff --git a/src/main/java/org/vivoweb/harvester/fetch/JSONFetch.java b/src/main/java/org/vivoweb/harvester/fetch/JSONFetch.java index d03ce07c3..a663b3abe 100644 --- a/src/main/java/org/vivoweb/harvester/fetch/JSONFetch.java +++ b/src/main/java/org/vivoweb/harvester/fetch/JSONFetch.java @@ -5,16 +5,10 @@ ******************************************************************************/ package org.vivoweb.harvester.fetch; -import java.io.IOException; -import java.util.*; - -import com.google.gson.Gson; -import com.google.gson.GsonBuilder; -import com.google.gson.JsonElement; -import com.google.gson.JsonObject; -import com.jayway.jsonpath.*; -import net.minidev.json.JSONObject; +import com.jayway.jsonpath.InvalidPathException; +import com.jayway.jsonpath.JsonPath; import net.minidev.json.JSONArray; +import net.minidev.json.JSONObject; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -27,6 +21,12 @@ import org.vivoweb.harvester.util.repo.RecordStreamOrigin; import org.vivoweb.harvester.util.repo.XMLRecordOutputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; + /** * Class for harvesting from JSON Data Sources * @author Dale Scheppler diff --git a/src/main/java/org/vivoweb/harvester/util/XMLTagIndexing.java b/src/main/java/org/vivoweb/harvester/util/XMLTagIndexing.java new file mode 100644 index 000000000..d7af42176 --- /dev/null +++ b/src/main/java/org/vivoweb/harvester/util/XMLTagIndexing.java @@ -0,0 +1,40 @@ +package org.vivoweb.harvester.util; + +public class XMLTagIndexing { + + private String xmlTagName = null; + private int elementNo = 0; + private boolean arrayIndexOpen = false; + + public String getXmlTagName() { + return xmlTagName; + } + + public void setXmlTagName(String tagName) { + this.xmlTagName = tagName; + } + + public int getElementNo() { + return elementNo; + } + + public void setElementNo(int elementNo) { + this.elementNo = elementNo; + } + + public void increaseElementNo() { + this.elementNo++; + } + + public boolean isArrayIndexOpen() { + return arrayIndexOpen; + } + + public void setArrayIndexOpen() { + this.arrayIndexOpen = true; + } + + public void setArrayIndexClosed() { + this.arrayIndexOpen = false; + } +} From 92dd6c798936949b53f898716d5cca6e0cc54dea Mon Sep 17 00:00:00 2001 From: Kampe Date: Tue, 20 Aug 2024 15:17:26 +0200 Subject: [PATCH 4/5] a bit of cleanup --- .gitignore | 6 +++--- .../example-confident/confident-to-vivo.datamap.xsl | 0 .../example-confident/confidentFetch.bat | 0 .../example-confident/confidentFetch.sh | 0 .../example-confident/confidentfetch.config.xml | 6 +----- .../example-confident/data.json | 0 .../example-confident/diff-additions.config.xml | 0 .../example-confident/diff-subtractions.config.xml | 0 .../example-confident/harvested-data.model.xml | 0 .../example-confident/openAlexfetch.config.xml | 0 .../example-confident/previous-harvest.model.xml | 0 .../example-confident/raw-records.config.xml | 0 .../example-confident/result.json | 0 .../example-confident/transfer.config.xml | 0 .../example-confident/translated-records.config.xml | 0 .../example-confident/usage.txt | 0 .../example-confident/vivo.model.xml | 0 .../example-confident/xsltranslator.config.xml | 0 18 files changed, 4 insertions(+), 8 deletions(-) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/confident-to-vivo.datamap.xsl (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/confidentFetch.bat (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/confidentFetch.sh (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/confidentfetch.config.xml (68%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/data.json (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/diff-additions.config.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/diff-subtractions.config.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/harvested-data.model.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/openAlexfetch.config.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/previous-harvest.model.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/raw-records.config.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/result.json (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/transfer.config.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/translated-records.config.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/usage.txt (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/vivo.model.xml (100%) rename example-scripts/bash-scripts/full-harvest-examples/{1.13-examples => 1.13-1.15-examples}/example-confident/xsltranslator.config.xml (100%) diff --git a/.gitignore b/.gitignore index e395e2167..ef9ac0a41 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,6 @@ utilities/rdbmigration/.work **/.classpath **/.project **/bin/ -/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/data/ -/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/logs/ -/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/previous-harvest/ +/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/data/ +/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/logs/ +/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/previous-harvest/ diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confident-to-vivo.datamap.xsl b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confident-to-vivo.datamap.xsl similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confident-to-vivo.datamap.xsl rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confident-to-vivo.datamap.xsl diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confidentFetch.bat similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.bat rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confidentFetch.bat diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.sh b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confidentFetch.sh similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentFetch.sh rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confidentFetch.sh diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentfetch.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confidentfetch.config.xml similarity index 68% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentfetch.config.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confidentfetch.config.xml index 50f5a638d..33676a4e4 100644 --- a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/confidentfetch.config.xml +++ b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/confidentfetch.config.xml @@ -1,19 +1,15 @@ - https://www.confident-conference.org/api.php?action=askargs&format=json&conditions=%1FConcept%3AEvents%1FHas%20subobject.Organization%3A%3A%2B%1FAcademic%20Field%3A%3AAcademic_Field%3AArchitecture%7C%7CAcademic_Field%3ACivil_Engineering%7C%7CAcademic_Field%3AUrban%20Studies&printouts=Academic%20Field%7CAcronym%7CTitle%7CIn%20Event%20Series%7CStart%20Date%7CEnd%20Date%7CEvent%20Mode%7CVenue%7CCity%7CRegion%7CCountry%7COfficial%20Website%7CDOI&parameters=offset%3D0%7Climit%3D500 - raw-records.config.xml http://vivo.example.com/harvest/aims_users/ event uid $.query.results - TRACE diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/data.json b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/data.json similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/data.json rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/data.json diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-additions.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/diff-additions.config.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-additions.config.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/diff-additions.config.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-subtractions.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/diff-subtractions.config.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/diff-subtractions.config.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/diff-subtractions.config.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/harvested-data.model.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/harvested-data.model.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/harvested-data.model.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/harvested-data.model.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/openAlexfetch.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/openAlexfetch.config.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/openAlexfetch.config.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/openAlexfetch.config.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/previous-harvest.model.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/previous-harvest.model.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/previous-harvest.model.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/previous-harvest.model.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/raw-records.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/raw-records.config.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/raw-records.config.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/raw-records.config.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/result.json b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/result.json similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/result.json rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/result.json diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/transfer.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/transfer.config.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/transfer.config.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/transfer.config.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/translated-records.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/translated-records.config.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/translated-records.config.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/translated-records.config.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/usage.txt b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/usage.txt similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/usage.txt rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/usage.txt diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/vivo.model.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/vivo.model.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/vivo.model.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/vivo.model.xml diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/xsltranslator.config.xml b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/xsltranslator.config.xml similarity index 100% rename from example-scripts/bash-scripts/full-harvest-examples/1.13-examples/example-confident/xsltranslator.config.xml rename to example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/xsltranslator.config.xml From 51d54a724fe70c9f7489707f4371f84e2f45c266 Mon Sep 17 00:00:00 2001 From: Kampe Date: Tue, 20 Aug 2024 15:46:00 +0200 Subject: [PATCH 5/5] a bit of cleanup --- .../example-confident/data.json | 40 - .../example-confident/result.json | 10070 ---------------- 2 files changed, 10110 deletions(-) delete mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/data.json delete mode 100644 example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/result.json diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/data.json b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/data.json deleted file mode 100644 index 5b66cd62b..000000000 --- a/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/data.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "nodes": [ { - "node": { - "Username": "fereira", - "Title": "Mr.", - "LastName": "Fereira", - "FirstName": "John", - "Profile": "consultant\r\ntechnology strategist", - "Email": "jaf30@cornell.edu", - "Country": "United States of America", - "geolocation": "http:\/\/aims.fao.org\/aos\/geopolitical.owl#United States of America", - "Organization": "Cornell University", - "Role": "Technology Strategist", - "Picture": "http:\/\/aims.fao.org\/sites\/default\/files\/profiles\/profile_image_108086.jpg", - "Expertise": "library technologies\r\nsemantic web\r\ninstitutional repositories", - "Interests": "Africa, agINFRA, AgMES - Agricultural Metadata Element Set, AgriDrupal, AgriOcean DSpace, AgriVIVO, AgroTagger, AGROVOC", - "Nid": "108086", - "Profile URL": "http:\/\/aims.fao.org\/node\/108086" - } - }, - { - "node": { - "Username": "valeria.pesce", - "LastName": "Pesce", - "FirstName": "Valeria", - "Profile": "In the last six years at the Global Forum on Agricultural research (GFAR) I have worked extensively on metadata standards and protocols for managing and exchanging information between systems, in strict collaboration with the OEKCS group in FAO.", - "Email": "valeria.pesce@fao.org", - "Country": "Italy", - "geolocation": "http:\/\/aims.fao.org\/aos\/geopolitical.owl#Italy", - "Organization": "Food and Agriculture Organization of the United Nations (FAO)", - "Role": "Information Management Specialist", - "Website": "http:\/\/www.valeriapesce.name", - "Picture": "http:\/\/aims.fao.org\/sites\/default\/files\/profiles\/profile_image_108074_0.jpg", - "Expertise": "Information management tools, information systems, information architectures", - "Interests": "agINFRA, AgriDrupal, AgriFeeds, AgriVIVO, authority control, automatic indexing, CIARD Content Management Task Force, CIARD RING, cloud services, CMS - Content Management Systems, data exchange, Drupal, IAALD - International Association of Agricultural Information Specialists, information management, institutional repository software, interoperability, Linked Open Data - LOD, RDF - Resource Description Framework, Semantic Web", - "Nid": "108074", - "Profile URL": "http:\/\/aims.fao.org\/node\/108074" - } - }] -} diff --git a/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/result.json b/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/result.json deleted file mode 100644 index a4af7b6a3..000000000 --- a/example-scripts/bash-scripts/full-harvest-examples/1.13-1.15-examples/example-confident/result.json +++ /dev/null @@ -1,10070 +0,0 @@ -{ - "printrequests": [ - { - "label": "", - "key": "", - "redi": "", - "typeid": "_wpg", - "mode": 2, - "format": false - }, - { - "label": "subject", - "key": "Academic_Field", - "redi": "", - "typeid": "_wpg", - "mode": 1, - "format": "" - }, - { - "label": "acronym", - "key": "Acronym", - "redi": "", - "typeid": "_txt", - "mode": 1, - "format": "" - }, - { - "label": "title", - "key": "Title", - "redi": "", - "typeid": "_txt", - "mode": 1, - "format": "" - }, - { - "label": "creator", - "key": "Organization", - "redi": "", - "typeid": "_wpg", - "mode": 4, - "format": "", - "chain": "Has subobject.Organization" - }, - { - "label": "in_series", - "key": "In_Event_Series", - "redi": "", - "typeid": "_wpg", - "mode": 1, - "format": "" - }, - { - "label": "start_date", - "key": "Start_Date", - "redi": "", - "typeid": "_dat", - "mode": 1, - "format": "" - }, - { - "label": "end_date", - "key": "End_Date", - "redi": "", - "typeid": "_dat", - "mode": 1, - "format": "" - }, - { - "label": "event_mode", - "key": "Event_Mode", - "redi": "", - "typeid": "_txt", - "mode": 1, - "format": "" - }, - { - "label": "venue", - "key": "Venue", - "redi": "", - "typeid": "_txt", - "mode": 1, - "format": "" - }, - { - "label": "city", - "key": "City", - "redi": "", - "typeid": "_txt", - "mode": 1, - "format": "" - }, - { - "label": "region", - "key": "Region", - "redi": "", - "typeid": "_txt", - "mode": 1, - "format": "" - }, - { - "label": "country", - "key": "Country", - "redi": "", - "typeid": "_wpg", - "mode": 1, - "format": "" - }, - { - "label": "website", - "key": "Official_Website", - "redi": "", - "typeid": "_uri", - "mode": 1, - "format": "" - }, - { - "label": "doi", - "key": "DOI", - "redi": "", - "typeid": "_eid", - "mode": 1, - "format": "" - } - ], - "results": { - "Event:A308e45c-f289-448d-990a-0c0231189d31": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "17th DOCOMOMO Germany Conference" - ], - "creator": [ - { - "fulltext": "Organization:Docomomo Deutschland e.V.", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Docomomo_Deutschland_e.V.", - "namespace": 7500, - "exists": "1", - "displaytitle": "Docomomo Deutschland e.V." - } - ], - "in_series": [ - { - "fulltext": "Event Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", - "namespace": 7100, - "exists": "1", - "displaytitle": "Jahrestagungen von Docomomo Deutschland e.V." - } - ], - "start_date": [ - { - "timestamp": "1583366400", - "raw": "1/2020/3/5" - } - ], - "end_date": [ - { - "timestamp": "1583539200", - "raw": "1/2020/3/7" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Hanseatenweg 10" - ], - "city": [ - "Berlin" - ], - "region": [ - "Berlin" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://docomomo.de/aktivitaeten/jahrestagungen/509-2020-17th-docomomo-germany-conference-info.html" - ], - "doi": [ - "10.25798/hhp9-wv56" - ] - }, - "fulltext": "Event:A308e45c-f289-448d-990a-0c0231189d31", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:A308e45c-f289-448d-990a-0c0231189d31", - "namespace": 7200, - "exists": "1", - "displaytitle": "17th DOCOMOMO Germany Conference" - }, - "Event:C3632bcc-a9be-40a4-baca-73bc319e3ca2": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "18. Docomomo Deutschland Tagung" - ], - "creator": [ - { - "fulltext": "Organization:Docomomo Deutschland e.V.", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Docomomo_Deutschland_e.V.", - "namespace": 7500, - "exists": "1", - "displaytitle": "Docomomo Deutschland e.V." - } - ], - "in_series": [ - { - "fulltext": "Event Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", - "namespace": 7100, - "exists": "1", - "displaytitle": "Jahrestagungen von Docomomo Deutschland e.V." - } - ], - "start_date": [ - { - "timestamp": "1614297600", - "raw": "1/2021/2/26" - } - ], - "end_date": [ - { - "timestamp": "1614384000", - "raw": "1/2021/2/27" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://docomomo.de/aktivitaeten/jahrestagungen/505-2021.html" - ], - "doi": [ - "10.25798/sys0-r112" - ] - }, - "fulltext": "Event:C3632bcc-a9be-40a4-baca-73bc319e3ca2", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:C3632bcc-a9be-40a4-baca-73bc319e3ca2", - "namespace": 7200, - "exists": "1", - "displaytitle": "18. Docomomo Deutschland Tagung" - }, - "Event:A246af97-8011-49c0-b153-21d75b3182b8": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "19. docomomo Deutschland Tagung" - ], - "creator": [ - { - "fulltext": "Organization:Docomomo Deutschland e.V.", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Docomomo_Deutschland_e.V.", - "namespace": 7500, - "exists": "1", - "displaytitle": "Docomomo Deutschland e.V." - } - ], - "in_series": [ - { - "fulltext": "Event Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", - "namespace": 7100, - "exists": "1", - "displaytitle": "Jahrestagungen von Docomomo Deutschland e.V." - } - ], - "start_date": [ - { - "timestamp": "1651190400", - "raw": "1/2022/4/29" - } - ], - "end_date": [ - { - "timestamp": "1651363200", - "raw": "1/2022/5/1" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "UNESCO-Welterbe Zollverein" - ], - "city": [ - "Essen" - ], - "region": [ - "North Rhine-Westphalia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://docomomo.de/aktivitaeten/jahrestagungen/527-2022-19-docomomo-deutschland-tagung-essen-2022.html" - ], - "doi": [ - "10.25798/5p67-jn41" - ] - }, - "fulltext": "Event:A246af97-8011-49c0-b153-21d75b3182b8", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:A246af97-8011-49c0-b153-21d75b3182b8", - "namespace": 7200, - "exists": "1", - "displaytitle": "19. docomomo Deutschland Tagung" - }, - "Event:9c083977-8f3e-461e-b4ab-5d3d6e3a5055": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Engineering" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "'\"`UNIQ--nowiki-00000060-QINU`\"'2 IngD4C" - ], - "title": [ - "Second Symposium Ingenieurbaukunst - Design for Construction" - ], - "creator": [ - { - "fulltext": "Organization:Ernst & Sohn", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ernst_%26_Sohn", - "namespace": 7500, - "exists": "1", - "displaytitle": "Ernst & Sohn" - }, - { - "fulltext": "Organization:Akademie der Ingenieure AkadIng GmbH", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Akademie_der_Ingenieure_AkadIng_GmbH", - "namespace": 7500, - "exists": "1", - "displaytitle": "Akademie der Ingenieure AkadIng GmbH" - } - ], - "in_series": [ - { - "fulltext": "Event Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", - "namespace": 7100, - "exists": "1", - "displaytitle": "Ingenieurbaukunst – Design for Construction" - } - ], - "start_date": [ - { - "timestamp": "1606176000", - "raw": "1/2020/11/24" - } - ], - "end_date": [ - { - "timestamp": "1606176000", - "raw": "1/2020/11/24" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.ernst-und-sohn.de/veranstaltungen/ingenieurbaukunst-design-for-construction-2020" - ], - "doi": [] - }, - "fulltext": "Event:9c083977-8f3e-461e-b4ab-5d3d6e3a5055", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:9c083977-8f3e-461e-b4ab-5d3d6e3a5055", - "namespace": 7200, - "exists": "1", - "displaytitle": "2 IngD4C" - }, - "Event:7a89536e-2b1c-472a-bc06-88be07cdac02": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "20. Projektetage der Bauforschung" - ], - "creator": [ - { - "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung,_Bundesamt_f%C3%BCr_Bauwesen_und_Raumordnung", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung" - } - ], - "in_series": [ - { - "fulltext": "Event Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", - "namespace": 7100, - "exists": "1", - "displaytitle": "BBSR - Projektetage der Bauforschung" - } - ], - "start_date": [ - { - "timestamp": "1655769600", - "raw": "1/2022/6/21" - } - ], - "end_date": [ - { - "timestamp": "1655942400", - "raw": "1/2022/6/23" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Zukunft Bau Pop-up Campus Aachen" - ], - "city": [ - "Aachen" - ], - "region": [ - "North Rhine-Westphalia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.zukunftbau.de/neue-meldung/20-projektetage-der-bauforschung" - ], - "doi": [] - }, - "fulltext": "Event:7a89536e-2b1c-472a-bc06-88be07cdac02", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:7a89536e-2b1c-472a-bc06-88be07cdac02", - "namespace": 7200, - "exists": "1", - "displaytitle": "20. Projektetage der Bauforschung" - }, - "Event:D47007e7-4c9d-4849-bc8c-84696afecb9d": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "20. docomomo Deutschland Tagung" - ], - "creator": [ - { - "fulltext": "Organization:Docomomo Deutschland e.V.", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Docomomo_Deutschland_e.V.", - "namespace": 7500, - "exists": "1", - "displaytitle": "Docomomo Deutschland e.V." - } - ], - "in_series": [ - { - "fulltext": "Event Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dc0fbbde-7ad4-4c03-911e-483a2b621e69", - "namespace": 7100, - "exists": "1", - "displaytitle": "Jahrestagungen von Docomomo Deutschland e.V." - } - ], - "start_date": [ - { - "timestamp": "1682640000", - "raw": "1/2023/4/28" - } - ], - "end_date": [ - { - "timestamp": "1682726400", - "raw": "1/2023/4/29" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Paulskirche" - ], - "city": [ - "Frankfurt am Main" - ], - "region": [ - "Hesse" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://docomomo.de/aktivitaeten/jahrestagungen/560-20-docomomo-deutschland-tagung-ffm-2023.html" - ], - "doi": [ - "10.25798/6d6w-nz78" - ] - }, - "fulltext": "Event:D47007e7-4c9d-4849-bc8c-84696afecb9d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:D47007e7-4c9d-4849-bc8c-84696afecb9d", - "namespace": 7200, - "exists": "1", - "displaytitle": "20. docomomo Deutschland Tagung" - }, - "Event:43347958-f5ad-4d68-8025-1dfc79f947b2": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "21. Projektetage der Bauforschung" - ], - "creator": [ - { - "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung,_Bundesamt_f%C3%BCr_Bauwesen_und_Raumordnung", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung" - } - ], - "in_series": [ - { - "fulltext": "Event Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", - "namespace": 7100, - "exists": "1", - "displaytitle": "BBSR - Projektetage der Bauforschung" - } - ], - "start_date": [ - { - "timestamp": "1663632000", - "raw": "1/2022/9/20" - } - ], - "end_date": [ - { - "timestamp": "1663718400", - "raw": "1/2022/9/21" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.zukunftbau.de/neue-meldung/21-projektetage-der-bauforschung-im-online-format" - ], - "doi": [] - }, - "fulltext": "Event:43347958-f5ad-4d68-8025-1dfc79f947b2", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:43347958-f5ad-4d68-8025-1dfc79f947b2", - "namespace": 7200, - "exists": "1", - "displaytitle": "21. Projektetage der Bauforschung" - }, - "Event:D07bca32-d1e2-4d39-b5ec-a1310ec084b8": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "22. Projektetage der Bauforschung" - ], - "creator": [ - { - "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung,_Bundesamt_f%C3%BCr_Bauwesen_und_Raumordnung", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung" - } - ], - "in_series": [ - { - "fulltext": "Event Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", - "namespace": 7100, - "exists": "1", - "displaytitle": "BBSR - Projektetage der Bauforschung" - } - ], - "start_date": [ - { - "timestamp": "1669075200", - "raw": "1/2022/11/22" - } - ], - "end_date": [ - { - "timestamp": "1669161600", - "raw": "1/2022/11/23" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.zukunftbau.de/neue-meldung/22-projektetage-der-bauforschung-im-online-format" - ], - "doi": [] - }, - "fulltext": "Event:D07bca32-d1e2-4d39-b5ec-a1310ec084b8", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:D07bca32-d1e2-4d39-b5ec-a1310ec084b8", - "namespace": 7200, - "exists": "1", - "displaytitle": "22. Projektetage der Bauforschung" - }, - "Event:F82fb970-b6fb-49ba-908d-c4da68b0cab0": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "23. Projektetage der Bauforschung" - ], - "creator": [ - { - "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung,_Bundesamt_f%C3%BCr_Bauwesen_und_Raumordnung", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung, Bundesamt für Bauwesen und Raumordnung" - } - ], - "in_series": [ - { - "fulltext": "Event Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:Dd774ca2-fe65-4fd3-926c-f46f4bfa2473", - "namespace": 7100, - "exists": "1", - "displaytitle": "BBSR - Projektetage der Bauforschung" - } - ], - "start_date": [ - { - "timestamp": "1678752000", - "raw": "1/2023/3/14" - } - ], - "end_date": [ - { - "timestamp": "1678838400", - "raw": "1/2023/3/15" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.zukunftbau.de/neue-meldung/23-projektetage-der-bauforschung-im-online-format" - ], - "doi": [ - "10.25798/735y-6b28" - ] - }, - "fulltext": "Event:F82fb970-b6fb-49ba-908d-c4da68b0cab0", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:F82fb970-b6fb-49ba-908d-c4da68b0cab0", - "namespace": 7200, - "exists": "1", - "displaytitle": "23. Projektetage der Bauforschung" - }, - "Event:5a2c9bff-13ac-40fa-afbf-f3a47bf6488c": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Engineering" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "'\"`UNIQ--nowiki-0000003A-QINU`\"'3 IngD4C" - ], - "title": [ - "3. Symposium Ingenieurbaukunst – Design for Construction§" - ], - "creator": [ - { - "fulltext": "Organization:Ernst & Sohn", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ernst_%26_Sohn", - "namespace": 7500, - "exists": "1", - "displaytitle": "Ernst & Sohn" - }, - { - "fulltext": "Organization:Akademie der Ingenieure AkadIng GmbH", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Akademie_der_Ingenieure_AkadIng_GmbH", - "namespace": 7500, - "exists": "1", - "displaytitle": "Akademie der Ingenieure AkadIng GmbH" - } - ], - "in_series": [ - { - "fulltext": "Event Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", - "namespace": 7100, - "exists": "1", - "displaytitle": "Ingenieurbaukunst – Design for Construction" - } - ], - "start_date": [ - { - "timestamp": "1637193600", - "raw": "1/2021/11/18" - } - ], - "end_date": [ - { - "timestamp": "1637193600", - "raw": "1/2021/11/18" - } - ], - "event_mode": [ - "hybrid" - ], - "venue": [ - "Museum Angewandte Kunst" - ], - "city": [ - "Frankfurt am Main" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://fort-und-weiterbildung.akademie-der-ingenieure.de/pub/Ingenieurbaukunst-Design-for-Construction/event/INGD/01/open" - ], - "doi": [] - }, - "fulltext": "Event:5a2c9bff-13ac-40fa-afbf-f3a47bf6488c", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:5a2c9bff-13ac-40fa-afbf-f3a47bf6488c", - "namespace": 7200, - "exists": "1", - "displaytitle": "3 IngD4C" - }, - "Event:3b9d829d-b8c0-497c-9e24-5712cabf85ba": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Engineering" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "'\"`UNIQ--nowiki-0000003C-QINU`\"'4 IngD4C" - ], - "title": [ - "4th Annual Symposium Ingenieurbaukunst – Design for Construction" - ], - "creator": [ - { - "fulltext": "Organization:Ernst & Sohn", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ernst_%26_Sohn", - "namespace": 7500, - "exists": "1", - "displaytitle": "Ernst & Sohn" - }, - { - "fulltext": "Organization:Akademie der Ingenieure AkadIng GmbH", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Akademie_der_Ingenieure_AkadIng_GmbH", - "namespace": 7500, - "exists": "1", - "displaytitle": "Akademie der Ingenieure AkadIng GmbH" - } - ], - "in_series": [ - { - "fulltext": "Event Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:1a8eeba9-1b93-4c49-9f2b-1f58e1c30951", - "namespace": 7100, - "exists": "1", - "displaytitle": "Ingenieurbaukunst – Design for Construction" - } - ], - "start_date": [ - { - "timestamp": "1669680000", - "raw": "1/2022/11/29" - } - ], - "end_date": [ - { - "timestamp": "1669680000", - "raw": "1/2022/11/29" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Wallraf-Richartz-Museum" - ], - "city": [ - "Cologne" - ], - "region": [ - "North Rhine-Westphalia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://ingd4c.org/" - ], - "doi": [ - "10.25798/cmes-v035" - ] - }, - "fulltext": "Event:3b9d829d-b8c0-497c-9e24-5712cabf85ba", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:3b9d829d-b8c0-497c-9e24-5712cabf85ba", - "namespace": 7200, - "exists": "1", - "displaytitle": "4 IngD4C" - }, - "Event:33fe5a30-127a-4cfd-8679-fc5ab045645a": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "7. Oldenburger BIMTag" - ], - "creator": [ - { - "fulltext": "Organization:Jade Hochschule", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Jade_Hochschule", - "namespace": 7500, - "exists": "1", - "displaytitle": "Jade Hochschule" - }, - { - "fulltext": "Organization:BIM Baumeister Akademie", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:BIM_Baumeister_Akademie", - "namespace": 7500, - "exists": "1", - "displaytitle": "BIM Baumeister Akademie" - } - ], - "in_series": [ - { - "fulltext": "Event Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", - "namespace": 7100, - "exists": "1", - "displaytitle": "Oldenburger BIMTage" - } - ], - "start_date": [ - { - "timestamp": "1582070400", - "raw": "1/2020/2/19" - } - ], - "end_date": [ - { - "timestamp": "1582156800", - "raw": "1/2020/2/20" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Campus Oldenburg Jade Hochschule" - ], - "city": [ - "Oldenburg" - ], - "region": [ - "Lower Saxony" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.jade-hs.de/unsere-hochschule/wir-stellen-uns-vor/veranstaltungen/oldenburger-bimtag/archiv/7-oldenburger-bimtag/" - ], - "doi": [] - }, - "fulltext": "Event:33fe5a30-127a-4cfd-8679-fc5ab045645a", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:33fe5a30-127a-4cfd-8679-fc5ab045645a", - "namespace": 7200, - "exists": "1", - "displaytitle": "7. Oldenburger BIMTag" - }, - "Event:50d5b904-ba1c-49f9-a9be-fbb1622a63ed": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "8. Forum Architekturwissenschaft" - ], - "creator": [ - { - "fulltext": "Organization:Netzwerk Architekturwissenschaft e.V.", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Netzwerk_Architekturwissenschaft_e.V.", - "namespace": 7500, - "exists": "1", - "displaytitle": "Netzwerk Architekturwissenschaft e.V." - }, - { - "fulltext": "Organization:Staatlichen Akademie der Bildenden Künste Stuttgart", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Staatlichen_Akademie_der_Bildenden_K%C3%BCnste_Stuttgart", - "namespace": 7500, - "exists": "1", - "displaytitle": "Staatlichen Akademie der Bildenden Künste Stuttgart" - }, - { - "fulltext": "Organization:Technischen Universität Darmstadt", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technischen_Universit%C3%A4t_Darmstadt", - "namespace": 7500, - "exists": "1", - "displaytitle": "Technischen Universität Darmstadt" - }, - { - "fulltext": "Organization:Technischen Universität Berlin", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technischen_Universit%C3%A4t_Berlin", - "namespace": 7500, - "exists": "1", - "displaytitle": "Technischen Universität Berlin" - }, - { - "fulltext": "Organization:Berliner Hochschule für Technik", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Berliner_Hochschule_f%C3%BCr_Technik", - "namespace": 7500, - "exists": "1", - "displaytitle": "Berliner Hochschule für Technik" - } - ], - "in_series": [ - { - "fulltext": "Event Series:2e579e1b-c86e-46bc-9020-aec4f7726bd4", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:2e579e1b-c86e-46bc-9020-aec4f7726bd4", - "namespace": 7100, - "exists": "1", - "displaytitle": "" - } - ], - "start_date": [ - { - "timestamp": "1646784000", - "raw": "1/2022/3/9" - } - ], - "end_date": [ - { - "timestamp": "1646956800", - "raw": "1/2022/3/11" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://architekturwissenschaft.net/foren/" - ], - "doi": [] - }, - "fulltext": "Event:50d5b904-ba1c-49f9-a9be-fbb1622a63ed", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:50d5b904-ba1c-49f9-a9be-fbb1622a63ed", - "namespace": 7200, - "exists": "1", - "displaytitle": "8. Forum Architekturwissenschaft" - }, - "Event:406ae21e-59e3-4643-81dd-c6fb57b457e6": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "8. Oldenburger BIMTag DIGITAL" - ], - "creator": [ - { - "fulltext": "Organization:Jade Hochschule", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Jade_Hochschule", - "namespace": 7500, - "exists": "1", - "displaytitle": "Jade Hochschule" - }, - { - "fulltext": "Organization:BIM Baumeister Akademie", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:BIM_Baumeister_Akademie", - "namespace": 7500, - "exists": "1", - "displaytitle": "BIM Baumeister Akademie" - } - ], - "in_series": [ - { - "fulltext": "Event Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", - "namespace": 7100, - "exists": "1", - "displaytitle": "Oldenburger BIMTage" - } - ], - "start_date": [ - { - "timestamp": "1631145600", - "raw": "1/2021/9/9" - } - ], - "end_date": [ - { - "timestamp": "1631145600", - "raw": "1/2021/9/9" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.jade-hs.de/unsere-hochschule/wir-stellen-uns-vor/veranstaltungen/oldenburger-bimtag/archiv/8-oldenburger-bimtag/" - ], - "doi": [] - }, - "fulltext": "Event:406ae21e-59e3-4643-81dd-c6fb57b457e6", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:406ae21e-59e3-4643-81dd-c6fb57b457e6", - "namespace": 7200, - "exists": "1", - "displaytitle": "8. Oldenburger BIMTag DIGITAL" - }, - "Event:9d654957-f498-4812-a636-bcd2de9a2ad7": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "9. Forum Architekturwissenschaft" - ], - "creator": [ - { - "fulltext": "Organization:Netzwerk Architekturwissenschaft e.V.", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Netzwerk_Architekturwissenschaft_e.V.", - "namespace": 7500, - "exists": "1", - "displaytitle": "Netzwerk Architekturwissenschaft e.V." - }, - { - "fulltext": "Organization:Technische Universität Berlin", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technische_Universit%C3%A4t_Berlin", - "namespace": 7500, - "exists": "1", - "displaytitle": "Technische Universität Berlin" - }, - { - "fulltext": "Organization:HafenCity Universität Hamburg", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:HafenCity_Universit%C3%A4t_Hamburg", - "namespace": 7500, - "exists": "1", - "displaytitle": "HafenCity Universität Hamburg" - } - ], - "in_series": [ - { - "fulltext": "Event Series:2e579e1b-c86e-46bc-9020-aec4f7726bd4", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:2e579e1b-c86e-46bc-9020-aec4f7726bd4", - "namespace": 7100, - "exists": "1", - "displaytitle": "" - } - ], - "start_date": [ - { - "timestamp": "1687305600", - "raw": "1/2023/6/21" - } - ], - "end_date": [ - { - "timestamp": "1687478400", - "raw": "1/2023/6/23" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Berlin" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://architekturwissenschaft.net/foren/" - ], - "doi": [ - "10.25798/sz6d-9p82" - ] - }, - "fulltext": "Event:9d654957-f498-4812-a636-bcd2de9a2ad7", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:9d654957-f498-4812-a636-bcd2de9a2ad7", - "namespace": 7200, - "exists": "1", - "displaytitle": "9. Forum Architekturwissenschaft" - }, - "Event:906adadb-6922-44af-83a5-6f80fcd89c33": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "9. Oldenburger BIMTag" - ], - "creator": [ - { - "fulltext": "Organization:Jade Hochschule", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Jade_Hochschule", - "namespace": 7500, - "exists": "1", - "displaytitle": "Jade Hochschule" - }, - { - "fulltext": "Organization:BIM Baumeister Akademie", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:BIM_Baumeister_Akademie", - "namespace": 7500, - "exists": "1", - "displaytitle": "BIM Baumeister Akademie" - } - ], - "in_series": [ - { - "fulltext": "Event Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50e0f6fd-30a0-4577-ae7a-2287883de5e6", - "namespace": 7100, - "exists": "1", - "displaytitle": "Oldenburger BIMTage" - } - ], - "start_date": [ - { - "timestamp": "1662595200", - "raw": "1/2022/9/8" - } - ], - "end_date": [ - { - "timestamp": "1662681600", - "raw": "1/2022/9/9" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Campus Oldenburg Jade Hochschule" - ], - "city": [ - "Oldenburg" - ], - "region": [ - "Lower Saxony" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://bim-baumeister-akademie.de/" - ], - "doi": [] - }, - "fulltext": "Event:906adadb-6922-44af-83a5-6f80fcd89c33", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:906adadb-6922-44af-83a5-6f80fcd89c33", - "namespace": 7200, - "exists": "1", - "displaytitle": "9. Oldenburger BIMTag" - }, - "Event:4b7a7995-4f85-489f-aa83-43109bc2b309": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "ACADIA 2021" - ], - "title": [ - "Realignments: Toward Critical Computation" - ], - "creator": [ - { - "fulltext": "Organization:Association for Computer Aided Design in Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer_Aided_Design_in_Architecture", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer Aided Design in Architecture" - } - ], - "in_series": [ - { - "fulltext": "Event Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", - "namespace": 7100, - "exists": "1", - "displaytitle": "ACADIA - Conference of the Association for Computer Aided Design in Architecture" - } - ], - "start_date": [ - { - "timestamp": "1635897600", - "raw": "1/2021/11/3" - } - ], - "end_date": [ - { - "timestamp": "1636156800", - "raw": "1/2021/11/6" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "http://2021.acadia.org" - ], - "doi": [ - "10.25798/zcp6-ne69" - ] - }, - "fulltext": "Event:4b7a7995-4f85-489f-aa83-43109bc2b309", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:4b7a7995-4f85-489f-aa83-43109bc2b309", - "namespace": 7200, - "exists": "1", - "displaytitle": "ACADIA 2021" - }, - "Event:8aeb092d-e0a9-418a-b6c0-395df36f126b": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "ACADIA 2022" - ], - "title": [ - "Hybrids & Haecceities" - ], - "creator": [ - { - "fulltext": "Organization:Association for Computer Aided Design in Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer_Aided_Design_in_Architecture", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer Aided Design in Architecture" - }, - { - "fulltext": "Organization:Weitzmann School of Design, University of Pennsylvania", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Weitzmann_School_of_Design,_University_of_Pennsylvania", - "namespace": 7500, - "exists": "1", - "displaytitle": "Weitzmann School of Design, University of Pennsylvania" - } - ], - "in_series": [ - { - "fulltext": "Event Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", - "namespace": 7100, - "exists": "1", - "displaytitle": "ACADIA - Conference of the Association for Computer Aided Design in Architecture" - } - ], - "start_date": [ - { - "timestamp": "1666742400", - "raw": "1/2022/10/26" - } - ], - "end_date": [ - { - "timestamp": "1667001600", - "raw": "1/2022/10/29" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Annenberg Center for the Performing Arts" - ], - "city": [ - "Philadelphia" - ], - "region": [ - "Pennsylvania" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://2022.acadia.org/" - ], - "doi": [ - "10.25798/an1d-tc46" - ] - }, - "fulltext": "Event:8aeb092d-e0a9-418a-b6c0-395df36f126b", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:8aeb092d-e0a9-418a-b6c0-395df36f126b", - "namespace": 7200, - "exists": "1", - "displaytitle": "ACADIA 2022" - }, - "Event:Af472289-c8dc-4d1c-a04d-4523953b7804": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "ACADIA 2023" - ], - "title": [ - "Habits of the Anthropocene: Scarcity and Abundance in a Post-Material Economy" - ], - "creator": [ - { - "fulltext": "Organization:Association for Computer Aided Design in Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer_Aided_Design_in_Architecture", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer Aided Design in Architecture" - } - ], - "in_series": [ - { - "fulltext": "Event Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:95ffe8ce-ba3c-4c1f-85af-65ac5161e5a1", - "namespace": 7100, - "exists": "1", - "displaytitle": "ACADIA - Conference of the Association for Computer Aided Design in Architecture" - } - ], - "start_date": [ - { - "timestamp": "1697846400", - "raw": "1/2023/10/21" - } - ], - "end_date": [ - { - "timestamp": "1698451200", - "raw": "1/2023/10/28" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "CU Denver" - ], - "city": [ - "Denver" - ], - "region": [ - "Colorado" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "https://acadia2023.cargo.site/" - ], - "doi": [ - "10.25798/9g5e-8y15" - ] - }, - "fulltext": "Event:Af472289-c8dc-4d1c-a04d-4523953b7804", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:Af472289-c8dc-4d1c-a04d-4523953b7804", - "namespace": 7200, - "exists": "1", - "displaytitle": "ACADIA 2023" - }, - "Event:6cc929ad-c2e6-44a0-8712-d83a09ee1d00": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "Advanced Building Skins 2022" - ], - "title": [ - "17th Advanced Building Skins Conference & Expo" - ], - "creator": [ - { - "fulltext": "Organization:Advanced Building Skins GmbH", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Advanced_Building_Skins_GmbH", - "namespace": 7500, - "exists": "1", - "displaytitle": "Advanced Building Skins GmbH" - } - ], - "in_series": [ - { - "fulltext": "Event Series:225acec2-253d-4c8d-b565-07d84b39d6fa", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:225acec2-253d-4c8d-b565-07d84b39d6fa", - "namespace": 7100, - "exists": "1", - "displaytitle": "Advanced Building Skins - International Advanced Building Skins Conference" - } - ], - "start_date": [ - { - "timestamp": "1666224000", - "raw": "1/2022/10/20" - } - ], - "end_date": [ - { - "timestamp": "1666310400", - "raw": "1/2022/10/21" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Bern" - ], - "region": [], - "country": [ - { - "fulltext": "Country:CH", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", - "namespace": 7400, - "exists": "1", - "displaytitle": "Switzerland (CH)" - } - ], - "website": [ - "https://abs.green/de/home" - ], - "doi": [] - }, - "fulltext": "Event:6cc929ad-c2e6-44a0-8712-d83a09ee1d00", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:6cc929ad-c2e6-44a0-8712-d83a09ee1d00", - "namespace": 7200, - "exists": "1", - "displaytitle": "Advanced Building Skins 2022" - }, - "Event:3573b15d-775d-43c2-89ad-9d8dae3c515a": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "Advanced Building Skins 2023" - ], - "title": [ - "18th Advanced Building Skins Conference & Expo" - ], - "creator": [ - { - "fulltext": "Organization:Advanced Building Skins GmbH", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Advanced_Building_Skins_GmbH", - "namespace": 7500, - "exists": "1", - "displaytitle": "Advanced Building Skins GmbH" - } - ], - "in_series": [ - { - "fulltext": "Event Series:225acec2-253d-4c8d-b565-07d84b39d6fa", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:225acec2-253d-4c8d-b565-07d84b39d6fa", - "namespace": 7100, - "exists": "1", - "displaytitle": "Advanced Building Skins - International Advanced Building Skins Conference" - } - ], - "start_date": [ - { - "timestamp": "1698624000", - "raw": "1/2023/10/30" - } - ], - "end_date": [ - { - "timestamp": "1698710400", - "raw": "1/2023/10/31" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Kursaal Congress Centre" - ], - "city": [ - "Bern" - ], - "region": [], - "country": [ - { - "fulltext": "Country:CH", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", - "namespace": 7400, - "exists": "1", - "displaytitle": "Switzerland (CH)" - } - ], - "website": [ - "https://abs.green/de/home" - ], - "doi": [] - }, - "fulltext": "Event:3573b15d-775d-43c2-89ad-9d8dae3c515a", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:3573b15d-775d-43c2-89ad-9d8dae3c515a", - "namespace": 7200, - "exists": "1", - "displaytitle": "Advanced Building Skins 2023" - }, - "Event:0d4f2426-4243-4a7b-bd96-4c7b6187cf84": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "Architecture Winter Talks 19/20" - ], - "creator": [ - { - "fulltext": "Organization:Fachbereich Architektur, Bochum University of Applied Sciences", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fachbereich_Architektur,_Bochum_University_of_Applied_Sciences", - "namespace": 7500, - "exists": "1", - "displaytitle": "Fachbereich Architektur, Bochum University of Applied Sciences" - } - ], - "in_series": [ - { - "fulltext": "Event Series:249277ea-0fb2-4de6-b449-b2b1d5c40340", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:249277ea-0fb2-4de6-b449-b2b1d5c40340", - "namespace": 7100, - "exists": "1", - "displaytitle": "Architecture Winter Talks" - } - ], - "start_date": [ - { - "timestamp": "1573689600", - "raw": "1/2019/11/14" - } - ], - "end_date": [ - { - "timestamp": "1578528000", - "raw": "1/2020/1/9" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Blue Box" - ], - "city": [ - "Bochum" - ], - "region": [ - "North Rhine-Westphalia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.hochschule-bochum.de/fba/veranstaltungen/" - ], - "doi": [ - "10.25798/2vy1-yz49" - ] - }, - "fulltext": "Event:0d4f2426-4243-4a7b-bd96-4c7b6187cf84", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:0d4f2426-4243-4a7b-bd96-4c7b6187cf84", - "namespace": 7200, - "exists": "1", - "displaytitle": "Architecture Winter Talks 19/20" - }, - "Event:B870c505-d7d1-4228-a3e7-3d072c00de19": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "Architecture Winter Talks 2022: Mit Holz" - ], - "creator": [ - { - "fulltext": "Organization:Fachbereich Architektur, Bochum University of Applied Sciences", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fachbereich_Architektur,_Bochum_University_of_Applied_Sciences", - "namespace": 7500, - "exists": "1", - "displaytitle": "Fachbereich Architektur, Bochum University of Applied Sciences" - } - ], - "in_series": [ - { - "fulltext": "Event Series:249277ea-0fb2-4de6-b449-b2b1d5c40340", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:249277ea-0fb2-4de6-b449-b2b1d5c40340", - "namespace": 7100, - "exists": "1", - "displaytitle": "Architecture Winter Talks" - } - ], - "start_date": [ - { - "timestamp": "1668038400", - "raw": "1/2022/11/10" - } - ], - "end_date": [ - { - "timestamp": "1673481600", - "raw": "1/2023/1/12" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Blue Box" - ], - "city": [ - "Bochum" - ], - "region": [ - "North Rhine-Westphalia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.hochschule-bochum.de/aktuelles/n/architecture-winter-talks-2022-mit-holz/" - ], - "doi": [ - "10.25798/xdda-cq33" - ] - }, - "fulltext": "Event:B870c505-d7d1-4228-a3e7-3d072c00de19", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:B870c505-d7d1-4228-a3e7-3d072c00de19", - "namespace": 7200, - "exists": "1", - "displaytitle": "Architecture Winter Talks 2022: Mit Holz" - }, - "Event:164df8cf-d059-4bab-8536-f49d65537969": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "Are You a Model? On an Architectural Medium of Spatial Exploration" - ], - "creator": [ - { - "fulltext": "Organization:Institute for Architecture Theory and Science, Technical University of Darmstadt", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Institute_for_Architecture_Theory_and_Science,_Technical_University_of_Darmstadt", - "namespace": 7500, - "exists": "1", - "displaytitle": "Institute for Architecture Theory and Science, Technical University of Darmstadt" - }, - { - "fulltext": "Organization:Dortmund University of Applied Sciences and Arts", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Dortmund_University_of_Applied_Sciences_and_Arts", - "namespace": 7500, - "exists": "1", - "displaytitle": "Dortmund University of Applied Sciences and Arts" - }, - { - "fulltext": "Organization:German Architecture Museum", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:German_Architecture_Museum", - "namespace": 7500, - "exists": "1", - "displaytitle": "German Architecture Museum" - }, - { - "fulltext": "Organization:Center for Critical Studies in Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Center_for_Critical_Studies_in_Architecture", - "namespace": 7500, - "exists": "1", - "displaytitle": "Center for Critical Studies in Architecture" - }, - { - "fulltext": "Organization:Specialized information service BAUdigital", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Specialized_information_service_BAUdigital", - "namespace": 7500, - "exists": "1", - "displaytitle": "Specialized information service BAUdigital" - }, - { - "fulltext": "Organization:Architectures of Order", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Architectures_of_Order", - "namespace": 7500, - "exists": "1", - "displaytitle": "Architectures of Order" - } - ], - "in_series": [], - "start_date": [ - { - "timestamp": "1667347200", - "raw": "1/2022/11/2" - } - ], - "end_date": [ - { - "timestamp": "1667520000", - "raw": "1/2022/11/4" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Technische Universität Darmstadt" - ], - "city": [ - "Darmstadt" - ], - "region": [ - "Hesse" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.architektur.tu-darmstadt.de/are-you-a-model/info_ayam/index.en.jsp" - ], - "doi": [ - "10.25798/1pff-xw70" - ] - }, - "fulltext": "Event:164df8cf-d059-4bab-8536-f49d65537969", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:164df8cf-d059-4bab-8536-f49d65537969", - "namespace": 7200, - "exists": "1", - "displaytitle": "Are You a Model? On an Architectural Medium of Spatial Exploration" - }, - "Event:4097611c-4cc8-4787-b515-b201e08bfeda": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "BauSIM 2018" - ], - "creator": [ - { - "fulltext": "Organization:Department of Building Lifecycle Management, Karlsruhe Institute of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Department_of_Building_Lifecycle_Management,_Karlsruhe_Institute_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Department of Building Lifecycle Management, Karlsruhe Institute of Technology" - }, - { - "fulltext": "Organization:Fachgebiet Bauphysik & Technischer Ausbau, Karlsruhe Institute of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fachgebiet_Bauphysik_%26_Technischer_Ausbau,_Karlsruhe_Institute_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Fachgebiet Bauphysik & Technischer Ausbau, Karlsruhe Institute of Technology" - }, - { - "fulltext": "Organization:IBPSA Germany and Austria", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:IBPSA_Germany_and_Austria", - "namespace": 7500, - "exists": "1", - "displaytitle": "IBPSA Germany and Austria" - } - ], - "in_series": [ - { - "fulltext": "Event Series:C275761d-2736-4434-ac73-7af4154bb262", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:C275761d-2736-4434-ac73-7af4154bb262", - "namespace": 7100, - "exists": "1", - "displaytitle": "BauSIM" - } - ], - "start_date": [ - { - "timestamp": "1537920000", - "raw": "1/2018/9/26" - } - ], - "end_date": [ - { - "timestamp": "1538092800", - "raw": "1/2018/9/28" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Karlsruhe Institute of Technology" - ], - "city": [ - "Karlsruhe" - ], - "region": [ - "Baden-Württemberg" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [], - "doi": [ - "10.25798/75fm-c639" - ] - }, - "fulltext": "Event:4097611c-4cc8-4787-b515-b201e08bfeda", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:4097611c-4cc8-4787-b515-b201e08bfeda", - "namespace": 7200, - "exists": "1", - "displaytitle": "BauSIM 2018" - }, - "Event:4581bb9b-5620-4d62-a4d3-d132db5276a5": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "BauSIM 2020" - ], - "creator": [ - { - "fulltext": "Organization:IBPSA Germany and Austria", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:IBPSA_Germany_and_Austria", - "namespace": 7500, - "exists": "1", - "displaytitle": "IBPSA Germany and Austria" - }, - { - "fulltext": "Organization:Graz University of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Graz_University_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Graz University of Technology" - } - ], - "in_series": [ - { - "fulltext": "Event Series:C275761d-2736-4434-ac73-7af4154bb262", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:C275761d-2736-4434-ac73-7af4154bb262", - "namespace": 7100, - "exists": "1", - "displaytitle": "BauSIM" - } - ], - "start_date": [ - { - "timestamp": "1600819200", - "raw": "1/2020/9/23" - } - ], - "end_date": [ - { - "timestamp": "1600992000", - "raw": "1/2020/9/25" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.tugraz.at/events/bausim2020/home" - ], - "doi": [] - }, - "fulltext": "Event:4581bb9b-5620-4d62-a4d3-d132db5276a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:4581bb9b-5620-4d62-a4d3-d132db5276a5", - "namespace": 7200, - "exists": "1", - "displaytitle": "BauSIM 2020" - }, - "Event:304dafc1-9faf-4de5-9d3b-dffde5732dcd": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "BauSIM 2022" - ], - "creator": [ - { - "fulltext": "Organization:IBPSA Germany and Austria", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:IBPSA_Germany_and_Austria", - "namespace": 7500, - "exists": "1", - "displaytitle": "IBPSA Germany and Austria" - }, - { - "fulltext": "Organization:Bauhaus University, Weimar", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bauhaus_University,_Weimar", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bauhaus University, Weimar" - } - ], - "in_series": [ - { - "fulltext": "Event Series:C275761d-2736-4434-ac73-7af4154bb262", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:C275761d-2736-4434-ac73-7af4154bb262", - "namespace": 7100, - "exists": "1", - "displaytitle": "BauSIM" - } - ], - "start_date": [ - { - "timestamp": "1663632000", - "raw": "1/2022/9/20" - } - ], - "end_date": [ - { - "timestamp": "1663804800", - "raw": "1/2022/9/22" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Bauhaus-Universität Weimar" - ], - "city": [ - "Weimar" - ], - "region": [ - "Thuringia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.uni-weimar.de/de/bauingenieurwesen/professuren/bauphysik/bausim2022/resuemee/" - ], - "doi": [] - }, - "fulltext": "Event:304dafc1-9faf-4de5-9d3b-dffde5732dcd", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:304dafc1-9faf-4de5-9d3b-dffde5732dcd", - "namespace": 7200, - "exists": "1", - "displaytitle": "BauSIM 2022" - }, - "Event:C839168d-46eb-4099-8fe4-e44b6be7d935": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "Braunschweiger Brandschutz-Tage 2022" - ], - "creator": [ - { - "fulltext": "Organization:Institut für Baustoffe, Massivbau und Brandschutz, Technische Universität Braunschweig", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Institut_f%C3%BCr_Baustoffe,_Massivbau_und_Brandschutz,_Technische_Universit%C3%A4t_Braunschweig", - "namespace": 7500, - "exists": "1", - "displaytitle": "Institut für Baustoffe, Massivbau und Brandschutz, Technische Universität Braunschweig" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A3b3f4fc-91eb-42b2-b407-bb3605d4a3da", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A3b3f4fc-91eb-42b2-b407-bb3605d4a3da", - "namespace": 7100, - "exists": "1", - "displaytitle": "Braunschweiger Brandschutz-Tage" - } - ], - "start_date": [ - { - "timestamp": "1663113600", - "raw": "1/2022/9/14" - } - ], - "end_date": [ - { - "timestamp": "1663200000", - "raw": "1/2022/9/15" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Milleniumhalle" - ], - "city": [ - "Braunschweig" - ], - "region": [ - "Lower Saxony" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.brandschutztage.info/rueckblick-braunschweiger-brandschutz-tage-2022/" - ], - "doi": [ - "10.25798/0nnf-d474" - ] - }, - "fulltext": "Event:C839168d-46eb-4099-8fe4-e44b6be7d935", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:C839168d-46eb-4099-8fe4-e44b6be7d935", - "namespace": 7200, - "exists": "1", - "displaytitle": "Braunschweiger Brandschutz-Tage 2022" - }, - "Event:3c1be573-6a50-4f9c-ba0a-e77e63b8cc64": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "Braunschweiger Brandschutz-Tage 2023" - ], - "creator": [ - { - "fulltext": "Organization:Institut für Baustoffe, Massivbau und Brandschutz, Technische Universität Braunschweig", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Institut_f%C3%BCr_Baustoffe,_Massivbau_und_Brandschutz,_Technische_Universit%C3%A4t_Braunschweig", - "namespace": 7500, - "exists": "1", - "displaytitle": "Institut für Baustoffe, Massivbau und Brandschutz, Technische Universität Braunschweig" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A3b3f4fc-91eb-42b2-b407-bb3605d4a3da", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A3b3f4fc-91eb-42b2-b407-bb3605d4a3da", - "namespace": 7100, - "exists": "1", - "displaytitle": "Braunschweiger Brandschutz-Tage" - } - ], - "start_date": [ - { - "timestamp": "1693958400", - "raw": "1/2023/9/6" - } - ], - "end_date": [ - { - "timestamp": "1694044800", - "raw": "1/2023/9/7" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Milleniumhalle" - ], - "city": [ - "Braunschweig" - ], - "region": [ - "Lower Saxony" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.brandschutztage.info/braunschweiger-brandschutz-tage-2023/" - ], - "doi": [ - "10.25798/024k-y528" - ] - }, - "fulltext": "Event:3c1be573-6a50-4f9c-ba0a-e77e63b8cc64", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:3c1be573-6a50-4f9c-ba0a-e77e63b8cc64", - "namespace": 7200, - "exists": "1", - "displaytitle": "Braunschweiger Brandschutz-Tage 2023" - }, - "Event:CAAD Futures 2017": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAAD Futures 2017" - ], - "title": [ - "CAAD Futures 2017: Future Trajectories" - ], - "creator": [ - { - "fulltext": "Organization:CAAD Futures Foundation", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CAAD_Futures_Foundation", - "namespace": 7500, - "exists": "1", - "displaytitle": "CAAD Futures Foundation" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAAD Futures", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAAD_Futures", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAAD Futures - CAAD Futures Conference" - } - ], - "start_date": [ - { - "timestamp": "1499817600", - "raw": "1/2017/7/12" - } - ], - "end_date": [ - { - "timestamp": "1499990400", - "raw": "1/2017/7/14" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Istanbul Technical University" - ], - "city": [ - "Istanbul" - ], - "region": [ - "Istanbul" - ], - "country": [ - { - "fulltext": "Country:TR", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:TR", - "namespace": 7400, - "exists": "1", - "displaytitle": "Turkey (TR)" - } - ], - "website": [], - "doi": [ - "10.25798/kk5s-1941" - ] - }, - "fulltext": "Event:CAAD Futures 2017", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAAD_Futures_2017", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAAD Futures 2017" - }, - "Event:D9d172a9-172e-4970-bef4-9c31e098b45d": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAAD Futures 2019" - ], - "title": [ - "CAAD Futures 2019: Hello Culture" - ], - "creator": [ - { - "fulltext": "Organization:CAAD Futures Foundation", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CAAD_Futures_Foundation", - "namespace": 7500, - "exists": "1", - "displaytitle": "CAAD Futures Foundation" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAAD Futures", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAAD_Futures", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAAD Futures - CAAD Futures Conference" - } - ], - "start_date": [ - { - "timestamp": "1561507200", - "raw": "1/2019/6/26" - } - ], - "end_date": [ - { - "timestamp": "1561680000", - "raw": "1/2019/6/28" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Korea Advanced Institute of Science and Technology" - ], - "city": [ - "Daejeon" - ], - "region": [ - "Daejeon" - ], - "country": [ - { - "fulltext": "Country:KR", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:KR", - "namespace": 7400, - "exists": "1", - "displaytitle": "Korea (Republic of) (KR)" - } - ], - "website": [], - "doi": [ - "10.25798/3gpx-xb97" - ] - }, - "fulltext": "Event:D9d172a9-172e-4970-bef4-9c31e098b45d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:D9d172a9-172e-4970-bef4-9c31e098b45d", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAAD Futures 2019" - }, - "Event:CAAD Futures 2021": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAAD Futures 2021" - ], - "title": [ - "CAAD Futures 2021: Design Imperatives: The Future is Now" - ], - "creator": [ - { - "fulltext": "Organization:University of Southern California", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_Southern_California", - "namespace": 7500, - "exists": "1", - "displaytitle": "University of Southern California" - }, - { - "fulltext": "Organization:CAAD Futures Foundation", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CAAD_Futures_Foundation", - "namespace": 7500, - "exists": "1", - "displaytitle": "CAAD Futures Foundation" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAAD Futures", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAAD_Futures", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAAD Futures - CAAD Futures Conference" - } - ], - "start_date": [ - { - "timestamp": "1626393600", - "raw": "1/2021/7/16" - } - ], - "end_date": [ - { - "timestamp": "1626566400", - "raw": "1/2021/7/18" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "University of Southern California" - ], - "city": [ - "Los Angeles" - ], - "region": [ - "California" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [], - "doi": [ - "10.25798/m09y-ps59" - ] - }, - "fulltext": "Event:CAAD Futures 2021", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAAD_Futures_2021", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAAD Futures 2021" - }, - "Event:B33db6cb-0c63-4dc5-be72-f9580099dc6b": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAAD Futures 2023" - ], - "title": [ - "CAAD Futures 2023: INTERCONNECTIONS: Co-computing beyond boundaries" - ], - "creator": [ - { - "fulltext": "Organization:CAAD Futures Foundation", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CAAD_Futures_Foundation", - "namespace": 7500, - "exists": "1", - "displaytitle": "CAAD Futures Foundation" - }, - { - "fulltext": "Organization:Faculty of Architecture and the Built Environment, Delft University of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture_and_the_Built_Environment,_Delft_University_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Faculty of Architecture and the Built Environment, Delft University of Technology" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAAD Futures", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAAD_Futures", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAAD Futures - CAAD Futures Conference" - } - ], - "start_date": [ - { - "timestamp": "1688515200", - "raw": "1/2023/7/5" - } - ], - "end_date": [ - { - "timestamp": "1688688000", - "raw": "1/2023/7/7" - } - ], - "event_mode": [ - "hybrid" - ], - "venue": [ - "Delft University of Technology" - ], - "city": [ - "Delft" - ], - "region": [ - "South Holland" - ], - "country": [ - { - "fulltext": "Country:NL", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:NL", - "namespace": 7400, - "exists": "1", - "displaytitle": "Netherlands (NL)" - } - ], - "website": [ - "https://www.caadfutures2023.nl/" - ], - "doi": [ - "10.25798/wn73-nq23" - ] - }, - "fulltext": "Event:B33db6cb-0c63-4dc5-be72-f9580099dc6b", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:B33db6cb-0c63-4dc5-be72-f9580099dc6b", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAAD Futures 2023" - }, - "Event:CAADRIA 2018": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAADRIA 2018" - ], - "title": [ - "23rd Conference on Computer-Aided Architectural Design Research in Asia" - ], - "creator": [ - { - "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" - }, - { - "fulltext": "Organization:School of Architecture, Tsinghua University", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:School_of_Architecture,_Tsinghua_University", - "namespace": 7500, - "exists": "1", - "displaytitle": "School of Architecture, Tsinghua University" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAADRIA", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" - } - ], - "start_date": [ - { - "timestamp": "1526515200", - "raw": "1/2018/5/17" - } - ], - "end_date": [ - { - "timestamp": "1526688000", - "raw": "1/2018/5/19" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Tsinghua University" - ], - "city": [ - "Beijing" - ], - "region": [ - "Beijing Shi" - ], - "country": [ - { - "fulltext": "Country:CN", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CN", - "namespace": 7400, - "exists": "1", - "displaytitle": "China (CN)" - } - ], - "website": [ - "https://www.caadria.org/conf/caadria2018/" - ], - "doi": [ - "10.25798/jnsn-4z15" - ] - }, - "fulltext": "Event:CAADRIA 2018", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAADRIA_2018", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAADRIA 2018" - }, - "Event:CAADRIA 2019": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAADRIA 2019" - ], - "title": [ - "24th Annual Conference of the Association for Computer-Aided Architectural Design Research in Asia" - ], - "creator": [ - { - "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" - }, - { - "fulltext": "Organization:Faculty of Architecture & Design, Victoria University of Wellington", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture_%26_Design,_Victoria_University_of_Wellington", - "namespace": 7500, - "exists": "1", - "displaytitle": "Faculty of Architecture & Design, Victoria University of Wellington" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAADRIA", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" - } - ], - "start_date": [ - { - "timestamp": "1555286400", - "raw": "1/2019/4/15" - } - ], - "end_date": [ - { - "timestamp": "1555545600", - "raw": "1/2019/4/18" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Faculty of Architecture & Design" - ], - "city": [ - "Wellington" - ], - "region": [ - "Greater Wellington" - ], - "country": [ - { - "fulltext": "Country:NZ", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:NZ", - "namespace": 7400, - "exists": "1", - "displaytitle": "New Zealand (NZ)" - } - ], - "website": [ - "https://caadria2019.nz/" - ], - "doi": [ - "10.25798/4mc1-nq06" - ] - }, - "fulltext": "Event:CAADRIA 2019", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAADRIA_2019", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAADRIA 2019" - }, - "Event:CAADRIA 2020": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAADRIA 2020" - ], - "title": [ - "25th International Conference of the Association for Computer-Aided Architectural Design Research in Asia" - ], - "creator": [ - { - "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" - }, - { - "fulltext": "Organization:Faculty of Architecture, Chulalongkorn University", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture,_Chulalongkorn_University", - "namespace": 7500, - "exists": "1", - "displaytitle": "Faculty of Architecture, Chulalongkorn University" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAADRIA", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" - } - ], - "start_date": [ - { - "timestamp": "1596585600", - "raw": "1/2020/8/5" - } - ], - "end_date": [ - { - "timestamp": "1596672000", - "raw": "1/2020/8/6" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://caadria2020.org/" - ], - "doi": [ - "10.25798/d1g7-az96" - ] - }, - "fulltext": "Event:CAADRIA 2020", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAADRIA_2020", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAADRIA 2020" - }, - "Event:CAADRIA 2021": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAADRIA 2021" - ], - "title": [ - "26th International Conference of the Association for Computer-Aided Architectural Design Research in Asia" - ], - "creator": [ - { - "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" - }, - { - "fulltext": "Organization:School of Architecture, Chinese University of Hong Kong", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:School_of_Architecture,_Chinese_University_of_Hong_Kong", - "namespace": 7500, - "exists": "1", - "displaytitle": "School of Architecture, Chinese University of Hong Kong" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAADRIA", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" - } - ], - "start_date": [ - { - "timestamp": "1616976000", - "raw": "1/2021/3/29" - } - ], - "end_date": [ - { - "timestamp": "1617235200", - "raw": "1/2021/4/1" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://caadria2021.org/" - ], - "doi": [ - "10.25798/bkx0-ac04" - ] - }, - "fulltext": "Event:CAADRIA 2021", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:CAADRIA_2021", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAADRIA 2021" - }, - "Event:716db11c-a8b1-4fe0-81a1-a1ff495f8d4a": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAADRIA 2022" - ], - "title": [ - "27th International Conference of the Association for Computer-Aided Architectural Design Research in Asia: Post Carbon" - ], - "creator": [ - { - "fulltext": "Organization:University of New South Wales", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_New_South_Wales", - "namespace": 7500, - "exists": "1", - "displaytitle": "University of New South Wales" - }, - { - "fulltext": "Organization:University of Sydney", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_Sydney", - "namespace": 7500, - "exists": "1", - "displaytitle": "University of Sydney" - }, - { - "fulltext": "Organization:University of Technology Sydney", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_Technology_Sydney", - "namespace": 7500, - "exists": "1", - "displaytitle": "University of Technology Sydney" - }, - { - "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAADRIA", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" - } - ], - "start_date": [ - { - "timestamp": "1649462400", - "raw": "1/2022/4/9" - } - ], - "end_date": [ - { - "timestamp": "1649980800", - "raw": "1/2022/4/15" - } - ], - "event_mode": [ - "hybrid" - ], - "venue": [ - "Museum of Applied Arts and Science" - ], - "city": [ - "Ultimo" - ], - "region": [ - "Sydney" - ], - "country": [ - { - "fulltext": "Country:AU", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:AU", - "namespace": 7400, - "exists": "1", - "displaytitle": "Australia (AU)" - } - ], - "website": [ - "https://caadria2022.org/" - ], - "doi": [ - "10.25798/r20y-ry33" - ] - }, - "fulltext": "Event:716db11c-a8b1-4fe0-81a1-a1ff495f8d4a", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:716db11c-a8b1-4fe0-81a1-a1ff495f8d4a", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAADRIA 2022" - }, - "Event:Ef676145-9fc9-4bc8-aefc-0c228cc6e277": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "CAADRIA 2023" - ], - "title": [ - "28th International Conference of the Association for Computer-Aided Architectural Design Research in Asia: Human-Centric" - ], - "creator": [ - { - "fulltext": "Organization:Association for Computer-Aided Architectural Design Research in Asia", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Computer-Aided_Architectural_Design_Research_in_Asia", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Computer-Aided Architectural Design Research in Asia" - }, - { - "fulltext": "Organization:Faculty of Architecture, CEPT University", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture,_CEPT_University", - "namespace": 7500, - "exists": "1", - "displaytitle": "Faculty of Architecture, CEPT University" - } - ], - "in_series": [ - { - "fulltext": "Event Series:CAADRIA", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:CAADRIA", - "namespace": 7100, - "exists": "1", - "displaytitle": "CAADRIA - International Conference of the Association for Computer-Aided Architectural Design Research in Asia" - } - ], - "start_date": [ - { - "timestamp": "1679097600", - "raw": "1/2023/3/18" - } - ], - "end_date": [ - { - "timestamp": "1679616000", - "raw": "1/2023/3/24" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "CEPT University" - ], - "city": [ - "Ahmedabad" - ], - "region": [ - "Gujarat" - ], - "country": [ - { - "fulltext": "Country:IN", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:IN", - "namespace": 7400, - "exists": "1", - "displaytitle": "India (IN)" - } - ], - "website": [ - "https://caadria2023.org/" - ], - "doi": [ - "10.25798/y4p4-yy07" - ] - }, - "fulltext": "Event:Ef676145-9fc9-4bc8-aefc-0c228cc6e277", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:Ef676145-9fc9-4bc8-aefc-0c228cc6e277", - "namespace": 7200, - "exists": "1", - "displaytitle": "CAADRIA 2023" - }, - "Event:00b39483-4365-426a-b5aa-b1912e22e23f": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Planning" - } - ], - "acronym": [ - "CHNT 27" - ], - "title": [ - "Conference on Cultural Heritage and New Technologies" - ], - "creator": [ - { - "fulltext": "Organization:CHNT-ICOMOS Austria", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CHNT-ICOMOS_Austria", - "namespace": 7500, - "exists": "1", - "displaytitle": "CHNT-ICOMOS Austria" - } - ], - "in_series": [ - { - "fulltext": "Event Series:50200210-5ac3-4f77-8145-55c0e4529eea", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50200210-5ac3-4f77-8145-55c0e4529eea", - "namespace": 7100, - "exists": "1", - "displaytitle": "CHNT - Conference on Cultural Heritage and New Technologies" - } - ], - "start_date": [ - { - "timestamp": "1668038400", - "raw": "1/2022/11/10" - } - ], - "end_date": [ - { - "timestamp": "1668211200", - "raw": "1/2022/11/12" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Vienna City Hall" - ], - "city": [ - "Vienna" - ], - "region": [ - "Vienna" - ], - "country": [ - { - "fulltext": "Country:AT", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:AT", - "namespace": 7400, - "exists": "1", - "displaytitle": "Austria (AT)" - } - ], - "website": [ - "https://chnt.at/" - ], - "doi": [ - "10.25798/v9j4-zn02" - ] - }, - "fulltext": "Event:00b39483-4365-426a-b5aa-b1912e22e23f", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:00b39483-4365-426a-b5aa-b1912e22e23f", - "namespace": 7200, - "exists": "1", - "displaytitle": "CHNT 27" - }, - "Event:6f447e2a-7e3b-4000-b4cb-300b43eb1fbb": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Planning" - } - ], - "acronym": [ - "CHNT 28" - ], - "title": [ - "Conference on Cultural Heritage and New Technologies 2023" - ], - "creator": [ - { - "fulltext": "Organization:CHNT-ICOMOS Austria", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:CHNT-ICOMOS_Austria", - "namespace": 7500, - "exists": "1", - "displaytitle": "CHNT-ICOMOS Austria" - } - ], - "in_series": [ - { - "fulltext": "Event Series:50200210-5ac3-4f77-8145-55c0e4529eea", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:50200210-5ac3-4f77-8145-55c0e4529eea", - "namespace": 7100, - "exists": "1", - "displaytitle": "CHNT - Conference on Cultural Heritage and New Technologies" - } - ], - "start_date": [ - { - "timestamp": "1700006400", - "raw": "1/2023/11/15" - } - ], - "end_date": [ - { - "timestamp": "1700179200", - "raw": "1/2023/11/17" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Vienna City Hall" - ], - "city": [ - "Vienna" - ], - "region": [ - "Vienna" - ], - "country": [ - { - "fulltext": "Country:AT", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:AT", - "namespace": 7400, - "exists": "1", - "displaytitle": "Austria (AT)" - } - ], - "website": [ - "https://chnt.at/" - ], - "doi": [ - "10.25798/c8tz-1p29" - ] - }, - "fulltext": "Event:6f447e2a-7e3b-4000-b4cb-300b43eb1fbb", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:6f447e2a-7e3b-4000-b4cb-300b43eb1fbb", - "namespace": 7200, - "exists": "1", - "displaytitle": "CHNT 28" - }, - "Event:70318a3f-7f8a-417a-a402-d896bc7e3449": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "CHS 2021" - ], - "title": [ - "8th Construction History Society Conference" - ], - "creator": [ - { - "fulltext": "Organization:Department of Architecture, Cambridge University", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Department_of_Architecture,_Cambridge_University", - "namespace": 7500, - "exists": "1", - "displaytitle": "Department of Architecture, Cambridge University" - }, - { - "fulltext": "Organization:Construction History Society", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Construction_History_Society", - "namespace": 7500, - "exists": "1", - "displaytitle": "Construction History Society" - } - ], - "in_series": [ - { - "fulltext": "Event Series:33d13622-2819-4d42-9a6a-867832ec0d9a", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:33d13622-2819-4d42-9a6a-867832ec0d9a", - "namespace": 7100, - "exists": "1", - "displaytitle": "CHS - Construction History Society Conferences" - } - ], - "start_date": [ - { - "timestamp": "1630022400", - "raw": "1/2021/8/27" - } - ], - "end_date": [ - { - "timestamp": "1630108800", - "raw": "1/2021/8/28" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [], - "doi": [ - "10.25798/k450-eq64" - ] - }, - "fulltext": "Event:70318a3f-7f8a-417a-a402-d896bc7e3449", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:70318a3f-7f8a-417a-a402-d896bc7e3449", - "namespace": 7200, - "exists": "1", - "displaytitle": "CHS 2021" - }, - "Event:4cb84374-cd56-496f-8b4d-72da0bed3370": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "CHS 2022" - ], - "title": [ - "9th Construction History Society Conferences" - ], - "creator": [ - { - "fulltext": "Organization:Department of Architecture, Cambridge University", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Department_of_Architecture,_Cambridge_University", - "namespace": 7500, - "exists": "1", - "displaytitle": "Department of Architecture, Cambridge University" - }, - { - "fulltext": "Organization:Construction History Society", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Construction_History_Society", - "namespace": 7500, - "exists": "1", - "displaytitle": "Construction History Society" - } - ], - "in_series": [ - { - "fulltext": "Event Series:33d13622-2819-4d42-9a6a-867832ec0d9a", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:33d13622-2819-4d42-9a6a-867832ec0d9a", - "namespace": 7100, - "exists": "1", - "displaytitle": "CHS - Construction History Society Conferences" - } - ], - "start_date": [ - { - "timestamp": "1648771200", - "raw": "1/2022/4/1" - } - ], - "end_date": [ - { - "timestamp": "1648857600", - "raw": "1/2022/4/2" - } - ], - "event_mode": [ - "hybrid" - ], - "venue": [ - "Queens College" - ], - "city": [ - "Cambridge" - ], - "region": [ - "Cambridgeshire" - ], - "country": [ - { - "fulltext": "Country:GB", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", - "namespace": 7400, - "exists": "1", - "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" - } - ], - "website": [], - "doi": [ - "10.25798/qhwe-s169" - ] - }, - "fulltext": "Event:4cb84374-cd56-496f-8b4d-72da0bed3370", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:4cb84374-cd56-496f-8b4d-72da0bed3370", - "namespace": 7200, - "exists": "1", - "displaytitle": "CHS 2022" - }, - "Event:F31fce8b-b353-4532-96dc-8e111bb8b680": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "CHS 2023" - ], - "title": [ - "Tenth Annual Conference of the Construction History Society" - ], - "creator": [ - { - "fulltext": "Organization:Department of Architecture, Cambridge University", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Department_of_Architecture,_Cambridge_University", - "namespace": 7500, - "exists": "1", - "displaytitle": "Department of Architecture, Cambridge University" - }, - { - "fulltext": "Organization:Construction History Society", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Construction_History_Society", - "namespace": 7500, - "exists": "1", - "displaytitle": "Construction History Society" - } - ], - "in_series": [ - { - "fulltext": "Event Series:33d13622-2819-4d42-9a6a-867832ec0d9a", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:33d13622-2819-4d42-9a6a-867832ec0d9a", - "namespace": 7100, - "exists": "1", - "displaytitle": "CHS - Construction History Society Conferences" - } - ], - "start_date": [ - { - "timestamp": "1681257600", - "raw": "1/2023/4/12" - } - ], - "end_date": [ - { - "timestamp": "1681344000", - "raw": "1/2023/4/13" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Queens College" - ], - "city": [ - "Cambridge" - ], - "region": [ - "Cambridgeshire" - ], - "country": [ - { - "fulltext": "Country:GB", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", - "namespace": 7400, - "exists": "1", - "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" - } - ], - "website": [ - "https://www.constructionhistory.co.uk/" - ], - "doi": [ - "10.25798/rwp7-3959" - ] - }, - "fulltext": "Event:F31fce8b-b353-4532-96dc-8e111bb8b680", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:F31fce8b-b353-4532-96dc-8e111bb8b680", - "namespace": 7200, - "exists": "1", - "displaytitle": "CHS 2023" - }, - "Event:Bb4e7d03-0d7f-4a8b-a3e5-024b7c1aa247": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Urban Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Planning" - }, - { - "fulltext": "Academic Field:Urban Studies", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Studies", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Studies" - }, - { - "fulltext": "Academic Field:Spatial Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Spatial_Planning", - "namespace": 7300, - "exists": "1", - "displaytitle": "Spatial Planning" - }, - { - "fulltext": "Academic Field:Planning Research", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Planning_Research", - "namespace": 7300, - "exists": "1", - "displaytitle": "Planning Research" - } - ], - "acronym": [ - "DOKORP 2023" - ], - "title": [ - "\"If possible, please turn around!\" Research and Planning for the Sustainability Turn" - ], - "creator": [ - { - "fulltext": "Organization:Technical University of Dortmund", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technical_University_of_Dortmund", - "namespace": 7500, - "exists": "1", - "displaytitle": "Technical University of Dortmund" - }, - { - "fulltext": "Organization:ARL – Academy for Territorial Development in the Leibniz Association", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ARL_%E2%80%93_Academy_for_Territorial_Development_in_the_Leibniz_Association", - "namespace": 7500, - "exists": "1", - "displaytitle": "ARL – Academy for Territorial Development in the Leibniz Association" - }, - { - "fulltext": "Organization:ILS–Institut für Landes- und Stadtentwicklungsforschung", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ILS%E2%80%93Institut_f%C3%BCr_Landes-_und_Stadtentwicklungsforschung", - "namespace": 7500, - "exists": "1", - "displaytitle": "ILS–Institut für Landes- und Stadtentwicklungsforschung" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5044e3b2-4741-43de-b4a0-c013bc91296d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5044e3b2-4741-43de-b4a0-c013bc91296d", - "namespace": 7100, - "exists": "1", - "displaytitle": "DOKORP - Dortmund Conference on Spatial and Planning Research" - } - ], - "start_date": [ - { - "timestamp": "1676246400", - "raw": "1/2023/2/13" - } - ], - "end_date": [ - { - "timestamp": "1676332800", - "raw": "1/2023/2/14" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Dortmund" - ], - "region": [], - "country": [], - "website": [ - "https://raumplanung.tu-dortmund.de/en/events-transfer/dortmund-conference/dokorp-2023/" - ], - "doi": [] - }, - "fulltext": "Event:Bb4e7d03-0d7f-4a8b-a3e5-024b7c1aa247", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:Bb4e7d03-0d7f-4a8b-a3e5-024b7c1aa247", - "namespace": 7200, - "exists": "1", - "displaytitle": "DOKORP 2023" - }, - "Event:991b978d-1294-406b-ac2b-56933d9b19bf": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Planning" - } - ], - "acronym": [], - "title": [ - "Design Modelling Symposium 2019: Impact: Design With All Senses" - ], - "creator": [ - { - "fulltext": "Organization:Berlin University of the Arts", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Berlin_University_of_the_Arts", - "namespace": 7500, - "exists": "1", - "displaytitle": "Berlin University of the Arts" - } - ], - "in_series": [ - { - "fulltext": "Event Series:19925f30-9ed8-4e04-856a-919a7cfbe8bf", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:19925f30-9ed8-4e04-856a-919a7cfbe8bf", - "namespace": 7100, - "exists": "1", - "displaytitle": "Design Modelling Symposium" - } - ], - "start_date": [ - { - "timestamp": "1569024000", - "raw": "1/2019/9/21" - } - ], - "end_date": [ - { - "timestamp": "1569369600", - "raw": "1/2019/9/25" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "University of the Arts Berlin" - ], - "city": [ - "Berlin" - ], - "region": [ - "Berlin" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [], - "doi": [ - "10.25798/mtkn-he65" - ] - }, - "fulltext": "Event:991b978d-1294-406b-ac2b-56933d9b19bf", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:991b978d-1294-406b-ac2b-56933d9b19bf", - "namespace": 7200, - "exists": "1", - "displaytitle": "Design Modelling Symposium 2019: Impact: Design With All Senses" - }, - "Event:E06f1888-5ee2-418d-ade5-d981e5335958": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Planning", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Planning" - } - ], - "acronym": [], - "title": [ - "Design Modelling Symposium 2022: Towards Radical Regeneration" - ], - "creator": [ - { - "fulltext": "Organization:Berlin University of the Arts", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Berlin_University_of_the_Arts", - "namespace": 7500, - "exists": "1", - "displaytitle": "Berlin University of the Arts" - } - ], - "in_series": [ - { - "fulltext": "Event Series:19925f30-9ed8-4e04-856a-919a7cfbe8bf", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:19925f30-9ed8-4e04-856a-919a7cfbe8bf", - "namespace": 7100, - "exists": "1", - "displaytitle": "Design Modelling Symposium" - } - ], - "start_date": [ - { - "timestamp": "1664150400", - "raw": "1/2022/9/26" - } - ], - "end_date": [ - { - "timestamp": "1664323200", - "raw": "1/2022/9/28" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "University of the Arts Berlin" - ], - "city": [ - "Berlin" - ], - "region": [ - "Berlin" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://design-modelling-symposium.de/" - ], - "doi": [ - "10.25798/19wb-cx82" - ] - }, - "fulltext": "Event:E06f1888-5ee2-418d-ade5-d981e5335958", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:E06f1888-5ee2-418d-ade5-d981e5335958", - "namespace": 7200, - "exists": "1", - "displaytitle": "Design Modelling Symposium 2022: Towards Radical Regeneration" - }, - "Event:E8cace1e-30f0-4050-ab90-cb2fb91ba959": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "Digital Concrete 2018" - ], - "title": [ - "1st RILEM International Conference on Concrete and Digital Fabrication" - ], - "creator": [ - { - "fulltext": "Organization:International Union of Laboratories and Experts in Construction Materials, Systems and Structures", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Union_of_Laboratories_and_Experts_in_Construction_Materials,_Systems_and_Structures", - "namespace": 7500, - "exists": "1", - "displaytitle": "International Union of Laboratories and Experts in Construction Materials, Systems and Structures" - } - ], - "in_series": [ - { - "fulltext": "Event Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", - "namespace": 7100, - "exists": "1", - "displaytitle": "Digital Concrete - RILEM International Conference on Concrete and Digital Fabrication" - } - ], - "start_date": [ - { - "timestamp": "1536537600", - "raw": "1/2018/9/10" - } - ], - "end_date": [ - { - "timestamp": "1536710400", - "raw": "1/2018/9/12" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Campus Hönggerberg" - ], - "city": [ - "Zürich" - ], - "region": [ - "Zürich" - ], - "country": [ - { - "fulltext": "Country:CH", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", - "namespace": 7400, - "exists": "1", - "displaytitle": "Switzerland (CH)" - } - ], - "website": [], - "doi": [ - "10.25798/e9zv-2038" - ] - }, - "fulltext": "Event:E8cace1e-30f0-4050-ab90-cb2fb91ba959", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:E8cace1e-30f0-4050-ab90-cb2fb91ba959", - "namespace": 7200, - "exists": "1", - "displaytitle": "Digital Concrete 2018" - }, - "Event:29a2953c-a933-4639-98f7-ac7071adcb70": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "Digital Concrete 2020" - ], - "title": [ - "2nd RILEM International Conference on Concrete and Digital Fabrication" - ], - "creator": [ - { - "fulltext": "Organization:Eindhoven University of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Eindhoven_University_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Eindhoven University of Technology" - }, - { - "fulltext": "Organization:International Union of Laboratories and Experts in Construction Materials, Systems and Structures", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Union_of_Laboratories_and_Experts_in_Construction_Materials,_Systems_and_Structures", - "namespace": 7500, - "exists": "1", - "displaytitle": "International Union of Laboratories and Experts in Construction Materials, Systems and Structures" - } - ], - "in_series": [ - { - "fulltext": "Event Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", - "namespace": 7100, - "exists": "1", - "displaytitle": "Digital Concrete - RILEM International Conference on Concrete and Digital Fabrication" - } - ], - "start_date": [ - { - "timestamp": "1593993600", - "raw": "1/2020/7/6" - } - ], - "end_date": [ - { - "timestamp": "1594252800", - "raw": "1/2020/7/9" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.tue.nl/en/our-university/calendar-and-events/06-07-2020-digital-concrete-2020/" - ], - "doi": [ - "10.25798/c30y-y330" - ] - }, - "fulltext": "Event:29a2953c-a933-4639-98f7-ac7071adcb70", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:29a2953c-a933-4639-98f7-ac7071adcb70", - "namespace": 7200, - "exists": "1", - "displaytitle": "Digital Concrete 2020" - }, - "Event:237d4e2c-ca76-4fba-ba46-452f750118e1": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "Digital Concrete 2022" - ], - "title": [ - "3rd RILEM International Conference on Concrete and Digital Fabrication" - ], - "creator": [ - { - "fulltext": "Organization:Loughborough University", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Loughborough_University", - "namespace": 7500, - "exists": "1", - "displaytitle": "Loughborough University" - }, - { - "fulltext": "Organization:International Union of Laboratories and Experts in Construction Materials, Systems and Structures", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Union_of_Laboratories_and_Experts_in_Construction_Materials,_Systems_and_Structures", - "namespace": 7500, - "exists": "1", - "displaytitle": "International Union of Laboratories and Experts in Construction Materials, Systems and Structures" - } - ], - "in_series": [ - { - "fulltext": "Event Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:31bf390c-62ba-4e7e-85e5-3d8cd814cc58", - "namespace": 7100, - "exists": "1", - "displaytitle": "Digital Concrete - RILEM International Conference on Concrete and Digital Fabrication" - } - ], - "start_date": [ - { - "timestamp": "1656288000", - "raw": "1/2022/6/27" - } - ], - "end_date": [ - { - "timestamp": "1656460800", - "raw": "1/2022/6/29" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Edward Herbert Building" - ], - "city": [ - "Loughborough" - ], - "region": [ - "Leicestershire" - ], - "country": [ - { - "fulltext": "Country:GB", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", - "namespace": 7400, - "exists": "1", - "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" - } - ], - "website": [ - "https://www.digitalconcrete2022.com/" - ], - "doi": [ - "10.25798/n86b-at09" - ] - }, - "fulltext": "Event:237d4e2c-ca76-4fba-ba46-452f750118e1", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:237d4e2c-ca76-4fba-ba46-452f750118e1", - "namespace": 7200, - "exists": "1", - "displaytitle": "Digital Concrete 2022" - }, - "Event:50fcf186-9b7a-433e-bd9d-ccd53a3a3c6b": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "EAHN 2018" - ], - "title": [ - "EAHN 2018 Fifth International Meeting" - ], - "creator": [ - { - "fulltext": "Organization:European Architectural History Network", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:European_Architectural_History_Network", - "namespace": 7500, - "exists": "1", - "displaytitle": "European Architectural History Network" - } - ], - "in_series": [ - { - "fulltext": "Event Series:7f37e6eb-1235-46ba-9472-afa00953399d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:7f37e6eb-1235-46ba-9472-afa00953399d", - "namespace": 7100, - "exists": "1", - "displaytitle": "EAHN Biennial Conferences - Biennial Conferences of the European architectural histoty network" - } - ], - "start_date": [ - { - "timestamp": "1528848000", - "raw": "1/2018/6/13" - } - ], - "end_date": [ - { - "timestamp": "1529107200", - "raw": "1/2018/6/16" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Estonian National Library" - ], - "city": [ - "Tallinn" - ], - "region": [ - "Harju" - ], - "country": [ - { - "fulltext": "Country:EE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:EE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Estonia (EE)" - } - ], - "website": [], - "doi": [] - }, - "fulltext": "Event:50fcf186-9b7a-433e-bd9d-ccd53a3a3c6b", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:50fcf186-9b7a-433e-bd9d-ccd53a3a3c6b", - "namespace": 7200, - "exists": "1", - "displaytitle": "EAHN 2018" - }, - "Event:2969e449-1698-45b7-aa43-181a409b18a2": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "EAHN 2021" - ], - "title": [ - "EAHN 2021 Sixth International Meeting" - ], - "creator": [ - { - "fulltext": "Organization:European Architectural History Network", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:European_Architectural_History_Network", - "namespace": 7500, - "exists": "1", - "displaytitle": "European Architectural History Network" - } - ], - "in_series": [ - { - "fulltext": "Event Series:7f37e6eb-1235-46ba-9472-afa00953399d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:7f37e6eb-1235-46ba-9472-afa00953399d", - "namespace": 7100, - "exists": "1", - "displaytitle": "EAHN Biennial Conferences - Biennial Conferences of the European architectural histoty network" - } - ], - "start_date": [ - { - "timestamp": "1622592000", - "raw": "1/2021/6/2" - } - ], - "end_date": [ - { - "timestamp": "1622851200", - "raw": "1/2021/6/5" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [], - "doi": [] - }, - "fulltext": "Event:2969e449-1698-45b7-aa43-181a409b18a2", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:2969e449-1698-45b7-aa43-181a409b18a2", - "namespace": 7200, - "exists": "1", - "displaytitle": "EAHN 2021" - }, - "Event:D13897b9-1945-4830-b2d1-274e4e3834b8": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "EAHN 2022" - ], - "title": [ - "EAHN 2022 Seventh International Meeting" - ], - "creator": [ - { - "fulltext": "Organization:European Architectural History Network", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:European_Architectural_History_Network", - "namespace": 7500, - "exists": "1", - "displaytitle": "European Architectural History Network" - }, - { - "fulltext": "Organization:Superior Technical School of Architecture of Madrid, Technical University of Madrid", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Superior_Technical_School_of_Architecture_of_Madrid,_Technical_University_of_Madrid", - "namespace": 7500, - "exists": "1", - "displaytitle": "Superior Technical School of Architecture of Madrid, Technical University of Madrid" - } - ], - "in_series": [ - { - "fulltext": "Event Series:7f37e6eb-1235-46ba-9472-afa00953399d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:7f37e6eb-1235-46ba-9472-afa00953399d", - "namespace": 7100, - "exists": "1", - "displaytitle": "EAHN Biennial Conferences - Biennial Conferences of the European architectural histoty network" - } - ], - "start_date": [ - { - "timestamp": "1655251200", - "raw": "1/2022/6/15" - } - ], - "end_date": [ - { - "timestamp": "1655596800", - "raw": "1/2022/6/19" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Architecture School of Madrid - Polytechnic University of Madrid" - ], - "city": [ - "Madrid" - ], - "region": [ - "Madrid" - ], - "country": [ - { - "fulltext": "Country:ES", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:ES", - "namespace": 7400, - "exists": "1", - "displaytitle": "Spain (ES)" - } - ], - "website": [ - "https://eahn2022conference.aq.upm.es/" - ], - "doi": [] - }, - "fulltext": "Event:D13897b9-1945-4830-b2d1-274e4e3834b8", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:D13897b9-1945-4830-b2d1-274e4e3834b8", - "namespace": 7200, - "exists": "1", - "displaytitle": "EAHN 2022" - }, - "Event:B86521d2-86f1-489d-89cb-ccd498a2efd8": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "EAHN 2024" - ], - "title": [ - "EAHN 2024 Eighth International Meeting" - ], - "creator": [ - { - "fulltext": "Organization:European Architectural History Network", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:European_Architectural_History_Network", - "namespace": 7500, - "exists": "1", - "displaytitle": "European Architectural History Network" - } - ], - "in_series": [ - { - "fulltext": "Event Series:7f37e6eb-1235-46ba-9472-afa00953399d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:7f37e6eb-1235-46ba-9472-afa00953399d", - "namespace": 7100, - "exists": "1", - "displaytitle": "EAHN Biennial Conferences - Biennial Conferences of the European architectural histoty network" - } - ], - "start_date": [ - { - "timestamp": "1718755200", - "raw": "1/2024/6/19" - } - ], - "end_date": [ - { - "timestamp": "1719100800", - "raw": "1/2024/6/23" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "National Technical University of Athens" - ], - "city": [ - "Athens" - ], - "region": [ - "Attica" - ], - "country": [ - { - "fulltext": "Country:GR", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:GR", - "namespace": 7400, - "exists": "1", - "displaytitle": "Greece (GR)" - } - ], - "website": [ - "http://eahn2024.arch.ntua.gr/" - ], - "doi": [] - }, - "fulltext": "Event:B86521d2-86f1-489d-89cb-ccd498a2efd8", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:B86521d2-86f1-489d-89cb-ccd498a2efd8", - "namespace": 7200, - "exists": "1", - "displaytitle": "EAHN 2024" - }, - "Event:811bacf3-1f17-44fc-9ec9-b9a8d103317c": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "Euro Med Sec 04" - ], - "title": [ - "Fourth European and Mediterranean Structural Engineering and Construction Conference" - ], - "creator": [ - { - "fulltext": "Organization:Leipzig University of Applied Sciences", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Leipzig_University_of_Applied_Sciences", - "namespace": 7500, - "exists": "1", - "displaytitle": "Leipzig University of Applied Sciences" - }, - { - "fulltext": "Organization:ISEC Society", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ISEC_Society", - "namespace": 7500, - "exists": "1", - "displaytitle": "ISEC Society" - } - ], - "in_series": [ - { - "fulltext": "Event Series:86c30d76-d35f-4a0a-a70b-aaa162b78cc9", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:86c30d76-d35f-4a0a-a70b-aaa162b78cc9", - "namespace": 7100, - "exists": "1", - "displaytitle": "EURO MED SEC - European and Mediterranean Structural Engineering and Construction Conference" - } - ], - "start_date": [ - { - "timestamp": "1655683200", - "raw": "1/2022/6/20" - } - ], - "end_date": [ - { - "timestamp": "1656115200", - "raw": "1/2022/6/25" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Leipzig University of Applied Sciences" - ], - "city": [ - "Leipzig" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.isec-society.org/EURO_MED_SEC_04/" - ], - "doi": [] - }, - "fulltext": "Event:811bacf3-1f17-44fc-9ec9-b9a8d103317c", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:811bacf3-1f17-44fc-9ec9-b9a8d103317c", - "namespace": 7200, - "exists": "1", - "displaytitle": "Euro Med Sec 04" - }, - "Event:FABRICATE 2011": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "FABRICATE 2011" - ], - "title": [ - "FABRICATE 2011" - ], - "creator": [ - { - "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bartlett Faculty of the Built Environment, University College London" - } - ], - "in_series": [ - { - "fulltext": "Event Series:FABRICATE", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", - "namespace": 7100, - "exists": "1", - "displaytitle": "FABRICATE - FABRICATE" - } - ], - "start_date": [ - { - "timestamp": "1293840000", - "raw": "1/2011" - } - ], - "end_date": [ - { - "timestamp": "1293840000", - "raw": "1/2011" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "London" - ], - "region": [], - "country": [ - { - "fulltext": "Country:GB", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", - "namespace": 7400, - "exists": "1", - "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" - } - ], - "website": [ - "https://www.fabricate.org/?page_id=15774" - ], - "doi": [] - }, - "fulltext": "Event:FABRICATE 2011", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:FABRICATE_2011", - "namespace": 7200, - "exists": "1", - "displaytitle": "FABRICATE 2011" - }, - "Event:FABRICATE 2014": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "FABRICATE 2014" - ], - "title": [ - "FABRICATE 2014" - ], - "creator": [ - { - "fulltext": "Organization:Professorship for Architecture and Digital Fabrication, ETH Zurich", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Professorship_for_Architecture_and_Digital_Fabrication,_ETH_Zurich", - "namespace": 7500, - "exists": "1", - "displaytitle": "Professorship for Architecture and Digital Fabrication, ETH Zurich" - }, - { - "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bartlett Faculty of the Built Environment, University College London" - } - ], - "in_series": [ - { - "fulltext": "Event Series:FABRICATE", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", - "namespace": 7100, - "exists": "1", - "displaytitle": "FABRICATE - FABRICATE" - } - ], - "start_date": [ - { - "timestamp": "1388534400", - "raw": "1/2014" - } - ], - "end_date": [ - { - "timestamp": "1388534400", - "raw": "1/2014" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Zürich" - ], - "region": [], - "country": [ - { - "fulltext": "Country:CH", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", - "namespace": 7400, - "exists": "1", - "displaytitle": "Switzerland (CH)" - } - ], - "website": [ - "https://www.fabricate.org/?page_id=16312" - ], - "doi": [] - }, - "fulltext": "Event:FABRICATE 2014", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:FABRICATE_2014", - "namespace": 7200, - "exists": "1", - "displaytitle": "FABRICATE 2014" - }, - "Event:FABRICATE 2017": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "FABRICATE 2017" - ], - "title": [ - "FABRICATE 2017" - ], - "creator": [ - { - "fulltext": "Organization:Institute for Computational Design and Construction, University of Stuttgart", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Institute_for_Computational_Design_and_Construction,_University_of_Stuttgart", - "namespace": 7500, - "exists": "1", - "displaytitle": "Institute for Computational Design and Construction, University of Stuttgart" - }, - { - "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bartlett Faculty of the Built Environment, University College London" - } - ], - "in_series": [ - { - "fulltext": "Event Series:FABRICATE", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", - "namespace": 7100, - "exists": "1", - "displaytitle": "FABRICATE - FABRICATE" - } - ], - "start_date": [ - { - "timestamp": "1491004800", - "raw": "1/2017/4" - } - ], - "end_date": [ - { - "timestamp": "1491004800", - "raw": "1/2017/4" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Stuttgart" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.fabricate.org/?page_id=16524" - ], - "doi": [] - }, - "fulltext": "Event:FABRICATE 2017", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:FABRICATE_2017", - "namespace": 7200, - "exists": "1", - "displaytitle": "FABRICATE 2017" - }, - "Event:FABRICATE 2020": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Engineering" - }, - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "FABRICATE 2020" - ], - "title": [ - "FABRICATE 2020" - ], - "creator": [ - { - "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bartlett Faculty of the Built Environment, University College London" - }, - { - "fulltext": "Organization:Cornell University College of Architecture, Art, and Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Cornell_University_College_of_Architecture,_Art,_and_Planning", - "namespace": 7500, - "exists": "1", - "displaytitle": "Cornell University College of Architecture, Art, and Planning" - }, - { - "fulltext": "Organization:Swinburne University of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Swinburne_University_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Swinburne University of Technology" - } - ], - "in_series": [ - { - "fulltext": "Event Series:FABRICATE", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", - "namespace": 7100, - "exists": "1", - "displaytitle": "FABRICATE - FABRICATE" - } - ], - "start_date": [ - { - "timestamp": "1599609600", - "raw": "1/2020/9/9" - } - ], - "end_date": [ - { - "timestamp": "1599868800", - "raw": "1/2020/9/12" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.fabricate.org/" - ], - "doi": [] - }, - "fulltext": "Event:FABRICATE 2020", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:FABRICATE_2020", - "namespace": 7200, - "exists": "1", - "displaytitle": "FABRICATE 2020" - }, - "Event:FBI 2021": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "FBI 2021" - ], - "title": [ - "32. Forum Bauinformatik 2021 in Darmstadt" - ], - "creator": [ - { - "fulltext": "Organization:Technische Universität Darmstadt - Institut für Numerische Methoden und Informatik im Bauwesen", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technische_Universit%C3%A4t_Darmstadt_-_Institut_f%C3%BCr_Numerische_Methoden_und_Informatik_im_Bauwesen", - "namespace": 7500, - "exists": "1", - "displaytitle": "Technische Universität Darmstadt - Institut für Numerische Methoden und Informatik im Bauwesen" - } - ], - "in_series": [ - { - "fulltext": "Event Series:FBI", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FBI", - "namespace": 7100, - "exists": "1", - "displaytitle": "FBI - Forum Bauinformatik" - } - ], - "start_date": [ - { - "timestamp": "1631059200", - "raw": "1/2021/9/8" - } - ], - "end_date": [ - { - "timestamp": "1631232000", - "raw": "1/2021/9/10" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Darmstadt" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://fbi2021.de/" - ], - "doi": [] - }, - "fulltext": "Event:FBI 2021", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:FBI_2021", - "namespace": 7200, - "exists": "1", - "displaytitle": "FBI 2021" - }, - "Event:462c5e90-44cf-449b-8d56-3904226939e2": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "FBI 2023" - ], - "title": [ - "34. Forum Bauinformatik 2023" - ], - "creator": [ - { - "fulltext": "Organization:Ruhr-Universität Bochum", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ruhr-Universit%C3%A4t_Bochum", - "namespace": 7500, - "exists": "1", - "displaytitle": "Ruhr-Universität Bochum" - } - ], - "in_series": [ - { - "fulltext": "Event Series:FBI", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FBI", - "namespace": 7100, - "exists": "1", - "displaytitle": "FBI - Forum Bauinformatik" - } - ], - "start_date": [ - { - "timestamp": "1693958400", - "raw": "1/2023/9/6" - } - ], - "end_date": [ - { - "timestamp": "1694131200", - "raw": "1/2023/9/8" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Ruhr-Universität Bochum" - ], - "city": [ - "Bochum" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://fbi2023.blogs.ruhr-uni-bochum.de/" - ], - "doi": [] - }, - "fulltext": "Event:462c5e90-44cf-449b-8d56-3904226939e2", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:462c5e90-44cf-449b-8d56-3904226939e2", - "namespace": 7200, - "exists": "1", - "displaytitle": "FBI 2023" - }, - "Event:E729503c-27d7-42fa-8cf8-92f72002f3da": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "Fabricate 2024" - ], - "creator": [ - { - "fulltext": "Organization:Bartlett Faculty of the Built Environment, University College London", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bartlett_Faculty_of_the_Built_Environment,_University_College_London", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bartlett Faculty of the Built Environment, University College London" - }, - { - "fulltext": "Organization:Cornell University College of Architecture, Art, and Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Cornell_University_College_of_Architecture,_Art,_and_Planning", - "namespace": 7500, - "exists": "1", - "displaytitle": "Cornell University College of Architecture, Art, and Planning" - }, - { - "fulltext": "Organization:Swinburne University of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Swinburne_University_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Swinburne University of Technology" - } - ], - "in_series": [ - { - "fulltext": "Event Series:FABRICATE", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:FABRICATE", - "namespace": 7100, - "exists": "1", - "displaytitle": "FABRICATE - FABRICATE" - } - ], - "start_date": [ - { - "timestamp": "1711929600", - "raw": "1/2024/4" - } - ], - "end_date": [ - { - "timestamp": "1711929600", - "raw": "1/2024/4" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "CITA - Royal Danish Academy – Architecture, Design, Conservation" - ], - "city": [ - "Copenhagen" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DK", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DK", - "namespace": 7400, - "exists": "1", - "displaytitle": "Denmark (DK)" - } - ], - "website": [ - "http://www.fabricate.org/" - ], - "doi": [] - }, - "fulltext": "Event:E729503c-27d7-42fa-8cf8-92f72002f3da", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:E729503c-27d7-42fa-8cf8-92f72002f3da", - "namespace": 7200, - "exists": "1", - "displaytitle": "Fabricate 2024" - }, - "Event:7281004a-e6e1-4762-9dd4-81c7730cde3e": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "GBTG 2019" - ], - "title": [ - "4. Jahrestagung der Gesellschaft für Bautechnikgeschichte" - ], - "creator": [ - { - "fulltext": "Organization:Gesellschaft für Bautechnikgeschichte (GBTG)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Gesellschaft_f%C3%BCr_Bautechnikgeschichte_(GBTG)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Gesellschaft für Bautechnikgeschichte (GBTG)" - }, - { - "fulltext": "Organization:Niedersächsischen Landesamt für Denkmalpflege", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Nieders%C3%A4chsischen_Landesamt_f%C3%BCr_Denkmalpflege", - "namespace": 7500, - "exists": "1", - "displaytitle": "Niedersächsischen Landesamt für Denkmalpflege" - } - ], - "in_series": [ - { - "fulltext": "Event Series:785b2e37-87e2-4152-83ba-423208d2694e", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:785b2e37-87e2-4152-83ba-423208d2694e", - "namespace": 7100, - "exists": "1", - "displaytitle": "GBTG - Jahrestagungen der Gesellschaft für Bautechnikgeschichte" - } - ], - "start_date": [ - { - "timestamp": "1557360000", - "raw": "1/2019/5/9" - } - ], - "end_date": [ - { - "timestamp": "1557532800", - "raw": "1/2019/5/11" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Vortragssaal Niedersächsisches Landesmuseum" - ], - "city": [ - "Hannover" - ], - "region": [ - "Lower Saxony" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://gesellschaft.bautechnikgeschichte.org/veranstaltungen-2/jahrestagungen/jahrestagung-2019-in-hannover/" - ], - "doi": [] - }, - "fulltext": "Event:7281004a-e6e1-4762-9dd4-81c7730cde3e", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:7281004a-e6e1-4762-9dd4-81c7730cde3e", - "namespace": 7200, - "exists": "1", - "displaytitle": "GBTG 2019" - }, - "Event:C4dc9cb9-5975-410e-8b3b-d1e93d30435c": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "GBTG 2021" - ], - "title": [ - "5. Jahrestagung der Gesellschaft für Bautechnikgeschichte" - ], - "creator": [ - { - "fulltext": "Organization:Gesellschaft für Bautechnikgeschichte (GBTG)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Gesellschaft_f%C3%BCr_Bautechnikgeschichte_(GBTG)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Gesellschaft für Bautechnikgeschichte (GBTG)" - }, - { - "fulltext": "Organization:ETH Zurich", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ETH_Zurich", - "namespace": 7500, - "exists": "1", - "displaytitle": "ETH Zurich" - } - ], - "in_series": [ - { - "fulltext": "Event Series:785b2e37-87e2-4152-83ba-423208d2694e", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:785b2e37-87e2-4152-83ba-423208d2694e", - "namespace": 7100, - "exists": "1", - "displaytitle": "GBTG - Jahrestagungen der Gesellschaft für Bautechnikgeschichte" - } - ], - "start_date": [ - { - "timestamp": "1623283200", - "raw": "1/2021/6/10" - } - ], - "end_date": [ - { - "timestamp": "1623369600", - "raw": "1/2021/6/11" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://gesellschaft.bautechnikgeschichte.org/veranstaltungen-2/jahrestagungen/jahrestagung-2021-in-zuerich/" - ], - "doi": [] - }, - "fulltext": "Event:C4dc9cb9-5975-410e-8b3b-d1e93d30435c", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:C4dc9cb9-5975-410e-8b3b-d1e93d30435c", - "namespace": 7200, - "exists": "1", - "displaytitle": "GBTG 2021" - }, - "Event:D5d1007b-cf85-491e-84e9-4d344870bfe8": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "GBTG 2023" - ], - "title": [ - "6. Jahrestagung der Gesellschaft für Bautechnikgeschichte" - ], - "creator": [ - { - "fulltext": "Organization:Gesellschaft für Bautechnikgeschichte (GBTG)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Gesellschaft_f%C3%BCr_Bautechnikgeschichte_(GBTG)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Gesellschaft für Bautechnikgeschichte (GBTG)" - }, - { - "fulltext": "Organization:Landesdenkmalamt Berlin", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Landesdenkmalamt_Berlin", - "namespace": 7500, - "exists": "1", - "displaytitle": "Landesdenkmalamt Berlin" - } - ], - "in_series": [ - { - "fulltext": "Event Series:785b2e37-87e2-4152-83ba-423208d2694e", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:785b2e37-87e2-4152-83ba-423208d2694e", - "namespace": 7100, - "exists": "1", - "displaytitle": "GBTG - Jahrestagungen der Gesellschaft für Bautechnikgeschichte" - } - ], - "start_date": [ - { - "timestamp": "1683763200", - "raw": "1/2023/5/11" - } - ], - "end_date": [ - { - "timestamp": "1683936000", - "raw": "1/2023/5/13" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Berlin" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://gesellschaft.bautechnikgeschichte.org/" - ], - "doi": [] - }, - "fulltext": "Event:D5d1007b-cf85-491e-84e9-4d344870bfe8", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:D5d1007b-cf85-491e-84e9-4d344870bfe8", - "namespace": 7200, - "exists": "1", - "displaytitle": "GBTG 2023" - }, - "Event:B811530b-a330-474a-b126-514f4466e178": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [], - "title": [ - "GND Forum Bauwerke" - ], - "creator": [ - { - "fulltext": "Organization:Deutsche Nationalbibliothek", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Deutsche_Nationalbibliothek", - "namespace": 7500, - "exists": "1", - "displaytitle": "Deutsche Nationalbibliothek" - }, - { - "fulltext": "Organization:Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Deutsches_Dokumentationszentrum_f%C3%BCr_Kunstgeschichte_-_Bildarchiv_Foto_Marburg", - "namespace": 7500, - "exists": "1", - "displaytitle": "Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg" - }, - { - "fulltext": "Organization:Herder-Institut für historische Ostmitteleuropaforschung", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Herder-Institut_f%C3%BCr_historische_Ostmitteleuropaforschung", - "namespace": 7500, - "exists": "1", - "displaytitle": "Herder-Institut für historische Ostmitteleuropaforschung" - }, - { - "fulltext": "Organization:VDL - Vereinigung der Denkmalfachämter in den Ländern", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:VDL_-_Vereinigung_der_Denkmalfach%C3%A4mter_in_den_L%C3%A4ndern", - "namespace": 7500, - "exists": "1", - "displaytitle": "VDL - Vereinigung der Denkmalfachämter in den Ländern" - }, - { - "fulltext": "Organization:German National Library Of Science and Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:German_National_Library_Of_Science_and_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "German National Library Of Science and Technology" - } - ], - "in_series": [], - "start_date": [ - { - "timestamp": "1668384000", - "raw": "1/2022/11/14" - } - ], - "end_date": [ - { - "timestamp": "1668384000", - "raw": "1/2022/11/14" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.uni-marburg.de/de/fotomarburg/aktuelles/nachrichten/gnd-forum-bauwerke" - ], - "doi": [] - }, - "fulltext": "Event:B811530b-a330-474a-b126-514f4466e178", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:B811530b-a330-474a-b126-514f4466e178", - "namespace": 7200, - "exists": "1", - "displaytitle": "GND Forum Bauwerke" - }, - "Event:323da176-0739-49b2-b6d4-40533b57f6a2": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "ICAM20" - ], - "title": [ - "Conference of the International Confederation of Architectural Museums" - ], - "creator": [ - { - "fulltext": "Organization:International Confederation of Architectural Museums", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Confederation_of_Architectural_Museums", - "namespace": 7500, - "exists": "1", - "displaytitle": "International Confederation of Architectural Museums" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5f37f3f9-7069-4e89-90e5-119af83427b9", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5f37f3f9-7069-4e89-90e5-119af83427b9", - "namespace": 7100, - "exists": "1", - "displaytitle": "ICAM Conference - Conference of the International Confederation of Architectural Museums" - } - ], - "start_date": [ - { - "timestamp": "1631059200", - "raw": "1/2021/9/8" - } - ], - "end_date": [ - { - "timestamp": "1631232000", - "raw": "1/2021/9/10" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://icam-web.org/conferences/icam20-munich-neu/" - ], - "doi": [] - }, - "fulltext": "Event:323da176-0739-49b2-b6d4-40533b57f6a2", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:323da176-0739-49b2-b6d4-40533b57f6a2", - "namespace": 7200, - "exists": "1", - "displaytitle": "ICAM20" - }, - "Event:8ef45e8a-8ab5-4c27-994e-9c1ee40e4ea2": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "ICAM2019" - ], - "title": [ - "Conference of the International Confederation of Architectural Museums" - ], - "creator": [ - { - "fulltext": "Organization:International Confederation of Architectural Museums", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Confederation_of_Architectural_Museums", - "namespace": 7500, - "exists": "1", - "displaytitle": "International Confederation of Architectural Museums" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5f37f3f9-7069-4e89-90e5-119af83427b9", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5f37f3f9-7069-4e89-90e5-119af83427b9", - "namespace": 7100, - "exists": "1", - "displaytitle": "ICAM Conference - Conference of the International Confederation of Architectural Museums" - } - ], - "start_date": [ - { - "timestamp": "1536451200", - "raw": "1/2018/9/9" - } - ], - "end_date": [ - { - "timestamp": "1536796800", - "raw": "1/2018/9/13" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Danish Architecture Centre" - ], - "city": [ - "Copenhagen" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DK", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DK", - "namespace": 7400, - "exists": "1", - "displaytitle": "Denmark (DK)" - } - ], - "website": [ - "https://icam-web.org/conferences/icam19-copenhagen/" - ], - "doi": [] - }, - "fulltext": "Event:8ef45e8a-8ab5-4c27-994e-9c1ee40e4ea2", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:8ef45e8a-8ab5-4c27-994e-9c1ee40e4ea2", - "namespace": 7200, - "exists": "1", - "displaytitle": "ICAM2019" - }, - "Event:98b96f21-e5a1-432b-a432-8ed4a3ed8811": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "ICAM21" - ], - "title": [ - "Conference of the International Confederation of Architectural Museums" - ], - "creator": [ - { - "fulltext": "Organization:Technische Universität München", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Technische_Universit%C3%A4t_M%C3%BCnchen", - "namespace": 7500, - "exists": "1", - "displaytitle": "Technische Universität München" - }, - { - "fulltext": "Organization:International Confederation of Architectural Museums", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Confederation_of_Architectural_Museums", - "namespace": 7500, - "exists": "1", - "displaytitle": "International Confederation of Architectural Museums" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5f37f3f9-7069-4e89-90e5-119af83427b9", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5f37f3f9-7069-4e89-90e5-119af83427b9", - "namespace": 7100, - "exists": "1", - "displaytitle": "ICAM Conference - Conference of the International Confederation of Architectural Museums" - } - ], - "start_date": [ - { - "timestamp": "1662422400", - "raw": "1/2022/9/6" - } - ], - "end_date": [ - { - "timestamp": "1662854400", - "raw": "1/2022/9/11" - } - ], - "event_mode": [ - "hybrid" - ], - "venue": [ - "Architekturmuseum Technische Universität München" - ], - "city": [ - "München" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.architekturmuseum.de/ausstellungen/icam22-in-muenchen/" - ], - "doi": [] - }, - "fulltext": "Event:98b96f21-e5a1-432b-a432-8ed4a3ed8811", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:98b96f21-e5a1-432b-a432-8ed4a3ed8811", - "namespace": 7200, - "exists": "1", - "displaytitle": "ICAM21" - }, - "Event:ICCCBE 2020": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "ICCCBE 2020" - ], - "title": [ - "International Society for Computing in Civil and Building Engineering" - ], - "creator": [ - { - "fulltext": "Organization:International Society for Computing in Civil and Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Society_for_Computing_in_Civil_and_Building_Engineering", - "namespace": 7500, - "exists": "1", - "displaytitle": "International Society for Computing in Civil and Building Engineering" - } - ], - "in_series": [ - { - "fulltext": "Event Series:ICCCBE", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:ICCCBE", - "namespace": 7100, - "exists": "1", - "displaytitle": "ICCCBE - International Society for Computing in Civil and Building Engineering" - } - ], - "start_date": [ - { - "timestamp": "1597708800", - "raw": "1/2020/8/18" - } - ], - "end_date": [ - { - "timestamp": "1597881600", - "raw": "1/2020/8/20" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "São Paulo" - ], - "region": [ - "online" - ], - "country": [ - { - "fulltext": "Country:BR", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:BR", - "namespace": 7400, - "exists": "1", - "displaytitle": "Brazil (BR)" - } - ], - "website": [ - "http://www.isccbe.org/" - ], - "doi": [] - }, - "fulltext": "Event:ICCCBE 2020", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:ICCCBE_2020", - "namespace": 7200, - "exists": "1", - "displaytitle": "ICCCBE 2020" - }, - "Event:E81506db-caa2-446e-aa9e-9d86ead1867b": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "ICGG2022" - ], - "title": [ - "The 20th International Conference on Geometry and Graphics" - ], - "creator": [ - { - "fulltext": "Organization:International Society for Geometry and Graphics (ISGG)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:International_Society_for_Geometry_and_Graphics_(ISGG)", - "namespace": 7500, - "exists": "1", - "displaytitle": "International Society for Geometry and Graphics (ISGG)" - } - ], - "in_series": [ - { - "fulltext": "Event Series:ICGG", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:ICGG", - "namespace": 7100, - "exists": "1", - "displaytitle": "ICGG - International Conference on Geometry and Graphics" - } - ], - "start_date": [ - { - "timestamp": "1660521600", - "raw": "1/2022/8/15" - } - ], - "end_date": [ - { - "timestamp": "1660867200", - "raw": "1/2022/8/19" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "http://icgg2022.pcc.usp.br/" - ], - "doi": [] - }, - "fulltext": "Event:E81506db-caa2-446e-aa9e-9d86ead1867b", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:E81506db-caa2-446e-aa9e-9d86ead1867b", - "namespace": 7200, - "exists": "1", - "displaytitle": "ICGG2022" - }, - "Event:354f0bb1-7b7f-48a3-a69d-dde5d808f788": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Computational Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Computational_Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Computational Architecture" - }, - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Computational Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Computational_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Computational Design" - } - ], - "acronym": [ - "IntCDC Conference 2022" - ], - "title": [ - "Integrative Computational Design and Construction for Future-Proof Architecture" - ], - "creator": [ - { - "fulltext": "Organization:Cluster of Excellence \"Integrative Computational Design and Construction for Architecture\"", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Cluster_of_Excellence_%22Integrative_Computational_Design_and_Construction_for_Architecture%22", - "namespace": 7500, - "exists": "1", - "displaytitle": "Cluster of Excellence \"Integrative Computational Design and Construction for Architecture\"" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A72015c3-b9f5-4aec-a836-ed884efe146b", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A72015c3-b9f5-4aec-a836-ed884efe146b", - "namespace": 7100, - "exists": "1", - "displaytitle": "IntCDC - Integrative Computational Design and Construction for Future-proof Architecture" - } - ], - "start_date": [ - { - "timestamp": "1665532800", - "raw": "1/2022/10/12" - } - ], - "end_date": [ - { - "timestamp": "1665619200", - "raw": "1/2022/10/13" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "University of Stuttgart, Keplerstraße" - ], - "city": [ - "Stuttgart" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.intcdc.uni-stuttgart.de/stuttgart-week-of-advancing-aec/intcdc-conference-2022/" - ], - "doi": [] - }, - "fulltext": "Event:354f0bb1-7b7f-48a3-a69d-dde5d808f788", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:354f0bb1-7b7f-48a3-a69d-dde5d808f788", - "namespace": 7200, - "exists": "1", - "displaytitle": "IntCDC Conference 2022" - }, - "Event:057890b8-006c-4fbe-9b25-097b1b25f9e1": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:History of Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:History_of_Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "History of Architecture" - } - ], - "acronym": [], - "title": [ - "Kolloquium: „Hochschulsammlungen zu Architektur und Graphik als Herausforderung für Forschung und Lehre“" - ], - "creator": [ - { - "fulltext": "Organization:Leibniz University Hannover", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Leibniz_University_Hannover", - "namespace": 7500, - "exists": "1", - "displaytitle": "Leibniz University Hannover" - }, - { - "fulltext": "Organization:German National Library Of Science and Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:German_National_Library_Of_Science_and_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "German National Library Of Science and Technology" - }, - { - "fulltext": "Organization:DFG, German Research Foundation", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:DFG,_German_Research_Foundation", - "namespace": 7500, - "exists": "1", - "displaytitle": "DFG, German Research Foundation" - } - ], - "in_series": [], - "start_date": [ - { - "timestamp": "1678838400", - "raw": "1/2023/3/15" - } - ], - "end_date": [ - { - "timestamp": "1678924800", - "raw": "1/2023/3/16" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Appelstraße 7" - ], - "city": [ - "Hanover" - ], - "region": [ - "Lower Saxony" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://projects.tib.eu/haupt/aktuelles/detail/als-wichtiges-studienmaterial-nuetzlich-zu-machen-hochschulsammlungen-zu-architektur-und-graphik-als-herausforderung-fuer-forschung-und-lehre/" - ], - "doi": [ - "10.25798/8ymv-tn58" - ] - }, - "fulltext": "Event:057890b8-006c-4fbe-9b25-097b1b25f9e1", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:057890b8-006c-4fbe-9b25-097b1b25f9e1", - "namespace": 7200, - "exists": "1", - "displaytitle": "Kolloquium: „Hochschulsammlungen zu Architektur und Graphik als Herausforderung für Forschung und Lehre“" - }, - "Event:55b9b472-6733-443a-96ac-3ecb8b4cb5c4": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "LDAC 2021" - ], - "title": [ - "8th Linked Data in Architecture and Construction Workshop" - ], - "creator": [ - { - "fulltext": "Organization:Luxembourg Institute of Science and Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Luxembourg_Institute_of_Science_and_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Luxembourg Institute of Science and Technology" - } - ], - "in_series": [ - { - "fulltext": "Event Series:161117e9-f313-484c-b5ca-3ed46f670369", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:161117e9-f313-484c-b5ca-3ed46f670369", - "namespace": 7100, - "exists": "1", - "displaytitle": "LDAC - Conferences on Linked Data in Architecture and Construction" - } - ], - "start_date": [ - { - "timestamp": "1633910400", - "raw": "1/2021/10/11" - } - ], - "end_date": [ - { - "timestamp": "1634256000", - "raw": "1/2021/10/15" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Luxembourg" - ], - "region": [], - "country": [ - { - "fulltext": "Country:LU", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:LU", - "namespace": 7400, - "exists": "1", - "displaytitle": "Luxembourg (LU)" - } - ], - "website": [ - "https://www.cibw78-ldac-2021.lu/" - ], - "doi": [] - }, - "fulltext": "Event:55b9b472-6733-443a-96ac-3ecb8b4cb5c4", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:55b9b472-6733-443a-96ac-3ecb8b4cb5c4", - "namespace": 7200, - "exists": "1", - "displaytitle": "LDAC 2021" - }, - "Event:NEXUS 20/21": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "NEXUS 20/21" - ], - "title": [ - "Relationships Between Architecture and Mathematics" - ], - "creator": [ - { - "fulltext": "Organization:Fatuk – Faculty of Architecture, TU Kaiserslautern", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fatuk_%E2%80%93_Faculty_of_Architecture,_TU_Kaiserslautern", - "namespace": 7500, - "exists": "1", - "displaytitle": "Fatuk – Faculty of Architecture, TU Kaiserslautern" - } - ], - "in_series": [], - "start_date": [ - { - "timestamp": "1627257600", - "raw": "1/2021/7/26" - } - ], - "end_date": [ - { - "timestamp": "1627516800", - "raw": "1/2021/7/29" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "Kaiserslautern" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://nexus2021.architektur.uni-kl.de/" - ], - "doi": [] - }, - "fulltext": "Event:NEXUS 20/21", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:NEXUS_20/21", - "namespace": 7200, - "exists": "1", - "displaytitle": "NEXUS 20/21" - }, - "Event:01a3d4ae-5225-4ae6-988a-d2d8a6dc6904": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "NEXUS 20/21" - ], - "title": [ - "Relationships Between Architecture and Mathematics – 13. International Conference" - ], - "creator": [ - { - "fulltext": "Organization:Research Culture in Architecture (RCA)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Research_Culture_in_Architecture_(RCA)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Research Culture in Architecture (RCA)" - }, - { - "fulltext": "Organization:Fatuk – Faculty of Architecture, TU Kaiserslautern", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fatuk_%E2%80%93_Faculty_of_Architecture,_TU_Kaiserslautern", - "namespace": 7500, - "exists": "1", - "displaytitle": "Fatuk – Faculty of Architecture, TU Kaiserslautern" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A4a71a48-7b96-49c1-bd51-8c9c13ce45be", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A4a71a48-7b96-49c1-bd51-8c9c13ce45be", - "namespace": 7100, - "exists": "1", - "displaytitle": "RCA - Research Culture in Architecture – International Conference on Cross-Disciplinary Collaboration in Architecture" - } - ], - "start_date": [ - { - "timestamp": "1627257600", - "raw": "1/2021/7/26" - } - ], - "end_date": [ - { - "timestamp": "1627516800", - "raw": "1/2021/7/29" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://nexus2021.architektur.uni-kl.de/" - ], - "doi": [] - }, - "fulltext": "Event:01a3d4ae-5225-4ae6-988a-d2d8a6dc6904", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:01a3d4ae-5225-4ae6-988a-d2d8a6dc6904", - "namespace": 7200, - "exists": "1", - "displaytitle": "NEXUS 20/21" - }, - "Event:8f28cba3-4e04-4e7c-ade2-00cd5008bae3": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Urban Studies", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Studies", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Studies" - }, - { - "fulltext": "Academic Field:Spatial Planning", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Spatial_Planning", - "namespace": 7300, - "exists": "1", - "displaytitle": "Spatial Planning" - } - ], - "acronym": [], - "title": [ - "Raumentwicklung und Raumordnung in Grenzregionen stärken: zwei deutsch-französische Planspiele" - ], - "creator": [ - { - "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung_(BBSR)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)" - }, - { - "fulltext": "Organization:Agence Nationale de la Cohésion des Territoires (ANCT)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Agence_Nationale_de_la_Coh%C3%A9sion_des_Territoires_(ANCT)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Agence Nationale de la Cohésion des Territoires (ANCT)" - } - ], - "in_series": [], - "start_date": [ - { - "timestamp": "1670976000", - "raw": "1/2022/12/14" - } - ], - "end_date": [ - { - "timestamp": "1670976000", - "raw": "1/2022/12/14" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Salle de l’Hémicycle/ Sitz der Région Grand Est" - ], - "city": [ - "Strasbourg" - ], - "region": [], - "country": [ - { - "fulltext": "Country:FR", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:FR", - "namespace": 7400, - "exists": "1", - "displaytitle": "France (FR)" - } - ], - "website": [ - "https://www.bbsr.bund.de/BBSR/DE/service/veranstaltungen/2022/2022-12-14-planspiele-abschluss.html" - ], - "doi": [] - }, - "fulltext": "Event:8f28cba3-4e04-4e7c-ade2-00cd5008bae3", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:8f28cba3-4e04-4e7c-ade2-00cd5008bae3", - "namespace": 7200, - "exists": "1", - "displaytitle": "Raumentwicklung und Raumordnung in Grenzregionen stärken: zwei deutsch-französische Planspiele" - }, - "Event:62ff56a1-eda2-442c-ac27-3013a13ae2f4": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "RobArch 2018" - ], - "title": [ - "conference on robotic fabrication in architecture, art, and design" - ], - "creator": [ - { - "fulltext": "Organization:Association for Robots in Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Robots_in_Architecture", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Robots in Architecture" - }, - { - "fulltext": "Organization:ETH Zurich", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:ETH_Zurich", - "namespace": 7500, - "exists": "1", - "displaytitle": "ETH Zurich" - } - ], - "in_series": [ - { - "fulltext": "Event Series:99ec81e1-0e57-471e-ac55-8660a4484922", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:99ec81e1-0e57-471e-ac55-8660a4484922", - "namespace": 7100, - "exists": "1", - "displaytitle": "RobArch - Conference on robotic fabrication in architecture, art, and design" - } - ], - "start_date": [ - { - "timestamp": "1536710400", - "raw": "1/2018/9/12" - } - ], - "end_date": [ - { - "timestamp": "1536883200", - "raw": "1/2018/9/14" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "ETH Zurich" - ], - "city": [ - "Zurich" - ], - "region": [], - "country": [ - { - "fulltext": "Country:CH", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CH", - "namespace": 7400, - "exists": "1", - "displaytitle": "Switzerland (CH)" - } - ], - "website": [ - "http://www.robarch2018.org/" - ], - "doi": [] - }, - "fulltext": "Event:62ff56a1-eda2-442c-ac27-3013a13ae2f4", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:62ff56a1-eda2-442c-ac27-3013a13ae2f4", - "namespace": 7200, - "exists": "1", - "displaytitle": "RobArch 2018" - }, - "Event:35c7ca1d-3cb6-4c15-a2db-1d74b6b8f461": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "RobArch 2020" - ], - "title": [ - "conference on robotic fabrication in architecture, art, and design" - ], - "creator": [ - { - "fulltext": "Organization:Association for Robots in Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Association_for_Robots_in_Architecture", - "namespace": 7500, - "exists": "1", - "displaytitle": "Association for Robots in Architecture" - }, - { - "fulltext": "Organization:Tsinghua University China", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Tsinghua_University_China", - "namespace": 7500, - "exists": "1", - "displaytitle": "Tsinghua University China" - } - ], - "in_series": [ - { - "fulltext": "Event Series:99ec81e1-0e57-471e-ac55-8660a4484922", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:99ec81e1-0e57-471e-ac55-8660a4484922", - "namespace": 7100, - "exists": "1", - "displaytitle": "RobArch - Conference on robotic fabrication in architecture, art, and design" - } - ], - "start_date": [ - { - "timestamp": "1599177600", - "raw": "1/2020/9/4" - } - ], - "end_date": [ - { - "timestamp": "1599264000", - "raw": "1/2020/9/5" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Tsinghua University" - ], - "city": [ - "Peking" - ], - "region": [], - "country": [ - { - "fulltext": "Country:CN", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CN", - "namespace": 7400, - "exists": "1", - "displaytitle": "China (CN)" - } - ], - "website": [ - "https://www.robarch2020.org/" - ], - "doi": [] - }, - "fulltext": "Event:35c7ca1d-3cb6-4c15-a2db-1d74b6b8f461", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:35c7ca1d-3cb6-4c15-a2db-1d74b6b8f461", - "namespace": 7200, - "exists": "1", - "displaytitle": "RobArch 2020" - }, - "Event:304da54c-6e96-44ef-845b-75e6ff4dc46c": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "SIGraDI2020" - ], - "title": [ - "24. Conference of the Ibero American Society of Digital Graphics" - ], - "creator": [ - { - "fulltext": "Organization:Ibero-American Society of Digital Graphics", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ibero-American_Society_of_Digital_Graphics", - "namespace": 7500, - "exists": "1", - "displaytitle": "Ibero-American Society of Digital Graphics" - } - ], - "in_series": [ - { - "fulltext": "Event Series:086c414a-cf19-4245-b707-2f932f0a4d5d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:086c414a-cf19-4245-b707-2f932f0a4d5d", - "namespace": 7100, - "exists": "1", - "displaytitle": "SIGraDi - Conference of the Ibero American Society of Digital Graphics" - } - ], - "start_date": [ - { - "timestamp": "1605657600", - "raw": "1/2020/11/18" - } - ], - "end_date": [ - { - "timestamp": "1605830400", - "raw": "1/2020/11/20" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://sigradi2020.upb.edu.co" - ], - "doi": [] - }, - "fulltext": "Event:304da54c-6e96-44ef-845b-75e6ff4dc46c", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:304da54c-6e96-44ef-845b-75e6ff4dc46c", - "namespace": 7200, - "exists": "1", - "displaytitle": "SIGraDI2020" - }, - "Event:360c7292-24cc-471c-8ef6-acced40e5f48": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "SIGraDI2021" - ], - "title": [ - "25. Conference of the Ibero American Society of Digital Graphics" - ], - "creator": [ - { - "fulltext": "Organization:Ibero-American Society of Digital Graphics", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ibero-American_Society_of_Digital_Graphics", - "namespace": 7500, - "exists": "1", - "displaytitle": "Ibero-American Society of Digital Graphics" - } - ], - "in_series": [ - { - "fulltext": "Event Series:086c414a-cf19-4245-b707-2f932f0a4d5d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:086c414a-cf19-4245-b707-2f932f0a4d5d", - "namespace": 7100, - "exists": "1", - "displaytitle": "SIGraDi - Conference of the Ibero American Society of Digital Graphics" - } - ], - "start_date": [ - { - "timestamp": "1636329600", - "raw": "1/2021/11/8" - } - ], - "end_date": [ - { - "timestamp": "1636675200", - "raw": "1/2021/11/12" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.sigradi.org/sigradi2021/" - ], - "doi": [] - }, - "fulltext": "Event:360c7292-24cc-471c-8ef6-acced40e5f48", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:360c7292-24cc-471c-8ef6-acced40e5f48", - "namespace": 7200, - "exists": "1", - "displaytitle": "SIGraDI2021" - }, - "Event:7c6204c4-5e9e-4fa8-ad2d-3de97639f4f4": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "SIGraDI2022" - ], - "title": [ - "26. Conference of the Ibero American Society of Digital Graphics" - ], - "creator": [ - { - "fulltext": "Organization:Ibero-American Society of Digital Graphics", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Ibero-American_Society_of_Digital_Graphics", - "namespace": 7500, - "exists": "1", - "displaytitle": "Ibero-American Society of Digital Graphics" - }, - { - "fulltext": "Organization:Universidad Peruana de Ciencias Aplicadas (UPC) School of Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Universidad_Peruana_de_Ciencias_Aplicadas_(UPC)_School_of_Architecture", - "namespace": 7500, - "exists": "1", - "displaytitle": "Universidad Peruana de Ciencias Aplicadas (UPC) School of Architecture" - } - ], - "in_series": [ - { - "fulltext": "Event Series:086c414a-cf19-4245-b707-2f932f0a4d5d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:086c414a-cf19-4245-b707-2f932f0a4d5d", - "namespace": 7100, - "exists": "1", - "displaytitle": "SIGraDi - Conference of the Ibero American Society of Digital Graphics" - } - ], - "start_date": [ - { - "timestamp": "1667779200", - "raw": "1/2022/11/7" - } - ], - "end_date": [ - { - "timestamp": "1668124800", - "raw": "1/2022/11/11" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Universidad Peruana de Ciencias Aplicadas" - ], - "city": [ - "Lima" - ], - "region": [], - "country": [ - { - "fulltext": "Country:PE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:PE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Peru (PE)" - } - ], - "website": [ - "https://www.sigradi.org/sigradi2022/" - ], - "doi": [] - }, - "fulltext": "Event:7c6204c4-5e9e-4fa8-ad2d-3de97639f4f4", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:7c6204c4-5e9e-4fa8-ad2d-3de97639f4f4", - "namespace": 7200, - "exists": "1", - "displaytitle": "SIGraDI2022" - }, - "Event:70a9ecdc-2ae2-4642-8d35-b97d7d5885f0": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SIMAUD 2023" - ], - "title": [ - "14th annual Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1684800000", - "raw": "1/2023/5/23" - } - ], - "end_date": [ - { - "timestamp": "1685059200", - "raw": "1/2023/5/26" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Mohawk College" - ], - "city": [ - "Hamilton" - ], - "region": [ - "Ontario" - ], - "country": [ - { - "fulltext": "Country:CA", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CA", - "namespace": 7400, - "exists": "1", - "displaytitle": "Canada (CA)" - } - ], - "website": [ - "http://simaud.org/2023/" - ], - "doi": [ - "10.25798/csk5-vk03" - ] - }, - "fulltext": "Event:70a9ecdc-2ae2-4642-8d35-b97d7d5885f0", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:70a9ecdc-2ae2-4642-8d35-b97d7d5885f0", - "namespace": 7200, - "exists": "1", - "displaytitle": "SIMAUD 2023" - }, - "Event:03aba977-c7f6-4c08-8a6f-6607f371b78a": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2010" - ], - "title": [ - "Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1271030400", - "raw": "1/2010/4/12" - } - ], - "end_date": [ - { - "timestamp": "1271289600", - "raw": "1/2010/4/15" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "The Florida Hotel" - ], - "city": [ - "Orlando" - ], - "region": [ - "Florida" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://www.simaud.org/2010/" - ], - "doi": [ - "10.25798/jpky-a739" - ] - }, - "fulltext": "Event:03aba977-c7f6-4c08-8a6f-6607f371b78a", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:03aba977-c7f6-4c08-8a6f-6607f371b78a", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2010" - }, - "Event:E5687a94-f3bd-4d82-8594-6758411b3e8b": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2011" - ], - "title": [ - "Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1301875200", - "raw": "1/2011/4/4" - } - ], - "end_date": [ - { - "timestamp": "1302134400", - "raw": "1/2011/4/7" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Boston Marriott Long Wharf" - ], - "city": [ - "Boston" - ], - "region": [ - "Massachusetts" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://www.simaud.org/2011/" - ], - "doi": [ - "10.25798/we02-ah37" - ] - }, - "fulltext": "Event:E5687a94-f3bd-4d82-8594-6758411b3e8b", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:E5687a94-f3bd-4d82-8594-6758411b3e8b", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2011" - }, - "Event:0230ebd0-2ee5-453d-9320-4535b215af5d": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2012" - ], - "title": [ - "Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1332720000", - "raw": "1/2012/3/26" - } - ], - "end_date": [ - { - "timestamp": "1333065600", - "raw": "1/2012/3/30" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "The Florida Hotel" - ], - "city": [ - "Orlando" - ], - "region": [ - "Florida" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://www.simaud.org/2012/" - ], - "doi": [ - "10.25798/wkq1-0f86" - ] - }, - "fulltext": "Event:0230ebd0-2ee5-453d-9320-4535b215af5d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:0230ebd0-2ee5-453d-9320-4535b215af5d", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2012" - }, - "Event:67de08d8-6896-44fe-a5cf-0809265481ee": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2013" - ], - "title": [ - "4th annual Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1365292800", - "raw": "1/2013/4/7" - } - ], - "end_date": [ - { - "timestamp": "1365552000", - "raw": "1/2013/4/10" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Bahia Resort Hotel" - ], - "city": [ - "San Diego" - ], - "region": [ - "California" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://www.simaud.org/2013/" - ], - "doi": [ - "10.25798/nsw2-0d50" - ] - }, - "fulltext": "Event:67de08d8-6896-44fe-a5cf-0809265481ee", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:67de08d8-6896-44fe-a5cf-0809265481ee", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2013" - }, - "Event:51093971-4878-4a82-8234-bd82a14128ee": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2014" - ], - "title": [ - "5th annual Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1397347200", - "raw": "1/2014/4/13" - } - ], - "end_date": [ - { - "timestamp": "1397606400", - "raw": "1/2014/4/16" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Grand Hyatt Tampa Bay" - ], - "city": [ - "Tampa" - ], - "region": [ - "Florida" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://www.simaud.org/2014/" - ], - "doi": [ - "10.25798/atcr-w358" - ] - }, - "fulltext": "Event:51093971-4878-4a82-8234-bd82a14128ee", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:51093971-4878-4a82-8234-bd82a14128ee", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2014" - }, - "Event:SimAUD 2015": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2015" - ], - "title": [ - "6th Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1428796800", - "raw": "1/2015/4/12" - } - ], - "end_date": [ - { - "timestamp": "1429056000", - "raw": "1/2015/4/15" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "The Westin Alexandria" - ], - "city": [ - "Alexandria" - ], - "region": [ - "Virginia" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://www.simaud.org/2015/" - ], - "doi": [ - "10.25798/x8z9-5543" - ] - }, - "fulltext": "Event:SimAUD 2015", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2015", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2015" - }, - "Event:SimAUD 2016": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2016" - ], - "title": [ - "7th Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1463356800", - "raw": "1/2016/5/16" - } - ], - "end_date": [ - { - "timestamp": "1463529600", - "raw": "1/2016/5/18" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "University College London" - ], - "city": [ - "London" - ], - "region": [], - "country": [ - { - "fulltext": "Country:GB", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", - "namespace": 7400, - "exists": "1", - "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" - } - ], - "website": [ - "http://www.simaud.com/2016/call_for_submissions.php" - ], - "doi": [ - "10.25798/3f0m-rn59" - ] - }, - "fulltext": "Event:SimAUD 2016", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2016", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2016" - }, - "Event:SimAUD 2017": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2017" - ], - "title": [ - "8th Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:University of Toronto", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:University_of_Toronto", - "namespace": 7500, - "exists": "1", - "displaytitle": "University of Toronto" - }, - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1495411200", - "raw": "1/2017/5/22" - } - ], - "end_date": [ - { - "timestamp": "1495584000", - "raw": "1/2017/5/24" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "University of Toronto" - ], - "city": [ - "Toronto" - ], - "region": [ - "Ontario" - ], - "country": [ - { - "fulltext": "Country:CA", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CA", - "namespace": 7400, - "exists": "1", - "displaytitle": "Canada (CA)" - } - ], - "website": [ - "http://www.simaud.org/2017/" - ], - "doi": [ - "10.25798/482p-mh80" - ] - }, - "fulltext": "Event:SimAUD 2017", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2017", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2017" - }, - "Event:SimAUD 2018": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2018" - ], - "title": [ - "9th Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - }, - { - "fulltext": "Organization:Delft University of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Delft_University_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Delft University of Technology" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1528070400", - "raw": "1/2018/6/4" - } - ], - "end_date": [ - { - "timestamp": "1528329600", - "raw": "1/2018/6/7" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Delft University of Technology" - ], - "city": [ - "Delft" - ], - "region": [], - "country": [ - { - "fulltext": "Country:NL", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:NL", - "namespace": 7400, - "exists": "1", - "displaytitle": "Netherlands (NL)" - } - ], - "website": [ - "http://www.simaud.org/2018/index.php" - ], - "doi": [ - "10.25798/cagj-ed47" - ] - }, - "fulltext": "Event:SimAUD 2018", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2018", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2018" - }, - "Event:SimAUD 2019": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2019" - ], - "title": [ - "10th Symposium on Simulation for Architecure and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Georgia Tech, College of Design, School of Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Georgia_Tech,_College_of_Design,_School_of_Architecture", - "namespace": 7500, - "exists": "1", - "displaytitle": "Georgia Tech, College of Design, School of Architecture" - }, - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1554595200", - "raw": "1/2019/4/7" - } - ], - "end_date": [ - { - "timestamp": "1554768000", - "raw": "1/2019/4/9" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "John and Joyce Caddell Building" - ], - "city": [ - "Atlanta" - ], - "region": [ - "Georgia" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://www.simaud.org/2019/index.php" - ], - "doi": [ - "10.25798/acnr-tq55" - ] - }, - "fulltext": "Event:SimAUD 2019", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2019", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2019" - }, - "Event:SimAUD 2020": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2020" - ], - "title": [ - "11th Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:TU Wien", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:TU_Wien", - "namespace": 7500, - "exists": "1", - "displaytitle": "TU Wien" - }, - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1590364800", - "raw": "1/2020/5/25" - } - ], - "end_date": [ - { - "timestamp": "1590537600", - "raw": "1/2020/5/27" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "http://www.simaud.org/2020/" - ], - "doi": [ - "10.25798/3fxp-0d40" - ] - }, - "fulltext": "Event:SimAUD 2020", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:SimAUD_2020", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2020" - }, - "Event:70e4c22a-ffe7-46ed-ab5c-7871f1d25200": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2021" - ], - "title": [ - "12th annual Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1618444800", - "raw": "1/2021/4/15" - } - ], - "end_date": [ - { - "timestamp": "1618617600", - "raw": "1/2021/4/17" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "http://www.simaud.org/2021/" - ], - "doi": [ - "10.25798/d015-m798" - ] - }, - "fulltext": "Event:70e4c22a-ffe7-46ed-ab5c-7871f1d25200", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:70e4c22a-ffe7-46ed-ab5c-7871f1d25200", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2021" - }, - "Event:19d75bde-5f50-4b76-bb6d-187242b4d3ef": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Urban Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Urban_Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Urban Design" - } - ], - "acronym": [ - "SimAUD 2022" - ], - "title": [ - "13th annual Symposium on Simulation for Architecture and Urban Design" - ], - "creator": [ - { - "fulltext": "Organization:Society for Modeling and Simulation International", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Society_for_Modeling_and_Simulation_International", - "namespace": 7500, - "exists": "1", - "displaytitle": "Society for Modeling and Simulation International" - } - ], - "in_series": [ - { - "fulltext": "Event Series:SimAUD", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:SimAUD", - "namespace": 7100, - "exists": "1", - "displaytitle": "SimAUD - Symposium on Simulation for Architecture and Urban Design" - } - ], - "start_date": [ - { - "timestamp": "1658016000", - "raw": "1/2022/7/17" - } - ], - "end_date": [ - { - "timestamp": "1658188800", - "raw": "1/2022/7/19" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Conrad Prebys Aztec Student Union" - ], - "city": [ - "San Diego" - ], - "region": [ - "California" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "http://www.simaud.org/2022/" - ], - "doi": [ - "10.25798/6h4c-cp83" - ] - }, - "fulltext": "Event:19d75bde-5f50-4b76-bb6d-187242b4d3ef", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:19d75bde-5f50-4b76-bb6d-187242b4d3ef", - "namespace": 7200, - "exists": "1", - "displaytitle": "SimAUD 2022" - }, - "Event:Ec16e16b-e7bb-4c61-aa3c-8815b054b688": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Education", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Education", - "namespace": 7300, - "exists": "1", - "displaytitle": "Education" - }, - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "TT 2021" - ], - "title": [ - "TYPOLOGY TALKS #1" - ], - "creator": [ - { - "fulltext": "Organization:Faculty of Architecture and Landscape, Leibniz University Hanover", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture_and_Landscape,_Leibniz_University_Hanover", - "namespace": 7500, - "exists": "1", - "displaytitle": "Faculty of Architecture and Landscape, Leibniz University Hanover" - } - ], - "in_series": [ - { - "fulltext": "Event Series:B5a4a389-aa41-4d75-881b-9b888fd7c7be", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:B5a4a389-aa41-4d75-881b-9b888fd7c7be", - "namespace": 7100, - "exists": "1", - "displaytitle": "TT - Typology Talks" - } - ], - "start_date": [ - { - "timestamp": "1634688000", - "raw": "1/2021/10/20" - } - ], - "end_date": [ - { - "timestamp": "1634688000", - "raw": "1/2021/10/20" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "https://www.entwerfen.uni-hannover.de/de/kempethill/forschung-und-publikationen/typology-talks-1" - ], - "doi": [ - "10.25798/ryzs-f833" - ] - }, - "fulltext": "Event:Ec16e16b-e7bb-4c61-aa3c-8815b054b688", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:Ec16e16b-e7bb-4c61-aa3c-8815b054b688", - "namespace": 7200, - "exists": "1", - "displaytitle": "TT 2021" - }, - "Event:9c09a880-070e-4118-93ed-e11e1d0809cc": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Education", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Education", - "namespace": 7300, - "exists": "1", - "displaytitle": "Education" - }, - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "TT 2022" - ], - "title": [ - "TYPOLOGY TALKS #2 - LEARNING LANDSCAPES" - ], - "creator": [ - { - "fulltext": "Organization:Faculty of Architecture and Landscape, Leibniz University Hanover", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture_and_Landscape,_Leibniz_University_Hanover", - "namespace": 7500, - "exists": "1", - "displaytitle": "Faculty of Architecture and Landscape, Leibniz University Hanover" - } - ], - "in_series": [ - { - "fulltext": "Event Series:B5a4a389-aa41-4d75-881b-9b888fd7c7be", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:B5a4a389-aa41-4d75-881b-9b888fd7c7be", - "namespace": 7100, - "exists": "1", - "displaytitle": "TT - Typology Talks" - } - ], - "start_date": [ - { - "timestamp": "1665619200", - "raw": "1/2022/10/13" - } - ], - "end_date": [ - { - "timestamp": "1665619200", - "raw": "1/2022/10/13" - } - ], - "event_mode": [ - "hybrid" - ], - "venue": [], - "city": [ - "Hanover" - ], - "region": [ - "Lower Saxony" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.entwerfen.uni-hannover.de/de/kempethill/forschung-und-publikationen/typology-talks-2" - ], - "doi": [ - "10.25798/n9mh-vf19" - ] - }, - "fulltext": "Event:9c09a880-070e-4118-93ed-e11e1d0809cc", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:9c09a880-070e-4118-93ed-e11e1d0809cc", - "namespace": 7200, - "exists": "1", - "displaytitle": "TT 2022" - }, - "Event:32e6b42c-f04b-4ecd-aa74-49ce80374d65": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "Zukunft Bau Kongress 2019" - ], - "creator": [ - { - "fulltext": "Organization:Bundesministerium des Innern, für Bau und Heimat (BMI)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesministerium_des_Innern,_f%C3%BCr_Bau_und_Heimat_(BMI)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesministerium des Innern, für Bau und Heimat (BMI)" - }, - { - "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung_(BBSR)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)" - } - ], - "in_series": [ - { - "fulltext": "Event Series:20ff421f-a551-43d4-914a-14a05baf7428", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:20ff421f-a551-43d4-914a-14a05baf7428", - "namespace": 7100, - "exists": "1", - "displaytitle": "Zukunft Bau Kongress" - } - ], - "start_date": [ - { - "timestamp": "1575331200", - "raw": "1/2019/12/3" - } - ], - "end_date": [ - { - "timestamp": "1575417600", - "raw": "1/2019/12/4" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Bundeshaus" - ], - "city": [ - "Bonn" - ], - "region": [ - "North Rhine-Westphalia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.zukunftbau.de/veranstaltungen/zukunft-bau-kongresse/2019" - ], - "doi": [ - "10.25798/hxbx-eg02" - ] - }, - "fulltext": "Event:32e6b42c-f04b-4ecd-aa74-49ce80374d65", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:32e6b42c-f04b-4ecd-aa74-49ce80374d65", - "namespace": 7200, - "exists": "1", - "displaytitle": "Zukunft Bau Kongress 2019" - }, - "Event:44dc6929-92af-409e-8856-8bfb6da0f77d": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "Zukunft Bau Kongress 2021" - ], - "creator": [ - { - "fulltext": "Organization:Bundesministerium des Innern, für Bau und Heimat (BMI)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesministerium_des_Innern,_f%C3%BCr_Bau_und_Heimat_(BMI)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesministerium des Innern, für Bau und Heimat (BMI)" - }, - { - "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung_(BBSR)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)" - } - ], - "in_series": [ - { - "fulltext": "Event Series:20ff421f-a551-43d4-914a-14a05baf7428", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:20ff421f-a551-43d4-914a-14a05baf7428", - "namespace": 7100, - "exists": "1", - "displaytitle": "Zukunft Bau Kongress" - } - ], - "start_date": [ - { - "timestamp": "1637193600", - "raw": "1/2021/11/18" - } - ], - "end_date": [ - { - "timestamp": "1637280000", - "raw": "1/2021/11/19" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Bundeshaus" - ], - "city": [ - "Bonn" - ], - "region": [ - "North Rhine-Westphalia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.zukunftbau.de/veranstaltungen/zukunft-bau-kongresse/2021" - ], - "doi": [ - "10.25798/vb0d-ng63" - ] - }, - "fulltext": "Event:44dc6929-92af-409e-8856-8bfb6da0f77d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:44dc6929-92af-409e-8856-8bfb6da0f77d", - "namespace": 7200, - "exists": "1", - "displaytitle": "Zukunft Bau Kongress 2021" - }, - "Event:6a4a653e-1002-4f63-bd37-6d5c1475bd6d": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Building Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Building_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Building Engineering" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [], - "title": [ - "Zukunft Bau Kongress 2023" - ], - "creator": [ - { - "fulltext": "Organization:Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesinstitut_f%C3%BCr_Bau-,_Stadt-_und_Raumforschung_(BBSR)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR)" - }, - { - "fulltext": "Organization:Bundesministerium des Innern, für Bau und Heimat (BMI)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Bundesministerium_des_Innern,_f%C3%BCr_Bau_und_Heimat_(BMI)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Bundesministerium des Innern, für Bau und Heimat (BMI)" - } - ], - "in_series": [ - { - "fulltext": "Event Series:20ff421f-a551-43d4-914a-14a05baf7428", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:20ff421f-a551-43d4-914a-14a05baf7428", - "namespace": 7100, - "exists": "1", - "displaytitle": "Zukunft Bau Kongress" - } - ], - "start_date": [ - { - "timestamp": "1700697600", - "raw": "1/2023/11/23" - } - ], - "end_date": [ - { - "timestamp": "1700784000", - "raw": "1/2023/11/24" - } - ], - "event_mode": [ - "hybrid" - ], - "venue": [ - "WCCB Bonn" - ], - "city": [ - "Bonn" - ], - "region": [ - "North Rhine-Westphalia" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://www.zukunftbau.de/termine/zukunft-bau-kongress-2023" - ], - "doi": [ - "10.25798/pq0c-mw39" - ] - }, - "fulltext": "Event:6a4a653e-1002-4f63-bd37-6d5c1475bd6d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:6a4a653e-1002-4f63-bd37-6d5c1475bd6d", - "namespace": 7200, - "exists": "1", - "displaytitle": "Zukunft Bau Kongress 2023" - }, - "Event:A4f00ae5-dea4-4598-a06b-0fbd24c5b0cd": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "eCAADe 2020" - ], - "title": [ - "38th Education and research in Computer Aided Architectural Design in Europe Conference" - ], - "creator": [ - { - "fulltext": "Organization:Education and Research in Computer Aided Architectural Design in Europe", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Education_and_Research_in_Computer_Aided_Architectural_Design_in_Europe", - "namespace": 7500, - "exists": "1", - "displaytitle": "Education and Research in Computer Aided Architectural Design in Europe" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", - "namespace": 7100, - "exists": "1", - "displaytitle": "eCAADe - Conference on Education and research in Computer Aided Architectural Design in Europe" - } - ], - "start_date": [ - { - "timestamp": "1600214400", - "raw": "1/2020/9/16" - } - ], - "end_date": [ - { - "timestamp": "1600387200", - "raw": "1/2020/9/18" - } - ], - "event_mode": [ - "online" - ], - "venue": [], - "city": [], - "region": [], - "country": [], - "website": [ - "http://www.ecaade.org/prev-conf/archive/ecaade2020/" - ], - "doi": [ - "10.25798/ajxc-cj93" - ] - }, - "fulltext": "Event:A4f00ae5-dea4-4598-a06b-0fbd24c5b0cd", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:A4f00ae5-dea4-4598-a06b-0fbd24c5b0cd", - "namespace": 7200, - "exists": "1", - "displaytitle": "eCAADe 2020" - }, - "Event:Ecfedc22-1a0e-4e9d-a5a8-5c65188be5a6": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "eCAADe 2021" - ], - "title": [ - "39th Education and research in Computer Aided Architectural Design in Europe Conference" - ], - "creator": [ - { - "fulltext": "Organization:Education and Research in Computer Aided Architectural Design in Europe", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Education_and_Research_in_Computer_Aided_Architectural_Design_in_Europe", - "namespace": 7500, - "exists": "1", - "displaytitle": "Education and Research in Computer Aided Architectural Design in Europe" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", - "namespace": 7100, - "exists": "1", - "displaytitle": "eCAADe - Conference on Education and research in Computer Aided Architectural Design in Europe" - } - ], - "start_date": [ - { - "timestamp": "1631059200", - "raw": "1/2021/9/8" - } - ], - "end_date": [ - { - "timestamp": "1631232000", - "raw": "1/2021/9/10" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Rektorat" - ], - "city": [ - "Novi Sad" - ], - "region": [ - "Južnobački okrug" - ], - "country": [ - { - "fulltext": "Country:RS", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:RS", - "namespace": 7400, - "exists": "1", - "displaytitle": "Serbia (RS)" - } - ], - "website": [ - "http://www.ecaade.org/prev-conf/archive/ecaade2021/eCAADe2021/www.ecaade2021.ftn.uns.ac.rs/index.html" - ], - "doi": [ - "10.25798/5f51-3a36" - ] - }, - "fulltext": "Event:Ecfedc22-1a0e-4e9d-a5a8-5c65188be5a6", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:Ecfedc22-1a0e-4e9d-a5a8-5c65188be5a6", - "namespace": 7200, - "exists": "1", - "displaytitle": "eCAADe 2021" - }, - "Event:89ca2e86-d081-43ba-9a6e-499ab1747d95": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "eCAADe 2022" - ], - "title": [ - "40th Education and research in Computer Aided Architectural Design in Europe Conference" - ], - "creator": [ - { - "fulltext": "Organization:Education and Research in Computer Aided Architectural Design in Europe", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Education_and_Research_in_Computer_Aided_Architectural_Design_in_Europe", - "namespace": 7500, - "exists": "1", - "displaytitle": "Education and Research in Computer Aided Architectural Design in Europe" - }, - { - "fulltext": "Organization:Faculty of Architecture, KU Leuven", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Faculty_of_Architecture,_KU_Leuven", - "namespace": 7500, - "exists": "1", - "displaytitle": "Faculty of Architecture, KU Leuven" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", - "namespace": 7100, - "exists": "1", - "displaytitle": "eCAADe - Conference on Education and research in Computer Aided Architectural Design in Europe" - } - ], - "start_date": [ - { - "timestamp": "1663027200", - "raw": "1/2022/9/13" - } - ], - "end_date": [ - { - "timestamp": "1663286400", - "raw": "1/2022/9/16" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Technologiecampus Odisee" - ], - "city": [ - "Ghent" - ], - "region": [ - "Oost-Vlaanderen" - ], - "country": [ - { - "fulltext": "Country:BE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:BE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Belgium (BE)" - } - ], - "website": [ - "https://kuleuven.ecaade2022.be/" - ], - "doi": [ - "10.25798/830j-av15" - ] - }, - "fulltext": "Event:89ca2e86-d081-43ba-9a6e-499ab1747d95", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:89ca2e86-d081-43ba-9a6e-499ab1747d95", - "namespace": 7200, - "exists": "1", - "displaytitle": "eCAADe 2022" - }, - "Event:Ebce85e4-052c-41cc-be2b-393120789bde": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "eCAADe 2023" - ], - "title": [ - "41th Education and research in Computer Aided Architectural Design in Europe Conference" - ], - "creator": [ - { - "fulltext": "Organization:Graz University of Technology", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Graz_University_of_Technology", - "namespace": 7500, - "exists": "1", - "displaytitle": "Graz University of Technology" - }, - { - "fulltext": "Organization:Education and Research in Computer Aided Architectural Design in Europe", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Education_and_Research_in_Computer_Aided_Architectural_Design_in_Europe", - "namespace": 7500, - "exists": "1", - "displaytitle": "Education and Research in Computer Aided Architectural Design in Europe" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A8fbce5e-bf52-44ca-90d3-27486872afbe", - "namespace": 7100, - "exists": "1", - "displaytitle": "eCAADe - Conference on Education and research in Computer Aided Architectural Design in Europe" - } - ], - "start_date": [ - { - "timestamp": "1695168000", - "raw": "1/2023/9/20" - } - ], - "end_date": [ - { - "timestamp": "1695427200", - "raw": "1/2023/9/23" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Graz University of Technology" - ], - "city": [ - "Graz" - ], - "region": [ - "Styria" - ], - "country": [ - { - "fulltext": "Country:AT", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:AT", - "namespace": 7400, - "exists": "1", - "displaytitle": "Austria (AT)" - } - ], - "website": [ - "https://ecaade2023.tugraz.at/" - ], - "doi": [ - "10.25798/pzb8-9g95" - ] - }, - "fulltext": "Event:Ebce85e4-052c-41cc-be2b-393120789bde", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:Ebce85e4-052c-41cc-be2b-393120789bde", - "namespace": 7200, - "exists": "1", - "displaytitle": "eCAADe 2023" - }, - "Event:C42ed88b-2a3d-4355-81b4-bc0a95460e47": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - } - ], - "acronym": [ - "rca 2018" - ], - "title": [ - "Research Culture in Architecture - International Conference on Cross-Disciplinary Collaboration" - ], - "creator": [ - { - "fulltext": "Organization:Research Culture in Architecture (RCA)", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Research_Culture_in_Architecture_(RCA)", - "namespace": 7500, - "exists": "1", - "displaytitle": "Research Culture in Architecture (RCA)" - }, - { - "fulltext": "Organization:Fatuk – Faculty of Architecture, TU Kaiserslautern", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:Fatuk_%E2%80%93_Faculty_of_Architecture,_TU_Kaiserslautern", - "namespace": 7500, - "exists": "1", - "displaytitle": "Fatuk – Faculty of Architecture, TU Kaiserslautern" - } - ], - "in_series": [ - { - "fulltext": "Event Series:A4a71a48-7b96-49c1-bd51-8c9c13ce45be", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:A4a71a48-7b96-49c1-bd51-8c9c13ce45be", - "namespace": 7100, - "exists": "1", - "displaytitle": "RCA - Research Culture in Architecture – International Conference on Cross-Disciplinary Collaboration in Architecture" - } - ], - "start_date": [ - { - "timestamp": "1538006400", - "raw": "1/2018/9/27" - } - ], - "end_date": [ - { - "timestamp": "1538092800", - "raw": "1/2018/9/28" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Faculty of Architecture, Technical University of Kaiserslautern" - ], - "city": [ - "Kaiserslautern" - ], - "region": [ - "Rhineland-Palatinate" - ], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [ - "https://rca2018.architektur.uni-kl.de/" - ], - "doi": [] - }, - "fulltext": "Event:C42ed88b-2a3d-4355-81b4-bc0a95460e47", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:C42ed88b-2a3d-4355-81b4-bc0a95460e47", - "namespace": 7200, - "exists": "1", - "displaytitle": "rca 2018" - }, - "Event:A343d41d-7491-4ad1-89bd-c6cfa510b9b2": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2008" - ], - "title": [ - "2008 SmartGeometry Conference" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1207180800", - "raw": "1/2008/4/3" - } - ], - "end_date": [ - { - "timestamp": "1207353600", - "raw": "1/2008/4/5" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "BMW Welt" - ], - "city": [ - "Munich" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Germany (DE)" - } - ], - "website": [], - "doi": [ - "10.25798/cc3c-cc88" - ] - }, - "fulltext": "Event:A343d41d-7491-4ad1-89bd-c6cfa510b9b2", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:A343d41d-7491-4ad1-89bd-c6cfa510b9b2", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2008" - }, - "Event:4b26c837-89d0-4d46-b4a7-54139af566c3": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2009" - ], - "title": [ - "2009 SmartGeometry Conference - Building Vision" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1237939200", - "raw": "1/2009/3/25" - } - ], - "end_date": [ - { - "timestamp": "1238544000", - "raw": "1/2009/4/1" - } - ], - "event_mode": [ - "on site" - ], - "venue": [], - "city": [ - "San Francisco" - ], - "region": [ - "CA" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "https://www.smartgeometry.org/sg2009-san-francisco" - ], - "doi": [ - "10.25798/efha-ex10" - ] - }, - "fulltext": "Event:4b26c837-89d0-4d46-b4a7-54139af566c3", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:4b26c837-89d0-4d46-b4a7-54139af566c3", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2009" - }, - "Event:04e4bd12-8888-48c4-979b-9b9a8d00d539": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2010" - ], - "title": [ - "2010 Smartgeometry Conference - Working Prototypes" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1268956800", - "raw": "1/2010/3/19" - } - ], - "end_date": [ - { - "timestamp": "1269388800", - "raw": "1/2010/3/24" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Institute for Advanced Architecture of Catalonia" - ], - "city": [ - "Barcelona" - ], - "region": [], - "country": [ - { - "fulltext": "Country:ES", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:ES", - "namespace": 7400, - "exists": "1", - "displaytitle": "Spain (ES)" - } - ], - "website": [ - "https://www.smartgeometry.org/sg2010-barcelona" - ], - "doi": [ - "10.25798/5ak8-nn24" - ] - }, - "fulltext": "Event:04e4bd12-8888-48c4-979b-9b9a8d00d539", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:04e4bd12-8888-48c4-979b-9b9a8d00d539", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2010" - }, - "Event:Dfc82b4e-179d-4e1c-bc0c-cc644225b3ec": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2011" - ], - "title": [ - "2011 Smartgeometry Conference - Building The Invisible" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1301270400", - "raw": "1/2011/3/28" - } - ], - "end_date": [ - { - "timestamp": "1301702400", - "raw": "1/2011/4/2" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Center for Information Technology and Architecture" - ], - "city": [ - "Copenhagen" - ], - "region": [], - "country": [ - { - "fulltext": "Country:DK", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:DK", - "namespace": 7400, - "exists": "1", - "displaytitle": "Denmark (DK)" - } - ], - "website": [ - "https://www.smartgeometry.org/sg2011-copenhagen" - ], - "doi": [ - "10.25798/y1s4-x603" - ] - }, - "fulltext": "Event:Dfc82b4e-179d-4e1c-bc0c-cc644225b3ec", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:Dfc82b4e-179d-4e1c-bc0c-cc644225b3ec", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2011" - }, - "Event:A397ccbd-0308-4f7f-be97-1c13ab4df957": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2012" - ], - "title": [ - "2012 Smartgeometry Conference - Material Intensities: Simulation, Energy, Environment" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1332115200", - "raw": "1/2012/3/19" - } - ], - "end_date": [ - { - "timestamp": "1332547200", - "raw": "1/2012/3/24" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Rensselaer Polytechnic Institute" - ], - "city": [ - "Troy" - ], - "region": [ - "New York" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "https://www.smartgeometry.org/sg2012-troy" - ], - "doi": [ - "10.25798/dv3e-fa91" - ] - }, - "fulltext": "Event:A397ccbd-0308-4f7f-be97-1c13ab4df957", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:A397ccbd-0308-4f7f-be97-1c13ab4df957", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2012" - }, - "Event:4ef0db92-733c-4881-ba16-800e9ba38110": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2013" - ], - "title": [ - "2013 Smartgeometry Conference - Constructing for Uncertainty" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1365984000", - "raw": "1/2013/4/15" - } - ], - "end_date": [ - { - "timestamp": "1366416000", - "raw": "1/2013/4/20" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "The Bartlett" - ], - "city": [ - "London" - ], - "region": [], - "country": [ - { - "fulltext": "Country:GB", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:GB", - "namespace": 7400, - "exists": "1", - "displaytitle": "United Kingdom of Great Britain and Northern Ireland (GB)" - } - ], - "website": [ - "https://www.smartgeometry.org/sg2013-london" - ], - "doi": [ - "10.25798/1hdv-bh63" - ] - }, - "fulltext": "Event:4ef0db92-733c-4881-ba16-800e9ba38110", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:4ef0db92-733c-4881-ba16-800e9ba38110", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2013" - }, - "Event:Fd5ef231-c45c-4912-8cfd-4bbb4827602d": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2014" - ], - "title": [ - "2014 Smartgeometry Conference - Urban Compaction" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1405296000", - "raw": "1/2014/7/14" - } - ], - "end_date": [ - { - "timestamp": "1405728000", - "raw": "1/2014/7/19" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Chinese University of Hong Kong" - ], - "city": [ - "Hong Kong" - ], - "region": [], - "country": [ - { - "fulltext": "Country:CN", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CN", - "namespace": 7400, - "exists": "1", - "displaytitle": "China (CN)" - } - ], - "website": [ - "https://www.smartgeometry.org/sg2014-hong-kong" - ], - "doi": [ - "10.25798/ap4z-eb78" - ] - }, - "fulltext": "Event:Fd5ef231-c45c-4912-8cfd-4bbb4827602d", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:Fd5ef231-c45c-4912-8cfd-4bbb4827602d", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2014" - }, - "Event:9530ef08-cf54-4d46-8e9e-0516bb798166": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2016" - ], - "title": [ - "2016 Smartgeometry Conference - Hybrid Domains" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1459728000", - "raw": "1/2016/4/4" - } - ], - "end_date": [ - { - "timestamp": "1460160000", - "raw": "1/2016/4/9" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Chalmers University of Technology" - ], - "city": [ - "Gothenburg" - ], - "region": [], - "country": [ - { - "fulltext": "Country:SE", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:SE", - "namespace": 7400, - "exists": "1", - "displaytitle": "Sweden (SE)" - } - ], - "website": [ - "https://www.smartgeometry.org/sg2016-gothenburg" - ], - "doi": [ - "10.25798/6m8r-8z16" - ] - }, - "fulltext": "Event:9530ef08-cf54-4d46-8e9e-0516bb798166", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:9530ef08-cf54-4d46-8e9e-0516bb798166", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2016" - }, - "Event:078b109d-7552-41bb-bfc3-91f4f700f9c4": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2018" - ], - "title": [ - "2018 Smartgeometry Conference - Machine Minds" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1523059200", - "raw": "1/2018/4/7" - } - ], - "end_date": [ - { - "timestamp": "1523491200", - "raw": "1/2018/4/12" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "John H. Daniels Faculty of Architecture, Landscape, and Design" - ], - "city": [ - "CA/ON/Toronto" - ], - "region": [ - "Ontario" - ], - "country": [ - { - "fulltext": "Country:CA", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:CA", - "namespace": 7400, - "exists": "1", - "displaytitle": "Canada (CA)" - } - ], - "website": [ - "https://www.smartgeometry.org/sg2018-toronto" - ], - "doi": [ - "10.25798/zsma-9q10" - ] - }, - "fulltext": "Event:078b109d-7552-41bb-bfc3-91f4f700f9c4", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:078b109d-7552-41bb-bfc3-91f4f700f9c4", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2018" - }, - "Event:0192c1e5-1c4a-455a-853d-160ad09f82a5": { - "printouts": { - "subject": [ - { - "fulltext": "Academic Field:Architecture", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Architecture", - "namespace": 7300, - "exists": "1", - "displaytitle": "Architecture" - }, - { - "fulltext": "Academic Field:Design", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Design", - "namespace": 7300, - "exists": "1", - "displaytitle": "Design" - }, - { - "fulltext": "Academic Field:Civil Engineering", - "fullurl": "https://www.confident-conference.org:443/index.php/Academic_Field:Civil_Engineering", - "namespace": 7300, - "exists": "1", - "displaytitle": "Civil Engineering" - } - ], - "acronym": [ - "sg2020" - ], - "title": [ - "2020 Smartgeometry Conference - Vision" - ], - "creator": [ - { - "fulltext": "Organization:SmartGeometry Group", - "fullurl": "https://www.confident-conference.org:443/index.php/Organization:SmartGeometry_Group", - "namespace": 7500, - "exists": "1", - "displaytitle": "SmartGeometry Group" - } - ], - "in_series": [ - { - "fulltext": "Event Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event_Series:5ca06c7c-465b-4899-9282-3a0cecaae3a5", - "namespace": 7100, - "exists": "1", - "displaytitle": "sg - Smartgeometry" - } - ], - "start_date": [ - { - "timestamp": "1609459200", - "raw": "1/2021" - } - ], - "end_date": [ - { - "timestamp": "1609459200", - "raw": "1/2021" - } - ], - "event_mode": [ - "on site" - ], - "venue": [ - "Carnegie Mellon University" - ], - "city": [ - "Pittsburgh" - ], - "region": [ - "Pennsylvania" - ], - "country": [ - { - "fulltext": "Country:US", - "fullurl": "https://www.confident-conference.org:443/index.php/Country:US", - "namespace": 7400, - "exists": "1", - "displaytitle": "United States of America (US)" - } - ], - "website": [ - "https://www.smartgeometry.org" - ], - "doi": [] - }, - "fulltext": "Event:0192c1e5-1c4a-455a-853d-160ad09f82a5", - "fullurl": "https://www.confident-conference.org:443/index.php/Event:0192c1e5-1c4a-455a-853d-160ad09f82a5", - "namespace": 7200, - "exists": "1", - "displaytitle": "sg2020" - } - }, - "serializer": "SMW\\Serializers\\QueryResultSerializer", - "version": 2, - "rows": 116 -} \ No newline at end of file