diff --git a/arches_references/management/commands/controlled_lists.py b/arches_references/management/commands/controlled_lists.py
index 17f9ec3..41c53ca 100644
--- a/arches_references/management/commands/controlled_lists.py
+++ b/arches_references/management/commands/controlled_lists.py
@@ -1,6 +1,20 @@
-from arches.app.models.models import Value, Language
+from arches.app.models.fields.i18n import I18n_JSONField
+from arches.app.models.models import (
+ CardXNodeXWidget,
+ GraphModel,
+ Language,
+ Node,
+ Value,
+ Widget,
+)
+from arches.app.models.graph import Graph
from arches_references.models import List
+from django.core.exceptions import ValidationError
from django.core.management.base import BaseCommand, CommandError
+from django.db import models, transaction
+from django.db.models.expressions import CombinedExpression
+from django.db.models.fields.json import KT
+from django.db.models.functions import Cast
class Command(BaseCommand):
@@ -16,7 +30,10 @@ def add_arguments(self, parser):
action="store",
dest="operation",
required=True,
- choices=["migrate_collections_to_controlled_lists"],
+ choices=[
+ "migrate_collections_to_controlled_lists",
+ "migrate_concept_nodes_to_reference_datatype",
+ ],
help="The operation to perform",
)
@@ -26,7 +43,6 @@ def add_arguments(self, parser):
action="store",
dest="collections_to_migrate",
nargs="*",
- required=True,
help="One or more collections to migrate to controlled lists",
)
@@ -57,6 +73,14 @@ def add_arguments(self, parser):
help="The language to use for sorting preferred labels. Default 'en'",
)
+ parser.add_argument(
+ "-g",
+ "--graph",
+ action="store",
+ dest="graph",
+ help="The graphid which associated concept nodes will be migrated to use the reference datatype",
+ )
+
def handle(self, *args, **options):
if options["operation"] == "migrate_collections_to_controlled_lists":
psl = options["preferred_sort_language"]
@@ -69,6 +93,9 @@ def handle(self, *args, **options):
)
)
+ if options["collections_to_migrate"] is None:
+ raise CommandError("No collections provided to migrate.")
+
if not options["overwrite"]:
for collection_name in options["collections_to_migrate"]:
if List.objects.filter(name=collection_name).exists():
@@ -82,6 +109,8 @@ def handle(self, *args, **options):
overwrite=options["overwrite"],
preferred_sort_language=psl,
)
+ elif options["operation"] == "migrate_concept_nodes_to_reference_datatype":
+ self.migrate_concept_nodes_to_reference_datatype(options["graph"])
def migrate_collections_to_controlled_lists(
self,
@@ -139,3 +168,123 @@ def migrate_collections_to_controlled_lists(
)
result = cursor.fetchone()
self.stdout.write(result[0])
+
+ def migrate_concept_nodes_to_reference_datatype(self, graph_id):
+ try:
+ source_graph = GraphModel.objects.get(pk=graph_id)
+ except (GraphModel.DoesNotExist, ValidationError) as e:
+ raise CommandError(e)
+
+ nodes = (
+ Node.objects.filter(
+ graph_id=source_graph.graphid,
+ datatype__in=["concept", "concept-list"],
+ is_immutable=False,
+ )
+ .annotate(
+ collection_id=Cast(
+ KT("config__rdmCollection"),
+ output_field=models.UUIDField(),
+ )
+ )
+ .prefetch_related("cardxnodexwidget_set")
+ )
+
+ if len(nodes) == 0:
+ raise CommandError(
+ "No concept/concept-list nodes found for the {0} graph".format(
+ source_graph.name
+ )
+ )
+
+ REFERENCE_SELECT_WIDGET = Widget.objects.get(name="reference-select-widget")
+ controlled_list_ids = List.objects.all().values_list("id", flat=True)
+
+ errors = []
+ with transaction.atomic():
+ for node in nodes:
+ if node.collection_id in controlled_list_ids:
+ if node.datatype == "concept":
+ node.config = {
+ "multiValue": False,
+ "controlledList": str(node.collection_id),
+ }
+ elif node.datatype == "concept-list":
+ node.config = {
+ "multiValue": True,
+ "controlledList": str(node.collection_id),
+ }
+ node.datatype = "reference"
+ node.full_clean()
+ node.save()
+
+ cross_records = (
+ node.cardxnodexwidget_set.annotate(
+ config_without_i18n=Cast(
+ models.F("config"),
+ output_field=models.JSONField(),
+ )
+ )
+ .annotate(
+ without_default=CombinedExpression(
+ models.F("config_without_i18n"),
+ "-",
+ models.Value(
+ "defaultValue", output_field=models.CharField()
+ ),
+ output_field=models.JSONField(),
+ )
+ )
+ .annotate(
+ without_default_and_options=CombinedExpression(
+ models.F("without_default"),
+ "-",
+ models.Value(
+ "options", output_field=models.CharField()
+ ),
+ output_field=I18n_JSONField(),
+ )
+ )
+ )
+ for cross_record in cross_records:
+ # work around for i18n as_sql method issue detailed here: https://github.com/archesproject/arches/issues/11473
+ cross_record.config = {}
+ cross_record.save()
+
+ cross_record.config = cross_record.without_default_and_options
+ cross_record.widget = REFERENCE_SELECT_WIDGET
+ cross_record.full_clean()
+ cross_record.save()
+
+ elif node.collection_id not in controlled_list_ids:
+ errors.append(
+ {"node_alias": node.alias, "collection_id": node.collection_id}
+ )
+
+ if errors:
+ self.stderr.write(
+ "The following collections for the associated nodes have not been migrated to controlled lists:"
+ )
+ for error in errors:
+ self.stderr.write(
+ "Node alias: {0}, Collection ID: {1}".format(
+ error["node_alias"], error["collection_id"]
+ )
+ )
+ else:
+ source_graph = Graph.objects.get(pk=graph_id)
+
+ # Refresh the nodes to ensure the changes are reflected in the serialized graph
+ for node in source_graph.nodes.values():
+ node.refresh_from_db()
+
+ source_graph.create_editable_future_graph()
+ source_graph.publish(
+ notes="Migrated concept/concept-list nodes to reference datatype"
+ )
+
+ self.stdout.write(
+ "All concept/concept-list nodes for the {0} graph have been successfully migrated to reference datatype".format(
+ source_graph.name
+ )
+ )
diff --git a/tests/cli_tests.py b/tests/cli_tests.py
index b50ef6c..4b1fb72 100644
--- a/tests/cli_tests.py
+++ b/tests/cli_tests.py
@@ -8,8 +8,9 @@
from django.test.utils import captured_stdout
from django.core.management.base import CommandError
-from arches_references.models import List, ListItem, ListItemValue
+from arches.app.models.models import Node
from arches.app.utils.skos import SKOSReader
+from arches_references.models import List, ListItem, ListItemValue
from .test_settings import PROJECT_TEST_ROOT
@@ -155,3 +156,80 @@ def test_no_matching_language_error(self):
stderr=output,
)
self.assertEqual(expected_output, str(e.exception))
+
+
+class MigrateConceptNodesToReferenceDatatypeTests(TestCase):
+ # Test data has three models:
+ # - `Concept Node Migration Test`, with four concept nodes
+ # - `Collection Not Migrated`, with one concept node but the collection hasn't been migrated
+ # - `No concept nodes`, only has a string and a number node
+ # Contains a Collection "Top Concept", which has been migrated to a controlled list
+ fixtures = ["concept_node_migration_test_data"]
+
+ def test_migrate_concept_nodes_to_reference_datatype(self):
+ output = io.StringIO()
+ TEST_GRAPH_ID = "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81"
+
+ management.call_command(
+ "controlled_lists",
+ operation="migrate_concept_nodes_to_reference_datatype",
+ graph=TEST_GRAPH_ID,
+ stdout=output,
+ )
+
+ nodes = Node.objects.filter(graph_id=TEST_GRAPH_ID).prefetch_related(
+ "cardxnodexwidget_set"
+ )
+ reference_nodes = nodes.filter(datatype="reference")
+
+ self.assertEqual(len(nodes.filter(datatype__in=["concept", "concept-list"])), 0)
+ self.assertEqual(len(reference_nodes), 4)
+
+ expected_node_config_keys = ["multiValue", "controlledList"]
+ expected_widget_config_keys = ["label", "placeholder", "i18n_properties"]
+ for node in reference_nodes:
+ self.assertEqual(expected_node_config_keys, list(node.config.keys()))
+ for widget in node.cardxnodexwidget_set.all():
+ self.assertEqual(
+ expected_widget_config_keys, list(widget.config.keys())
+ )
+
+ def test_no_matching_graph_error(self):
+ output = io.StringIO()
+ expected_output = "GraphModel matching query does not exist."
+
+ with self.assertRaises(CommandError) as e:
+ management.call_command(
+ "controlled_lists",
+ operation="migrate_concept_nodes_to_reference_datatype",
+ graph="00000000-0000-0000-0000-000000000000",
+ stderr=output,
+ )
+ self.assertEqual(str(e.exception), expected_output)
+
+ def test_no_concept_nodes_error(self):
+ output = io.StringIO()
+ expected_output = (
+ "No concept/concept-list nodes found for the No concept nodes graph"
+ )
+
+ with self.assertRaises(CommandError) as e:
+ management.call_command(
+ "controlled_lists",
+ operation="migrate_concept_nodes_to_reference_datatype",
+ graph="fc46b399-c824-45e5-86e2-5b992b8fa619",
+ stderr=output,
+ )
+ self.assertEqual(str(e.exception), expected_output)
+
+ def test_collections_not_migrated_error(self):
+ output = io.StringIO()
+ expected_output = "The following collections for the associated nodes have not been migrated to controlled lists:\nNode alias: concept_not_migrated, Collection ID: 00000000-0000-0000-0000-000000000005"
+
+ management.call_command(
+ "controlled_lists",
+ operation="migrate_concept_nodes_to_reference_datatype",
+ graph="b974103f-73bb-4f2a-bffb-8303227ba0da",
+ stderr=output,
+ )
+ self.assertEqual(output.getvalue().strip(), expected_output)
diff --git a/tests/fixtures/data/concept_node_migration_test_data.json b/tests/fixtures/data/concept_node_migration_test_data.json
new file mode 100644
index 0000000..6ff25c4
--- /dev/null
+++ b/tests/fixtures/data/concept_node_migration_test_data.json
@@ -0,0 +1,6595 @@
+[
+ {
+ "model": "models.cardmodel",
+ "pk": "0e8fe2e3-4148-11e7-aa2d-c4b301baab9f",
+ "fields": {
+ "name": "Project Extent",
+ "description": "Represents a single node in a graph",
+ "instructions": "Draw a polygon representing your project's extent. These bounds will serve as the default for the cache seed bounds, search result grid bounds, and map bounds in search, cards, and reports",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": 1,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "0e8fe699-4148-11e7-85ab-c4b301baab9f",
+ "fields": {
+ "name": "Mapbox API",
+ "description": "Represents a single node in a graph",
+ "instructions": "Arches uses the Mapbox mapping library for map display and data creation. Arches also supports Mapbox basemaps and other services",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": 0,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "0e8feb0c-4148-11e7-9538-c4b301baab9f",
+ "fields": {
+ "name": "Map Zoom",
+ "description": "Represents a single node in a graph",
+ "instructions": "You can define the zoom behavior of your maps by specifying max/min and default values. Zoom level 0 shows the whole world (and is the minimum zoom level). Most map services support a maximum of 20 or so zoom levels",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": 2,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "0e8ff54a-4148-11e7-a534-c4b301baab9f",
+ "fields": {
+ "name": "Default Map Settings",
+ "description": "Initial settings for Arches maps displayed in reports, cards, and search",
+ "instructions": "",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "0e8ff861-4148-11e7-aabf-c4b301baab9f",
+ "fields": {
+ "name": "Search Results Grid",
+ "description": "Represents a single node in a graph",
+ "instructions": "Arches aggregates search results and displays them as hexagons. You will need to set default parameters for the hexagon size and its precision.",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": 3,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "32f2daa6-fae4-11e6-a8c8-6c4008b05c4c",
+ "fields": {
+ "name": "Settings Time Search",
+ "description": "Configuration Settings for temporal search",
+ "instructions": "Arches supports temporal binning. Define the configuration and colors to use in your time wheel",
+ "cssclass": "",
+ "helpenabled": true,
+ "helptitle": "
You can see the color ramps at:
https://github.com/d3/d3-3.x-api-reference/blob/master/Ordinal-Scales.md
",
+ "helptext": "You can see the color ramps at:
https://github.com/d3/d3-3.x-api-reference/blob/master/Ordinal-Scales.md
",
+ "nodegroup": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": false,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "4798c86f-7e8a-486d-92c5-ae91b1fead7f",
+ "fields": {
+ "name": "Concept not migrated",
+ "description": "",
+ "instructions": "",
+ "cssclass": null,
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "efbeeca8-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "b974103f-73bb-4f2a-bffb-8303227ba0da",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "4e005fbb-92b3-48e6-8dba-30cbbbb0810c",
+ "fields": {
+ "name": "semantic",
+ "description": "",
+ "instructions": "",
+ "cssclass": null,
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb769a4-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Saved Searches",
+ "description": "System configuration for saving searches",
+ "instructions": "Arches allows you save a search and present it as convenience for your users.",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "feb95d14-fa14-11e6-a66b-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb76a9e-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Project Extent",
+ "description": "Represents a single node in a graph",
+ "instructions": "Draw a polygon representing your project's extent. These bounds will serve as the default for the cache seed bounds, search result grid bounds, and map bounds in search, cards, and reports",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb76a26-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": 1,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "0e8fe2e3-4148-11e7-aa2d-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb76be8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Mapbox API",
+ "description": "Represents a single node in a graph",
+ "instructions": "Arches uses the Mapbox mapping library for map display and data creation. Arches also supports Mapbox basemaps and other services",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": 0,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "0e8fe699-4148-11e7-85ab-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb76d32-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Map Zoom",
+ "description": "Represents a single node in a graph",
+ "instructions": "You can define the zoom behavior of your maps by specifying max/min and default values. Zoom level 0 shows the whole world (and is the minimum zoom level). Most map services support a maximum of 20 or so zoom levels",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": 2,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "0e8feb0c-4148-11e7-9538-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb76f08-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Default Map Settings",
+ "description": "Initial settings for Arches maps displayed in reports, cards, and search",
+ "instructions": "",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "0e8ff54a-4148-11e7-a534-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb7703e-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Search Results Grid",
+ "description": "Represents a single node in a graph",
+ "instructions": "Arches aggregates search results and displays them as hexagons. You will need to set default parameters for the hexagon size and its precision.",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": 3,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "0e8ff861-4148-11e7-aabf-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb7716a-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Settings Time Search",
+ "description": "Configuration Settings for temporal search",
+ "instructions": "Arches supports temporal binning. Define the configuration and colors to use in your time wheel",
+ "cssclass": "",
+ "helpenabled": true,
+ "helptitle": "You can see the color ramps at:
https://github.com/d3/d3-3.x-api-reference/blob/master/Ordinal-Scales.md
",
+ "helptext": "You can see the color ramps at:
https://github.com/d3/d3-3.x-api-reference/blob/master/Ordinal-Scales.md
",
+ "nodegroup": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": false,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "32f2daa6-fae4-11e6-a8c8-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb77296-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Web Analytics",
+ "description": "Represents a single node in a graph",
+ "instructions": "Google service used to track application usage and other metrics",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb77200-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": 1,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "c5a2a7a1-fadd-11e6-b942-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb773b8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "System Data Settings",
+ "description": "",
+ "instructions": "",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb77322-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "c5a2abe3-fadd-11e6-8e51-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb774da-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Default Application Names",
+ "description": "Represents a single node in a graph",
+ "instructions": "Names used to identify your application and the system data import personna",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": 0,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "c5a2b3c7-fadd-11e6-aa79-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb77606-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Thesaurus Service Providers",
+ "description": "Represents a single node in a graph",
+ "instructions": "Arches can access Thesaurus services, such as the Getty AAT, to acquire thesaurus entries using the Reference Data Manager (RDM)",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb77552-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": 2,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "c5a2b81c-fadd-11e6-8c23-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "6cb77732-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Settings Basic Search",
+ "description": "Configuration settings for search returns",
+ "instructions": "Set the default search results behavior",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "d0987b78-fad8-11e6-9a59-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "ab1b80f2-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept Collector",
+ "description": "",
+ "instructions": "",
+ "cssclass": null,
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "fc660ef6-d672-439e-9681-b1b0833de0dc"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "c5a2a7a1-fadd-11e6-b942-6c4008b05c4c",
+ "fields": {
+ "name": "Web Analytics",
+ "description": "Represents a single node in a graph",
+ "instructions": "Google service used to track application usage and other metrics",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "c5a2a2e8-fadd-11e6-9849-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": 1,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "c5a2abe3-fadd-11e6-8e51-6c4008b05c4c",
+ "fields": {
+ "name": "System Data Settings",
+ "description": "",
+ "instructions": "",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "c5a2b3c7-fadd-11e6-aa79-6c4008b05c4c",
+ "fields": {
+ "name": "Default Application Names",
+ "description": "Represents a single node in a graph",
+ "instructions": "Names used to identify your application and the system data import personna",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": 0,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "c5a2b81c-fadd-11e6-8c23-6c4008b05c4c",
+ "fields": {
+ "name": "Thesaurus Service Providers",
+ "description": "Represents a single node in a graph",
+ "instructions": "Arches can access Thesaurus services, such as the Getty AAT, to acquire thesaurus entries using the Reference Data Manager (RDM)",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": 2,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "d0987b78-fad8-11e6-9a59-6c4008b05c4c",
+ "fields": {
+ "name": "Settings Basic Search",
+ "description": "Configuration settings for search returns",
+ "instructions": "Set the default search results behavior",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "dbdf110e-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "semantic",
+ "description": "",
+ "instructions": "",
+ "cssclass": null,
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "4e005fbb-92b3-48e6-8dba-30cbbbb0810c"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "fc44a9fe-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept not migrated",
+ "description": "",
+ "instructions": "",
+ "cssclass": null,
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "fc44a742-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc44a56c-7b6d-11ef-a937-0aa766c61b64",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": "4798c86f-7e8a-486d-92c5-ae91b1fead7f"
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "fc660ef6-d672-439e-9681-b1b0833de0dc",
+ "fields": {
+ "name": "Concept Collector",
+ "description": "",
+ "instructions": "",
+ "cssclass": null,
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardmodel",
+ "pk": "feb95d14-fa14-11e6-a66b-6c4008b05c4c",
+ "fields": {
+ "name": "Saved Searches",
+ "description": "System configuration for saving searches",
+ "instructions": "Arches allows you save a search and present it as convenience for your users.",
+ "cssclass": "",
+ "helpenabled": false,
+ "helptitle": "",
+ "helptext": "",
+ "nodegroup": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "active": true,
+ "visible": true,
+ "sortorder": null,
+ "component": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "config": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardcomponent",
+ "pk": "2d2e0ca3-089c-4f4c-96a5-fb7eb53963bd",
+ "fields": {
+ "name": "Related Resources Map Card",
+ "description": "related resources map card UI",
+ "component": "views/components/cards/related-resources-map",
+ "componentname": "related-resources-map-card",
+ "defaultconfig": {
+ "basemap": "streets",
+ "minzoom": 15,
+ "linewidth": 2,
+ "hovercolor": "#ff0000",
+ "fillopacity": 0.2,
+ "pointradius": 4,
+ "strokecolor": "#fff",
+ "colorpalette": [
+ "#A4DB6E",
+ "#F0C200",
+ "#fdb462",
+ "#22ff33",
+ "#D29EFF"
+ ],
+ "defaultcolor": "#F0C200",
+ "overviewzoom": 11,
+ "selectSource": "",
+ "overlayConfigs": [],
+ "selectioncolor": "#427AFF",
+ "strokelinewidth": 4,
+ "selectSourceLayer": "",
+ "strokepointradius": 6,
+ "strokepointopacity": 1,
+ "selectRelatedSource": "",
+ "selectRelatedSourceLayer": ""
+ }
+ }
+ },
+ {
+ "model": "models.cardcomponent",
+ "pk": "2ed3f508-4e8e-11ea-b975-5b976cab10db",
+ "fields": {
+ "name": "IIIF Card",
+ "description": "",
+ "component": "views/components/cards/iiif-card",
+ "componentname": "iiif-card",
+ "defaultconfig": {
+ "defaultManifest": ""
+ }
+ }
+ },
+ {
+ "model": "models.cardcomponent",
+ "pk": "2f9054d8-de57-45cd-8a9c-58bbb1619030",
+ "fields": {
+ "name": "Grouping Card",
+ "description": "A card component that groups sibling cards together into one form.",
+ "component": "views/components/cards/grouping",
+ "componentname": "grouping-card-component",
+ "defaultconfig": {
+ "groupedCardIds": [],
+ "sortedWidgetIds": []
+ }
+ }
+ },
+ {
+ "model": "models.cardcomponent",
+ "pk": "3c103484-22d1-4ca9-a9f3-eb3902d567ac",
+ "fields": {
+ "name": "Map Card",
+ "description": "Map card UI",
+ "component": "views/components/cards/map",
+ "componentname": "map-card",
+ "defaultconfig": {
+ "zoom": 0,
+ "basemap": "streets",
+ "centerX": 0,
+ "centerY": 0,
+ "selectText": "",
+ "selectSource": "",
+ "overlayConfigs": [],
+ "selectSourceLayer": ""
+ }
+ }
+ },
+ {
+ "model": "models.cardcomponent",
+ "pk": "47e10bbb-cf09-4357-ace5-f824ac3bfd97",
+ "fields": {
+ "name": "File Viewer",
+ "description": "",
+ "component": "views/components/cards/file-viewer",
+ "componentname": "file-viewer",
+ "defaultconfig": {}
+ }
+ },
+ {
+ "model": "models.cardcomponent",
+ "pk": "4e40b397-d6bc-4660-a398-4a72c90dba07",
+ "fields": {
+ "name": "Photo Gallery Card",
+ "description": "Photo gallery card UI",
+ "component": "views/components/cards/photo-gallery-card",
+ "componentname": "photo-gallery-card",
+ "defaultconfig": {}
+ }
+ },
+ {
+ "model": "models.cardcomponent",
+ "pk": "f05e4d3a-53c1-11e8-b0ea-784f435179ea",
+ "fields": {
+ "name": "Default Card",
+ "description": "Default Arches card UI",
+ "component": "views/components/cards/default",
+ "componentname": "default-card",
+ "defaultconfig": {}
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e90054c-4148-11e7-bb73-c4b301baab9f",
+ "fields": {
+ "node": "0e8ffbcf-4148-11e7-a95a-c4b301baab9f",
+ "card": "0e8fe2e3-4148-11e7-aa2d-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000007",
+ "config": "{\"zoom\": 0.34043575237615786, \"label\": \"Project map extent\", \"pitch\": 0, \"basemap\": \"streets\", \"bearing\": 0, \"centerX\": 6.2649371162926855, \"centerY\": 6.180313849275791, \"maxZoom\": 20, \"minZoom\": 0, \"rerender\": true, \"defaultValue\": \"\", \"featureColor\": \"#FF0000\", \"geometryTypes\": [{\"id\": \"Polygon\", \"text\": \"Polygon\"}], \"overlayConfigs\": [], \"overlayOpacity\": 0, \"geocodeProvider\": \"10000000-0000-0000-0000-010000000000\", \"geocoderVisible\": false, \"defaultValueType\": \"\", \"featureLineWidth\": 1, \"featurePointSize\": 3, \"geocodePlaceholder\": \"Search\"}",
+ "label": "Project map extent",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e900602-4148-11e7-a580-c4b301baab9f",
+ "fields": {
+ "node": "0e8ff9d1-4148-11e7-90ed-c4b301baab9f",
+ "card": "0e8feb0c-4148-11e7-9538-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Default Zoom\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Default Zoom",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e900651-4148-11e7-8b6a-c4b301baab9f",
+ "fields": {
+ "node": "0e8fff21-4148-11e7-ba78-c4b301baab9f",
+ "card": "0e8feb0c-4148-11e7-9538-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Max Zoom\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Max Zoom",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e9006f0-4148-11e7-897a-c4b301baab9f",
+ "fields": {
+ "node": "0e8ffaf5-4148-11e7-b24d-c4b301baab9f",
+ "card": "0e8ff861-4148-11e7-aabf-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Hexagon Grid Precision (Integer, larger numbers ensure more precise counts at a performance cost)\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"e.g.: 4\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Hexagon Grid Precision (Integer, larger numbers ensure more precise counts at a performance cost)",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e900787-4148-11e7-88c5-c4b301baab9f",
+ "fields": {
+ "node": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "card": "0e8fe2e3-4148-11e7-aa2d-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000007",
+ "config": "{\"zoom\": 0, \"label\": \"Map\", \"pitch\": 0, \"basemap\": \"streets\", \"bearing\": 0, \"centerX\": 0, \"centerY\": 0, \"maxZoom\": 20, \"minZoom\": 0, \"rerender\": true, \"defaultValue\": \"\", \"featureColor\": \"#FF0000\", \"geometryTypes\": [{\"id\": \"Point\", \"text\": \"Point\"}, {\"id\": \"Line\", \"text\": \"Line\"}, {\"id\": \"Polygon\", \"text\": \"Polygon\"}], \"overlayConfigs\": [], \"overlayOpacity\": 0, \"geocodeProvider\": \"10000000-0000-0000-0000-010000000000\", \"geocoderVisible\": true, \"defaultValueType\": \"\", \"featureLineWidth\": 1, \"featurePointSize\": 3, \"geocodePlaceholder\": \"Search\"}",
+ "label": "Map",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e9007d9-4148-11e7-9354-c4b301baab9f",
+ "fields": {
+ "node": "0e9000b0-4148-11e7-bd19-c4b301baab9f",
+ "card": "0e8fe699-4148-11e7-85ab-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"MapBox API Key (Optional)\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "MapBox API Key (Optional)",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e900826-4148-11e7-b767-c4b301baab9f",
+ "fields": {
+ "node": "0e900254-4148-11e7-9902-c4b301baab9f",
+ "card": "0e8fe699-4148-11e7-85ab-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Mapbox Sprites\", \"width\": \"100%\", \"maxLength\": \"Sprites\", \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Mapbox Sprites",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e90086e-4148-11e7-bc0b-c4b301baab9f",
+ "fields": {
+ "node": "0e90031e-4148-11e7-a176-c4b301baab9f",
+ "card": "0e8fe699-4148-11e7-85ab-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Mapbox Glyphs\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Mapbox Glyphs",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e90090f-4148-11e7-8f32-c4b301baab9f",
+ "fields": {
+ "node": "0e90017a-4148-11e7-82ce-c4b301baab9f",
+ "card": "0e8feb0c-4148-11e7-9538-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Min Zoom\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Min Zoom",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "0e9009a3-4148-11e7-9d2d-c4b301baab9f",
+ "fields": {
+ "node": "0e8ffcab-4148-11e7-a571-c4b301baab9f",
+ "card": "0e8ff861-4148-11e7-aabf-c4b301baab9f",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Hexagon Size (in km)\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"e.g.: 2\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Hexagon Size (in km)",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "365b0b65-8c69-4d9b-9716-d887dc075ef8",
+ "fields": {
+ "node": "efbeeca8-7b6d-11ef-a937-0aa766c61b64",
+ "card": "4798c86f-7e8a-486d-92c5-ae91b1fead7f",
+ "widget": "10000000-0000-0000-0000-000000000002",
+ "config": "{\"en\": \"\"}",
+ "label": "",
+ "visible": true,
+ "sortorder": null,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77cf0-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb778a4-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb76a9e-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000007",
+ "config": "{\"zoom\": 0.34043575237615786, \"label\": \"Project map extent\", \"pitch\": 0, \"basemap\": \"streets\", \"bearing\": 0, \"centerX\": 6.2649371162926855, \"centerY\": 6.180313849275791, \"maxZoom\": 20, \"minZoom\": 0, \"rerender\": true, \"defaultValue\": \"\", \"featureColor\": \"#FF0000\", \"geometryTypes\": [{\"id\": \"Polygon\", \"text\": \"Polygon\"}], \"overlayConfigs\": [], \"overlayOpacity\": 0, \"geocodeProvider\": \"10000000-0000-0000-0000-010000000000\", \"geocoderVisible\": false, \"defaultValueType\": \"\", \"featureLineWidth\": 1, \"featurePointSize\": 3, \"geocodePlaceholder\": \"Search\"}",
+ "label": "Project map extent",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "0e90054c-4148-11e7-bb73-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77d18-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb76a26-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb76a9e-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000007",
+ "config": "{\"zoom\": 0, \"label\": \"Map\", \"pitch\": 0, \"basemap\": \"streets\", \"bearing\": 0, \"centerX\": 0, \"centerY\": 0, \"maxZoom\": 20, \"minZoom\": 0, \"rerender\": true, \"defaultValue\": \"\", \"featureColor\": \"#FF0000\", \"geometryTypes\": [{\"id\": \"Point\", \"text\": \"Point\"}, {\"id\": \"Line\", \"text\": \"Line\"}, {\"id\": \"Polygon\", \"text\": \"Polygon\"}], \"overlayConfigs\": [], \"overlayOpacity\": 0, \"geocodeProvider\": \"10000000-0000-0000-0000-010000000000\", \"geocoderVisible\": true, \"defaultValueType\": \"\", \"featureLineWidth\": 1, \"featurePointSize\": 3, \"geocodePlaceholder\": \"Search\"}",
+ "label": "Map",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "0e900787-4148-11e7-88c5-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77d36-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77958-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb76be8-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"MapBox API Key (Optional)\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "MapBox API Key (Optional)",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "0e9007d9-4148-11e7-9354-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77d54-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb779d0-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb76be8-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Mapbox Sprites\", \"width\": \"100%\", \"maxLength\": \"Sprites\", \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Mapbox Sprites",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": "0e900826-4148-11e7-b767-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77d72-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77a0c-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb76be8-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Mapbox Glyphs\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Mapbox Glyphs",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": "0e90086e-4148-11e7-bc0b-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77d90-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb7782c-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb76d32-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Default Zoom\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Default Zoom",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "0e900602-4148-11e7-a580-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77db8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb7791c-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb76d32-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Max Zoom\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Max Zoom",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": "0e900651-4148-11e7-8b6a-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77dcc-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77994-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb76d32-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Min Zoom\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Min Zoom",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": "0e90090f-4148-11e7-8f32-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77dea-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77868-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb7703e-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Hexagon Grid Precision (Integer, larger numbers ensure more precise counts at a performance cost)\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"e.g.: 4\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Hexagon Grid Precision (Integer, larger numbers ensure more precise counts at a performance cost)",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": "0e9006f0-4148-11e7-897a-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77e08-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb778e0-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb7703e-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Hexagon Size (in km)\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"e.g.: 2\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Hexagon Size (in km)",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "0e9009a3-4148-11e7-9d2d-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77e26-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77a84-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb7716a-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000015",
+ "config": "{\"label\": \"Color Ramp\", \"placeholder\": \"Select an option\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Color Ramp",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "dae3d02e-4267-11e7-ad74-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77e44-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77a52-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb7716a-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000005",
+ "config": "{\"label\": \"Time wheel configuration\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": null, \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Time wheel configuration",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": "dae41263-4267-11e7-8e52-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77e62-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77b74-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb77296-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Google Analytics Key\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter key\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Google Analytics Key",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "fa435807-4263-11e7-bca8-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77e80-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77b38-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb774da-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Default Data Import/Export Name\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Default Data Import/Export Name",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": "fa41c43d-4263-11e7-9ff9-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77e9e-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77ac0-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb774da-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Application Name\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"e.g. Arches\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Application Name",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "fa4205a3-4263-11e7-929e-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77ebc-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77afc-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb77606-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Thesaurus SPARQL Endpoint\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Thesaurus SPARQL Endpoint",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "fa428978-4263-11e7-8618-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77eda-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77bb0-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb77732-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Number of search hints per dropdown\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Number of search hints per dropdown",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": "ec6b3f7a-2e9f-11e7-a9ad-14109fd34195"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77ef8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb7778c-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb77732-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Number of search results per page\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Number of search results per page",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "ec6b8173-2e9f-11e7-99ea-14109fd34195"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77f16-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb777f0-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb77732-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Max number of search results to export (see help for limitations on this value)\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Max number of search results to export (see help for limitations on this value)",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": "ec6bc4ae-2e9f-11e7-86ec-14109fd34195"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77f34-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77c5a-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb769a4-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Search Name\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Search Name",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "feb962e6-fa14-11e6-85ee-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77f52-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77c8c-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb769a4-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000005",
+ "config": "{\"label\": \"Search Description\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": null, \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Search Description",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": "feb96368-fa14-11e6-9d74-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77f70-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77bec-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb769a4-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Search URL\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"(copy and paste from your browser address bar)\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Search URL",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": "feb963d7-fa14-11e6-964d-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "6cb77f8e-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "node": "6cb77c1e-7b6b-11ef-8082-0aa766c61b64",
+ "card": "6cb769a4-7b6b-11ef-8082-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000019",
+ "config": "{\"label\": \"Image\", \"rerender\": true, \"maxFilesize\": \"200\", \"defaultValue\": [], \"acceptedFiles\": \"\"}",
+ "label": "Image",
+ "visible": true,
+ "sortorder": 3,
+ "source_identifier": "feb96445-fa14-11e6-a1ea-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "8bca4df1-f3f5-472d-939f-a751e3689797",
+ "fields": {
+ "node": "b29546b8-7b65-11ef-a937-0aa766c61b64",
+ "card": "fc660ef6-d672-439e-9681-b1b0833de0dc",
+ "widget": "10000000-0000-0000-0000-000000000012",
+ "config": "{\"label\": \"Concept-list w/o default\", \"options\": [], \"placeholder\": \"Select an option\", \"defaultValue\": [], \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Concept-list w/o default",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "ab1b89d0-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "node": "ab1b861a-7b6d-11ef-a937-0aa766c61b64",
+ "card": "ab1b80f2-7b6d-11ef-a937-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000012",
+ "config": "{\"label\": \"Concept-list w/ default\", \"options\": [], \"placeholder\": \"Select an option\", \"defaultValue\": [\"8e88c7ea-a157-4846-826d-4422eb967b9e\"], \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Concept-list w/ default",
+ "visible": true,
+ "sortorder": 3,
+ "source_identifier": "bea9a4ab-366c-473d-8d97-ec173e0c77e4"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "ab1b8ac0-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "node": "ab1b8796-7b6d-11ef-a937-0aa766c61b64",
+ "card": "ab1b80f2-7b6d-11ef-a937-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000002",
+ "config": "{\"label\": \"Concept n1 w/o default\", \"options\": [], \"placeholder\": \"Select an option\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Concept n1 w/o default",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": "d76b5cd2-06ba-4dcd-8360-77bad5e0babb"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "ab1b8b9c-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "node": "ab1b8318-7b6d-11ef-a937-0aa766c61b64",
+ "card": "ab1b80f2-7b6d-11ef-a937-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000012",
+ "config": "{\"label\": \"Concept-list w/o default\", \"options\": [], \"placeholder\": \"Select an option\", \"defaultValue\": [], \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Concept-list w/o default",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": "8bca4df1-f3f5-472d-939f-a751e3689797"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "ab1b8c78-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "node": "ab1b849e-7b6d-11ef-a937-0aa766c61b64",
+ "card": "ab1b80f2-7b6d-11ef-a937-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000002",
+ "config": "{\"label\": \"Concept n1 w/ default\", \"options\": [], \"placeholder\": \"Select an option\", \"defaultValue\": \"7e4c0e04-2a58-456d-8728-5fa8019307a5\", \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Concept n1 w/ default",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": "b0e8c700-fdab-40b0-a5b0-b8807f16194c"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "b0e8c700-fdab-40b0-a5b0-b8807f16194c",
+ "fields": {
+ "node": "9f26d038-7b65-11ef-a937-0aa766c61b64",
+ "card": "fc660ef6-d672-439e-9681-b1b0833de0dc",
+ "widget": "10000000-0000-0000-0000-000000000002",
+ "config": "{\"label\": \"Concept n1 w/ default\", \"options\": [], \"placeholder\": \"Select an option\", \"defaultValue\": \"7e4c0e04-2a58-456d-8728-5fa8019307a5\", \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Concept n1 w/ default",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "bea9a4ab-366c-473d-8d97-ec173e0c77e4",
+ "fields": {
+ "node": "d8c678b6-7b65-11ef-a937-0aa766c61b64",
+ "card": "fc660ef6-d672-439e-9681-b1b0833de0dc",
+ "widget": "10000000-0000-0000-0000-000000000012",
+ "config": "{\"label\": \"Concept-list w/ default\", \"options\": [], \"placeholder\": \"Select an option\", \"defaultValue\": [\"8e88c7ea-a157-4846-826d-4422eb967b9e\"], \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Concept-list w/ default",
+ "visible": true,
+ "sortorder": 3,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "d76b5cd2-06ba-4dcd-8360-77bad5e0babb",
+ "fields": {
+ "node": "b1a12448-7b65-11ef-a937-0aa766c61b64",
+ "card": "fc660ef6-d672-439e-9681-b1b0833de0dc",
+ "widget": "10000000-0000-0000-0000-000000000002",
+ "config": "{\"label\": \"Concept n1 w/o default\", \"options\": [], \"placeholder\": \"Select an option\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Concept n1 w/o default",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "dae3d02e-4267-11e7-ad74-6c4008b05c4c",
+ "fields": {
+ "node": "32f2de17-fae4-11e6-bb3b-6c4008b05c4c",
+ "card": "32f2daa6-fae4-11e6-a8c8-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000015",
+ "config": "{\"label\": \"Color Ramp\", \"placeholder\": \"Select an option\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Color Ramp",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "dae41263-4267-11e7-8e52-6c4008b05c4c",
+ "fields": {
+ "node": "32f2dc66-fae4-11e6-9556-6c4008b05c4c",
+ "card": "32f2daa6-fae4-11e6-a8c8-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000005",
+ "config": "{\"label\": \"Time wheel configuration\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": null, \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Time wheel configuration",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "ec6b3f7a-2e9f-11e7-a9ad-14109fd34195",
+ "fields": {
+ "node": "d0987cc2-fad8-11e6-8581-6c4008b05c4c",
+ "card": "d0987b78-fad8-11e6-9a59-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Number of search hints per dropdown\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Number of search hints per dropdown",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "ec6b8173-2e9f-11e7-99ea-14109fd34195",
+ "fields": {
+ "node": "d0987de3-fad8-11e6-a434-6c4008b05c4c",
+ "card": "d0987b78-fad8-11e6-9a59-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Number of search results per page\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Number of search results per page",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "ec6bc4ae-2e9f-11e7-86ec-14109fd34195",
+ "fields": {
+ "node": "d0987ec0-fad8-11e6-aad3-6c4008b05c4c",
+ "card": "d0987b78-fad8-11e6-9a59-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000008",
+ "config": "{\"max\": \"\", \"min\": \"\", \"step\": \"\", \"label\": \"Max number of search results to export (see help for limitations on this value)\", \"width\": \"100%\", \"format\": \"\", \"prefix\": \"\", \"suffix\": \"\", \"precision\": \"\", \"uneditable\": false, \"placeholder\": \"Enter number\", \"defaultValue\": \"\", \"i18n_properties\": [\"placeholder\", \"prefix\", \"suffix\"]}",
+ "label": "Max number of search results to export (see help for limitations on this value)",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "fa41c43d-4263-11e7-9ff9-6c4008b05c4c",
+ "fields": {
+ "node": "c5a2bdb3-fadd-11e6-8c96-6c4008b05c4c",
+ "card": "c5a2b3c7-fadd-11e6-aa79-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Default Data Import/Export Name\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Default Data Import/Export Name",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "fa4205a3-4263-11e7-929e-6c4008b05c4c",
+ "fields": {
+ "node": "c5a2b94a-fadd-11e6-a029-6c4008b05c4c",
+ "card": "c5a2b3c7-fadd-11e6-aa79-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Application Name\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"e.g. Arches\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Application Name",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "fa428978-4263-11e7-8618-6c4008b05c4c",
+ "fields": {
+ "node": "c5a2ba63-fadd-11e6-9306-6c4008b05c4c",
+ "card": "c5a2b81c-fadd-11e6-8c23-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Thesaurus SPARQL Endpoint\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Thesaurus SPARQL Endpoint",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "fa435807-4263-11e7-bca8-6c4008b05c4c",
+ "fields": {
+ "node": "c5a2be85-fadd-11e6-b72f-6c4008b05c4c",
+ "card": "c5a2a7a1-fadd-11e6-b942-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Google Analytics Key\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter key\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Google Analytics Key",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "fc44ad28-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "node": "fc44a742-7b6d-11ef-a937-0aa766c61b64",
+ "card": "fc44a9fe-7b6d-11ef-a937-0aa766c61b64",
+ "widget": "10000000-0000-0000-0000-000000000002",
+ "config": "{\"en\": \"\"}",
+ "label": "",
+ "visible": true,
+ "sortorder": null,
+ "source_identifier": "365b0b65-8c69-4d9b-9716-d887dc075ef8"
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "feb962e6-fa14-11e6-85ee-6c4008b05c4c",
+ "fields": {
+ "node": "feb96126-fa14-11e6-9f19-6c4008b05c4c",
+ "card": "feb95d14-fa14-11e6-a66b-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Search Name\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Search Name",
+ "visible": true,
+ "sortorder": 0,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "feb96368-fa14-11e6-9d74-6c4008b05c4c",
+ "fields": {
+ "node": "feb9623d-fa14-11e6-a9c3-6c4008b05c4c",
+ "card": "feb95d14-fa14-11e6-a66b-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000005",
+ "config": "{\"label\": \"Search Description\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"Enter text\", \"defaultValue\": {\"en\": {\"value\": null, \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Search Description",
+ "visible": true,
+ "sortorder": 2,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "feb963d7-fa14-11e6-964d-6c4008b05c4c",
+ "fields": {
+ "node": "feb95eae-fa14-11e6-9683-6c4008b05c4c",
+ "card": "feb95d14-fa14-11e6-a66b-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000001",
+ "config": "{\"label\": \"Search URL\", \"width\": \"100%\", \"maxLength\": null, \"uneditable\": false, \"placeholder\": \"(copy and paste from your browser address bar)\", \"defaultValue\": {\"en\": {\"value\": \"\", \"direction\": \"ltr\"}}, \"i18n_properties\": [\"placeholder\"]}",
+ "label": "Search URL",
+ "visible": true,
+ "sortorder": 1,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.cardxnodexwidget",
+ "pk": "feb96445-fa14-11e6-a1ea-6c4008b05c4c",
+ "fields": {
+ "node": "feb96005-fa14-11e6-aa8d-6c4008b05c4c",
+ "card": "feb95d14-fa14-11e6-a66b-6c4008b05c4c",
+ "widget": "10000000-0000-0000-0000-000000000019",
+ "config": "{\"label\": \"Image\", \"rerender\": true, \"maxFilesize\": \"200\", \"defaultValue\": [], \"acceptedFiles\": \"\"}",
+ "label": "Image",
+ "visible": true,
+ "sortorder": 3,
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "00000000-0000-0000-0000-000000000001",
+ "fields": {
+ "nodetype": "ConceptScheme",
+ "legacyoid": "ARCHES"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "00000000-0000-0000-0000-000000000004",
+ "fields": {
+ "nodetype": "Concept",
+ "legacyoid": "ARCHES RESOURCE CROSS-REFERENCE RELATIONSHIP TYPES CONCEPT"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "00000000-0000-0000-0000-000000000005",
+ "fields": {
+ "nodetype": "Collection",
+ "legacyoid": "ARCHES RESOURCE CROSS-REFERENCE RELATIONSHIP TYPES COLLECTION"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "00000000-0000-0000-0000-000000000006",
+ "fields": {
+ "nodetype": "ConceptScheme",
+ "legacyoid": "CANDIDATES"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "00000000-0000-0000-0000-000000000007",
+ "fields": {
+ "nodetype": "Concept",
+ "legacyoid": "DEFAULT RESOURCE TO RESOURCE RELATIONSHIP TYPE"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "fields": {
+ "nodetype": "Collection",
+ "legacyoid": "2a259f4b-807c-4574-b681-47fef3086d88"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "fields": {
+ "nodetype": "Concept",
+ "legacyoid": "http://localhost:8000/7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "fields": {
+ "nodetype": "Concept",
+ "legacyoid": "http://localhost:8000/8f9a53b7-35cd-48be-9093-bd202fbe8e0b"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "fields": {
+ "nodetype": "Concept",
+ "legacyoid": "http://localhost:8000/a1f4cab6-f577-40af-b8fe-589c61236dd2"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "f5a9b66c-7d28-4840-86df-fc1ed641d83f",
+ "fields": {
+ "nodetype": "ConceptScheme",
+ "legacyoid": "http://localhost:8000/f5a9b66c-7d28-4840-86df-fc1ed641d83f"
+ }
+ },
+ {
+ "model": "models.concept",
+ "pk": "fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "fields": {
+ "nodetype": "Concept",
+ "legacyoid": "http://localhost:8000/fde79d7b-9182-4743-bc81-baa2e72367b2"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0ab641fc-cb77-4aa6-888a-b4d3fd50d90e",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c362fd2a-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904914-4148-11e7-8ee1-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "rangenode": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904a5e-4148-11e7-acd2-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "rangenode": "0e900254-4148-11e7-9902-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904ade-4148-11e7-a681-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "rangenode": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904b57-4148-11e7-a43b-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "rangenode": "0e8ffcab-4148-11e7-a571-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904bcf-4148-11e7-9bda-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "rangenode": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904c3d-4148-11e7-85b2-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "rangenode": "0e9000b0-4148-11e7-bd19-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904cb5-4148-11e7-8b13-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "rangenode": "0e8fff21-4148-11e7-ba78-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904d2e-4148-11e7-9626-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "rangenode": "0e8ff9d1-4148-11e7-90ed-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904e14-4148-11e7-a3e8-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "rangenode": "0e8ffaf5-4148-11e7-b24d-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904e8a-4148-11e7-a303-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "rangenode": "0e90017a-4148-11e7-82ce-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e904f05-4148-11e7-803b-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "rangenode": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e905063-4148-11e7-9e91-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "rangenode": "0e90031e-4148-11e7-a176-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e90515c-4148-11e7-ba17-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "rangenode": "0e8ffbcf-4148-11e7-a95a-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "0e9053f8-4148-11e7-9386-c4b301baab9f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ff62303a-fa12-11e6-a889-6c4008b05c4c",
+ "rangenode": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "32f2e294-fae4-11e6-895a-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "rangenode": "32f2dc66-fae4-11e6-9556-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "32f2e347-fae4-11e6-bd95-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "rangenode": "32f2de17-fae4-11e6-bb3b-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "32f2e491-fae4-11e6-8f97-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ff62303a-fa12-11e6-a889-6c4008b05c4c",
+ "rangenode": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "503d76ef-859d-4c98-bf37-bc294b73f99f",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "rangenode": "9f26d038-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a5b8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904914-4148-11e7-8ee1-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a608-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb779d0-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904a5e-4148-11e7-acd2-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a658-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904ade-4148-11e7-a681-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a69e-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb778e0-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904b57-4148-11e7-a43b-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a6da-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904bcf-4148-11e7-9bda-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a720-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77958-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904c3d-4148-11e7-85b2-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a75c-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb7791c-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904cb5-4148-11e7-8b13-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a7a2-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb7782c-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904d2e-4148-11e7-9626-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a7de-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77868-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904e14-4148-11e7-a3e8-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a81a-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77994-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904e8a-4148-11e7-a303-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a856-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb76a26-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e904f05-4148-11e7-803b-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a89c-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77a0c-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e905063-4148-11e7-9e91-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a8d8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76a26-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb778a4-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e90515c-4148-11e7-ba17-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a914-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77cc8-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "0e9053f8-4148-11e7-9386-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a950-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77a52-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "32f2e294-fae4-11e6-895a-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a996-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77a84-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "32f2e347-fae4-11e6-bd95-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7a9d2-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77cc8-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "32f2e491-fae4-11e6-8f97-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7aa0e-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77322-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "c5a2d7b8-fadd-11e6-b1d6-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7aa4a-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77552-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77afc-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "c5a2d880-fadd-11e6-821e-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7aa86-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77ac0-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "c5a2d90a-fadd-11e6-8f2b-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7aacc-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77200-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77b74-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "c5a2d985-fadd-11e6-a852-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7ab08-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77322-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77200-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "c5a2da05-fadd-11e6-b199-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7ab44-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77b38-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "c5a2db8c-fadd-11e6-ab63-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7ab80-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77322-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77552-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "c5a2dc7a-fadd-11e6-bce7-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7abbc-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77cc8-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77322-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "c5a2ddf8-fadd-11e6-a308-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7abf8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb777f0-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "d09882ba-fad8-11e6-8f6a-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7ac34-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb7778c-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "d0988370-fad8-11e6-81c2-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7ac7a-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77bb0-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "d09883f0-fad8-11e6-9cb6-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7acb6-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77cc8-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "d098850a-fad8-11e6-bafd-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7acf2-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77c1e-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "feb96a5c-fa14-11e6-bed3-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7ad38-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77bec-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "feb96b30-fa14-11e6-a9e4-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7ad74-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77c5a-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "feb96bd1-fa14-11e6-b92a-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7adb0-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb77c8c-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "feb96c70-fa14-11e6-8328-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "6cb7adec-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "6cb77cc8-7b6b-11ef-8082-0aa766c61b64",
+ "rangenode": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "source_identifier": "feb96dd9-fa14-11e6-9065-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "94ea497c-13c6-4413-b211-d3bd57bae9b2",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "rangenode": "d8c678b6-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "ab1b997a-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "ab1b8796-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "e437002f-ef85-4a11-a7a9-c4b8d39a2fa9"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "ab1b9b6e-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ab1b8908-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "f298e5ad-2b48-4acd-9d67-8204bf41e6b5"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "ab1b9d58-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "ab1b849e-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "503d76ef-859d-4c98-bf37-bc294b73f99f"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "ab1b9f38-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "ab1b861a-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "94ea497c-13c6-4413-b211-d3bd57bae9b2"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "ab1ba118-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "ab1b8318-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "ce7e26cf-cdaa-4e1f-992c-49aeb5e18028"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "bc931136-b2a6-49e0-b3e0-bef65af169bc",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "d4a6981c-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "c5a2d7b8-fadd-11e6-b1d6-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "rangenode": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "c5a2d880-fadd-11e6-821e-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "rangenode": "c5a2ba63-fadd-11e6-9306-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "c5a2d90a-fadd-11e6-8f2b-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "rangenode": "c5a2b94a-fadd-11e6-a029-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "c5a2d985-fadd-11e6-a852-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c5a2a2e8-fadd-11e6-9849-6c4008b05c4c",
+ "rangenode": "c5a2be85-fadd-11e6-b72f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "c5a2da05-fadd-11e6-b199-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "rangenode": "c5a2a2e8-fadd-11e6-9849-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "c5a2db8c-fadd-11e6-ab63-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "rangenode": "c5a2bdb3-fadd-11e6-8c96-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "c5a2dc7a-fadd-11e6-bce7-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "rangenode": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "c5a2ddf8-fadd-11e6-a308-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ff62303a-fa12-11e6-a889-6c4008b05c4c",
+ "rangenode": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "ce7e26cf-cdaa-4e1f-992c-49aeb5e18028",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "rangenode": "b29546b8-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "d09882ba-fad8-11e6-8f6a-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "rangenode": "d0987ec0-fad8-11e6-aad3-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "d0988370-fad8-11e6-81c2-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "rangenode": "d0987de3-fad8-11e6-a434-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "d09883f0-fad8-11e6-9cb6-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "rangenode": "d0987cc2-fad8-11e6-8581-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "d098850a-fad8-11e6-bafd-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ff62303a-fa12-11e6-a889-6c4008b05c4c",
+ "rangenode": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "dbdf205e-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "dbdf173a-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "0ab641fc-cb77-4aa6-888a-b4d3fd50d90e"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "dbdf22b6-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "dbdf13a2-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "f9cff92f-0019-41a3-b34f-64bf2690a601"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "dbdf24fa-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "dbdf1578-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "bc931136-b2a6-49e0-b3e0-bef65af169bc"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "e437002f-ef85-4a11-a7a9-c4b8d39a2fa9",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "rangenode": "b1a12448-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "f298e5ad-2b48-4acd-9d67-8204bf41e6b5",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "64f6553c-7b65-11ef-a937-0aa766c61b64",
+ "rangenode": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "f2beae9a-bf9a-43d8-b079-b901c7b03cf9",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "e42f3e9c-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "efbeeca8-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "b974103f-73bb-4f2a-bffb-8303227ba0da",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "f9cff92f-0019-41a3-b34f-64bf2690a601",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "cf89bcf6-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "fc44b19c-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "fc44ac42-7b6d-11ef-a937-0aa766c61b64",
+ "rangenode": "fc44a742-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc44a56c-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": "f2beae9a-bf9a-43d8-b079-b901c7b03cf9"
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "feb96a5c-fa14-11e6-bed3-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "rangenode": "feb96005-fa14-11e6-aa8d-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "feb96b30-fa14-11e6-a9e4-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "rangenode": "feb95eae-fa14-11e6-9683-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "feb96bd1-fa14-11e6-b92a-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "rangenode": "feb96126-fa14-11e6-9f19-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "feb96c70-fa14-11e6-8328-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "rangenode": "feb9623d-fa14-11e6-a9c3-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.edge",
+ "pk": "feb96dd9-fa14-11e6-9065-6c4008b05c4c",
+ "fields": {
+ "name": null,
+ "description": null,
+ "ontologyproperty": null,
+ "domainnode": "ff62303a-fa12-11e6-a889-6c4008b05c4c",
+ "rangenode": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "source_identifier": null
+ }
+ },
+ {
+ "model": "models.graphmodel",
+ "pk": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Arches System Settings",
+ "description": "",
+ "deploymentfile": null,
+ "author": " ",
+ "deploymentdate": null,
+ "version": "",
+ "isresource": true,
+ "is_active": true,
+ "is_copy_immutable": false,
+ "iconclass": "fa fa-sliders",
+ "color": null,
+ "subtitle": "System configuration",
+ "ontology": null,
+ "jsonldcontext": null,
+ "template": "50000000-0000-0000-0000-000000000001",
+ "config": {},
+ "slug": null,
+ "publication": null,
+ "source_identifier": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "has_unpublished_changes": false,
+ "resource_instance_lifecycle": null
+ }
+ },
+ {
+ "model": "models.graphmodel",
+ "pk": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "fields": {
+ "name": "Concept Node Migration Test",
+ "description": "",
+ "deploymentfile": null,
+ "author": " ",
+ "deploymentdate": null,
+ "version": "",
+ "isresource": true,
+ "is_active": true,
+ "is_copy_immutable": false,
+ "iconclass": "",
+ "color": null,
+ "subtitle": "reference dt migration script test model",
+ "ontology": null,
+ "jsonldcontext": null,
+ "template": "50000000-0000-0000-0000-000000000001",
+ "config": {},
+ "slug": null,
+ "publication": "ab3f6684-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": null,
+ "has_unpublished_changes": false,
+ "resource_instance_lifecycle": "7e3cce56-fbfb-4a4b-8e83-59b9f9e7cb75"
+ }
+ },
+ {
+ "model": "models.graphmodel",
+ "pk": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept Node Migration Test",
+ "description": "",
+ "deploymentfile": null,
+ "author": " ",
+ "deploymentdate": null,
+ "version": "",
+ "isresource": true,
+ "is_active": true,
+ "is_copy_immutable": false,
+ "iconclass": "",
+ "color": null,
+ "subtitle": "reference dt migration script test model",
+ "ontology": null,
+ "jsonldcontext": null,
+ "template": "50000000-0000-0000-0000-000000000001",
+ "config": {},
+ "slug": null,
+ "publication": null,
+ "source_identifier": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "has_unpublished_changes": false,
+ "resource_instance_lifecycle": null
+ }
+ },
+ {
+ "model": "models.graphmodel",
+ "pk": "b974103f-73bb-4f2a-bffb-8303227ba0da",
+ "fields": {
+ "name": "Collection Not Migrated",
+ "description": "",
+ "deploymentfile": null,
+ "author": " ",
+ "deploymentdate": null,
+ "version": "",
+ "isresource": true,
+ "is_active": true,
+ "is_copy_immutable": false,
+ "iconclass": "",
+ "color": null,
+ "subtitle": "",
+ "ontology": null,
+ "jsonldcontext": null,
+ "template": "50000000-0000-0000-0000-000000000001",
+ "config": {},
+ "slug": null,
+ "publication": "fc50d346-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": null,
+ "has_unpublished_changes": false,
+ "resource_instance_lifecycle": "7e3cce56-fbfb-4a4b-8e83-59b9f9e7cb75"
+ }
+ },
+ {
+ "model": "models.graphmodel",
+ "pk": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "No concept nodes",
+ "description": "",
+ "deploymentfile": null,
+ "author": " ",
+ "deploymentdate": null,
+ "version": "",
+ "isresource": true,
+ "is_active": true,
+ "is_copy_immutable": false,
+ "iconclass": "",
+ "color": null,
+ "subtitle": "",
+ "ontology": null,
+ "jsonldcontext": null,
+ "template": "50000000-0000-0000-0000-000000000001",
+ "config": {},
+ "slug": null,
+ "publication": null,
+ "source_identifier": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "has_unpublished_changes": false,
+ "resource_instance_lifecycle": null
+ }
+ },
+ {
+ "model": "models.graphmodel",
+ "pk": "fc44a56c-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Collection Not Migrated",
+ "description": "",
+ "deploymentfile": null,
+ "author": " ",
+ "deploymentdate": null,
+ "version": "",
+ "isresource": true,
+ "is_active": true,
+ "is_copy_immutable": false,
+ "iconclass": "",
+ "color": null,
+ "subtitle": "",
+ "ontology": null,
+ "jsonldcontext": null,
+ "template": "50000000-0000-0000-0000-000000000001",
+ "config": {},
+ "slug": null,
+ "publication": null,
+ "source_identifier": "b974103f-73bb-4f2a-bffb-8303227ba0da",
+ "has_unpublished_changes": false,
+ "resource_instance_lifecycle": null
+ }
+ },
+ {
+ "model": "models.graphmodel",
+ "pk": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "fields": {
+ "name": "No concept nodes",
+ "description": "",
+ "deploymentfile": null,
+ "author": " ",
+ "deploymentdate": null,
+ "version": "",
+ "isresource": true,
+ "is_active": true,
+ "is_copy_immutable": false,
+ "iconclass": "",
+ "color": null,
+ "subtitle": "",
+ "ontology": null,
+ "jsonldcontext": null,
+ "template": "50000000-0000-0000-0000-000000000001",
+ "config": {},
+ "slug": null,
+ "publication": "dbefcc6a-7b6d-11ef-a937-0aa766c61b64",
+ "source_identifier": null,
+ "has_unpublished_changes": false,
+ "resource_instance_lifecycle": "7e3cce56-fbfb-4a4b-8e83-59b9f9e7cb75"
+ }
+ },
+ {
+ "model": "models.graphmodel",
+ "pk": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "fields": {
+ "name": "Arches System Settings",
+ "description": "",
+ "deploymentfile": null,
+ "author": " ",
+ "deploymentdate": null,
+ "version": "",
+ "isresource": true,
+ "is_active": true,
+ "is_copy_immutable": false,
+ "iconclass": "fa fa-sliders",
+ "color": null,
+ "subtitle": "System configuration",
+ "ontology": null,
+ "jsonldcontext": null,
+ "template": "50000000-0000-0000-0000-000000000001",
+ "config": {},
+ "slug": null,
+ "publication": "6b07140a-2f4f-11ef-ae31-acde48001122",
+ "source_identifier": null,
+ "has_unpublished_changes": false,
+ "resource_instance_lifecycle": "e9a8a2b0-63b5-47a3-bbc4-9c09c0e759b1"
+ }
+ },
+ {
+ "model": "models.graphxpublishedgraph",
+ "pk": "063905de-7b66-11ef-a937-0aa766c61b64",
+ "fields": {
+ "notes": null,
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "user": 1,
+ "published_time": "2024-09-25T12:45:59.305",
+ "most_recent_edit": null
+ }
+ },
+ {
+ "model": "models.graphxpublishedgraph",
+ "pk": "6b07140a-2f4f-11ef-ae31-acde48001122",
+ "fields": {
+ "notes": null,
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "user": null,
+ "published_time": "2024-06-20T16:52:41.632",
+ "most_recent_edit": null
+ }
+ },
+ {
+ "model": "models.graphxpublishedgraph",
+ "pk": "ab3f6684-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "notes": null,
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "user": 1,
+ "published_time": "2024-09-25T13:40:42.648",
+ "most_recent_edit": null
+ }
+ },
+ {
+ "model": "models.graphxpublishedgraph",
+ "pk": "c371af82-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "notes": null,
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "user": null,
+ "published_time": "2024-09-25T13:41:23.243",
+ "most_recent_edit": null
+ }
+ },
+ {
+ "model": "models.graphxpublishedgraph",
+ "pk": "dbefcc6a-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "notes": null,
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "user": 1,
+ "published_time": "2024-09-25T13:42:04.335",
+ "most_recent_edit": null
+ }
+ },
+ {
+ "model": "models.graphxpublishedgraph",
+ "pk": "e43d3a06-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "notes": null,
+ "graph": "b974103f-73bb-4f2a-bffb-8303227ba0da",
+ "user": null,
+ "published_time": "2024-09-25T13:42:18.264",
+ "most_recent_edit": null
+ }
+ },
+ {
+ "model": "models.graphxpublishedgraph",
+ "pk": "fc50d346-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "notes": null,
+ "graph": "b974103f-73bb-4f2a-bffb-8303227ba0da",
+ "user": 1,
+ "published_time": "2024-09-25T13:42:58.658",
+ "most_recent_edit": null
+ }
+ },
+ {
+ "model": "models.language",
+ "pk": 1,
+ "fields": {
+ "code": "en",
+ "name": "English",
+ "default_direction": "ltr",
+ "scope": "system",
+ "isdefault": true
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "0e8ff31c-4148-11e7-998a-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "0e8ff31c-4148-11e7-998a-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "0e8ff31c-4148-11e7-998a-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "0e8ff31c-4148-11e7-998a-c4b301baab9f"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "20000000-0000-0000-0000-100000000000",
+ "fields": {
+ "legacygroupid": "",
+ "cardinality": "n",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "n",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb76a26-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "6cb76e86-7b6b-11ef-8082-0aa766c61b64"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "6cb76e86-7b6b-11ef-8082-0aa766c61b64"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "6cb76e86-7b6b-11ef-8082-0aa766c61b64"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "6cb76e86-7b6b-11ef-8082-0aa766c61b64"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb77200-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "6cb77322-7b6b-11ef-8082-0aa766c61b64"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb77322-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "6cb77322-7b6b-11ef-8082-0aa766c61b64"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb77552-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "n",
+ "parentnodegroup": "6cb77322-7b6b-11ef-8082-0aa766c61b64"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "8d213bfa-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "c5a2a2e8-fadd-11e6-9849-6c4008b05c4c",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "n",
+ "parentnodegroup": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c"
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "efbeeca8-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "fc44a742-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "1",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.nodegroup",
+ "pk": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "fields": {
+ "legacygroupid": null,
+ "cardinality": "n",
+ "parentnodegroup": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "fields": {
+ "name": "Project Extent",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "project_extent",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "fields": {
+ "name": "Mapbox",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "mapbox",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "fields": {
+ "name": "Map Zoom",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "map_zoom",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "fields": {
+ "name": "Map Settings",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "map_settings",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "fields": {
+ "name": "Search Results Grid",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_results_grid",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8ff9d1-4148-11e7-90ed-c4b301baab9f",
+ "fields": {
+ "name": "DEFAULT_MAP_ZOOM",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "default_map_zoom",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8ffaf5-4148-11e7-b24d-c4b301baab9f",
+ "fields": {
+ "name": "HEX_BIN_PRECISION",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "hex_bin_precision",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8ffbcf-4148-11e7-a95a-c4b301baab9f",
+ "fields": {
+ "name": "DEFAULT_BOUNDS",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "geojson-feature-collection",
+ "nodegroup": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{\"radius\": 2, \"weight\": 2, \"addToMap\": false, \"fillColor\": \"rgba(130, 130, 130, 0.5)\", \"layerIcon\": \"\", \"layerName\": \"\", \"lineColor\": \"rgba(130, 130, 130, 0.7)\", \"haloRadius\": 4, \"haloWeight\": 4, \"pointColor\": \"rgba(130, 130, 130, 0.7)\", \"layerLegend\": \"\", \"outlineColor\": \"rgba(200, 200, 200, 0.7)\", \"advancedStyle\": \"\", \"lineHaloColor\": \"rgba(200, 200, 200, 0.5)\", \"outlineWeight\": 2, \"clusterMaxZoom\": 5, \"layerActivated\": true, \"pointHaloColor\": \"rgba(200, 200, 200, 0.5)\", \"simplification\": 0.3, \"advancedStyling\": false, \"clusterDistance\": 20, \"clusterMinPoints\": 3}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "default_bounds",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8ffcab-4148-11e7-a571-c4b301baab9f",
+ "fields": {
+ "name": "HEX_BIN_SIZE",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "hex_bin_size",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e8fff21-4148-11e7-ba78-c4b301baab9f",
+ "fields": {
+ "name": "MAP_MAX_ZOOM",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "map_max_zoom",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e9000b0-4148-11e7-bd19-c4b301baab9f",
+ "fields": {
+ "name": "MAPBOX_API_KEY",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "mapbox_api_key",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e90017a-4148-11e7-82ce-c4b301baab9f",
+ "fields": {
+ "name": "MAP_MIN_ZOOM",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "map_min_zoom",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e900254-4148-11e7-9902-c4b301baab9f",
+ "fields": {
+ "name": "MAPBOX_SPRITES",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "mapbox_sprites",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "0e90031e-4148-11e7-a176-c4b301baab9f",
+ "fields": {
+ "name": "MAPBOX_GLYPHS",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "mapbox_glyphs",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "fields": {
+ "name": "TEMPORAL_SEARCH",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "temporal_search",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "32f2dc66-fae4-11e6-9556-6c4008b05c4c",
+ "fields": {
+ "name": "TIME_WHEEL_CONFIGURATION",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "time_wheel_configuration",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "32f2de17-fae4-11e6-bb3b-6c4008b05c4c",
+ "fields": {
+ "name": "COLOR_RAMP",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "domain-value",
+ "nodegroup": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{\"options\": [{\"id\": \"d010673f-506c-4e11-b705-d994535fa937\", \"text\": \"d3.scale.category20b()\", \"selected\": false}, {\"id\": \"94790607-b2bf-4328-bc1d-6c8e8d1aff42\", \"text\": \"d3.scale.category20()\", \"selected\": false}, {\"id\": \"92fc786c-3713-46a5-80d0-39cbc5c554ca\", \"text\": \"d3.scale.category10()\", \"selected\": false}, {\"id\": \"80e585ab-1eb6-44c0-a7de-222f27b1d8bb\", \"text\": \"d3.scale.category20c()\", \"selected\": false}], \"i18n_config\": {\"fn\": \"arches.app.datatypes.datatypes.DomainDataType\"}}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "color_ramp",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "64f6553c-7b65-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept Node Migration Test",
+ "description": "",
+ "istopnode": true,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": null,
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": null,
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SAVED_SEARCHES",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "saved_searches",
+ "hascustomalias": false,
+ "source_identifier": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb76a26-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Project Extent",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb76a26-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "project_extent",
+ "hascustomalias": false,
+ "source_identifier": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Mapbox",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "mapbox",
+ "hascustomalias": false,
+ "source_identifier": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Map Zoom",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "map_zoom",
+ "hascustomalias": false,
+ "source_identifier": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Map Settings",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb76e86-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "map_settings",
+ "hascustomalias": false,
+ "source_identifier": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "Search Results Grid",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_results_grid",
+ "hascustomalias": false,
+ "source_identifier": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "TEMPORAL_SEARCH",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "temporal_search",
+ "hascustomalias": false,
+ "source_identifier": "32f2d663-fae4-11e6-83ad-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77200-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "ANALYTICS",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb77200-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "analytics",
+ "hascustomalias": false,
+ "source_identifier": "c5a2a2e8-fadd-11e6-9849-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77322-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SYSTEM_SETTINGS",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb77322-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "system_settings",
+ "hascustomalias": false,
+ "source_identifier": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "APP_NAMES",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "app_names",
+ "hascustomalias": false,
+ "source_identifier": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77552-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SPARQL_ENDPOINT_PROVIDERS",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb77552-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "sparql_endpoint_providers",
+ "hascustomalias": false,
+ "source_identifier": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "BASIC_SEARCH_SETTINGS",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "basic_search_settings",
+ "hascustomalias": false,
+ "source_identifier": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb7778c-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SEARCH_ITEMS_PER_PAGE",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_items_per_page",
+ "hascustomalias": false,
+ "source_identifier": "d0987de3-fad8-11e6-a434-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb777f0-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SEARCH_EXPORT_LIMIT",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_export_limit",
+ "hascustomalias": false,
+ "source_identifier": "d0987ec0-fad8-11e6-aad3-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb7782c-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "DEFAULT_MAP_ZOOM",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "default_map_zoom",
+ "hascustomalias": false,
+ "source_identifier": "0e8ff9d1-4148-11e7-90ed-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77868-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "HEX_BIN_PRECISION",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "hex_bin_precision",
+ "hascustomalias": false,
+ "source_identifier": "0e8ffaf5-4148-11e7-b24d-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb778a4-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "DEFAULT_BOUNDS",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "geojson-feature-collection",
+ "nodegroup": "6cb76a26-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{\"radius\": 2, \"weight\": 2, \"addToMap\": false, \"fillColor\": \"rgba(130, 130, 130, 0.5)\", \"layerIcon\": \"\", \"layerName\": \"\", \"lineColor\": \"rgba(130, 130, 130, 0.7)\", \"haloRadius\": 4, \"haloWeight\": 4, \"pointColor\": \"rgba(130, 130, 130, 0.7)\", \"layerLegend\": \"\", \"outlineColor\": \"rgba(200, 200, 200, 0.7)\", \"advancedStyle\": \"\", \"lineHaloColor\": \"rgba(200, 200, 200, 0.5)\", \"outlineWeight\": 2, \"clusterMaxZoom\": 5, \"layerActivated\": true, \"pointHaloColor\": \"rgba(200, 200, 200, 0.5)\", \"simplification\": 0.3, \"advancedStyling\": false, \"clusterDistance\": 20, \"clusterMinPoints\": 3}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "default_bounds",
+ "hascustomalias": false,
+ "source_identifier": "0e8ffbcf-4148-11e7-a95a-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb778e0-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "HEX_BIN_SIZE",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "6cb76fbc-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "hex_bin_size",
+ "hascustomalias": false,
+ "source_identifier": "0e8ffcab-4148-11e7-a571-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb7791c-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "MAP_MAX_ZOOM",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "map_max_zoom",
+ "hascustomalias": false,
+ "source_identifier": "0e8fff21-4148-11e7-ba78-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77958-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "MAPBOX_API_KEY",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "mapbox_api_key",
+ "hascustomalias": false,
+ "source_identifier": "0e9000b0-4148-11e7-bd19-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77994-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "MAP_MIN_ZOOM",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "6cb76cba-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "map_min_zoom",
+ "hascustomalias": false,
+ "source_identifier": "0e90017a-4148-11e7-82ce-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb779d0-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "MAPBOX_SPRITES",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "mapbox_sprites",
+ "hascustomalias": false,
+ "source_identifier": "0e900254-4148-11e7-9902-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77a0c-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "MAPBOX_GLYPHS",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb76b7a-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "mapbox_glyphs",
+ "hascustomalias": false,
+ "source_identifier": "0e90031e-4148-11e7-a176-c4b301baab9f",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77a52-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "TIME_WHEEL_CONFIGURATION",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "time_wheel_configuration",
+ "hascustomalias": false,
+ "source_identifier": "32f2dc66-fae4-11e6-9556-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77a84-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "COLOR_RAMP",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "domain-value",
+ "nodegroup": "6cb770e8-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{\"options\": [{\"id\": \"80e585ab-1eb6-44c0-a7de-222f27b1d8bb\", \"text\": \"d3.scale.category20c()\", \"selected\": false}, {\"id\": \"92fc786c-3713-46a5-80d0-39cbc5c554ca\", \"text\": \"d3.scale.category10()\", \"selected\": false}, {\"id\": \"94790607-b2bf-4328-bc1d-6c8e8d1aff42\", \"text\": \"d3.scale.category20()\", \"selected\": false}, {\"id\": \"d010673f-506c-4e11-b705-d994535fa937\", \"text\": \"d3.scale.category20b()\", \"selected\": false}], \"i18n_config\": {\"fn\": \"arches.app.datatypes.datatypes.DomainDataType\"}}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "color_ramp",
+ "hascustomalias": false,
+ "source_identifier": "32f2de17-fae4-11e6-bb3b-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77ac0-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "APP_NAME",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "app_name",
+ "hascustomalias": false,
+ "source_identifier": "c5a2b94a-fadd-11e6-a029-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77afc-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SPARQL_ENDPOINT_PROVIDER",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb77552-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "sparql_endpoint_provider",
+ "hascustomalias": false,
+ "source_identifier": "c5a2ba63-fadd-11e6-9306-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77b38-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "ETL_USERNAME",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb77430-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "etl_username",
+ "hascustomalias": false,
+ "source_identifier": "c5a2bdb3-fadd-11e6-8c96-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77b74-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "GOOGLE_ANALYTICS_TRACKING_ID",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb77200-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "google_analytics_tracking_id",
+ "hascustomalias": false,
+ "source_identifier": "c5a2be85-fadd-11e6-b72f-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77bb0-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SEARCH_DROPDOWN_LENGTH",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "6cb77674-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_dropdown_length",
+ "hascustomalias": false,
+ "source_identifier": "d0987cc2-fad8-11e6-8581-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77bec-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SEARCH_URL",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_url",
+ "hascustomalias": false,
+ "source_identifier": "feb95eae-fa14-11e6-9683-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77c1e-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "IMAGE",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "file-list",
+ "nodegroup": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{\"maxFiles\": 1, \"imagesOnly\": false, \"activateMax\": false, \"maxFileSize\": null}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "image",
+ "hascustomalias": false,
+ "source_identifier": "feb96005-fa14-11e6-aa8d-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77c5a-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SEARCH_NAME",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_name",
+ "hascustomalias": false,
+ "source_identifier": "feb96126-fa14-11e6-9f19-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77c8c-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "SEARCH_DESCRIPTION",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "6cb76850-7b6b-11ef-8082-0aa766c61b64",
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_description",
+ "hascustomalias": false,
+ "source_identifier": "feb9623d-fa14-11e6-a9c3-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "6cb77cc8-7b6b-11ef-8082-0aa766c61b64",
+ "fields": {
+ "name": "ARCHES_SYSTEM_SETTINGS",
+ "description": "",
+ "istopnode": true,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": null,
+ "graph": "6cb767a6-7b6b-11ef-8082-0aa766c61b64",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "arches_system_settings",
+ "hascustomalias": false,
+ "source_identifier": "ff62303a-fa12-11e6-a889-6c4008b05c4c",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept Collector",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_collector",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "9f26d038-7b65-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept n1 w/ default",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept",
+ "nodegroup": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "config": "{\"rdmCollection\": \"2a259f4b-807c-4574-b681-47fef3086d88\"}",
+ "issearchable": true,
+ "isrequired": true,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_n1_w_default",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept Collector",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_collector",
+ "hascustomalias": false,
+ "source_identifier": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "ab1b8318-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept-list w/o default",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept-list",
+ "nodegroup": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"rdmCollection\": \"2a259f4b-807c-4574-b681-47fef3086d88\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_list_w_o_default",
+ "hascustomalias": false,
+ "source_identifier": "b29546b8-7b65-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "ab1b849e-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept n1 w/ default",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept",
+ "nodegroup": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"rdmCollection\": \"2a259f4b-807c-4574-b681-47fef3086d88\"}",
+ "issearchable": true,
+ "isrequired": true,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_n1_w_default",
+ "hascustomalias": false,
+ "source_identifier": "9f26d038-7b65-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "ab1b861a-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept-list w/ default",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept-list",
+ "nodegroup": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"rdmCollection\": \"2a259f4b-807c-4574-b681-47fef3086d88\"}",
+ "issearchable": true,
+ "isrequired": true,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_list_w_default",
+ "hascustomalias": false,
+ "source_identifier": "d8c678b6-7b65-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "ab1b8796-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept n1 w/o default",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept",
+ "nodegroup": "ab1b7e72-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"rdmCollection\": \"2a259f4b-807c-4574-b681-47fef3086d88\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_n1_w_o_default",
+ "hascustomalias": false,
+ "source_identifier": "b1a12448-7b65-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "ab1b8908-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept Node Migration Test",
+ "description": "",
+ "istopnode": true,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": null,
+ "graph": "ab1b7cc4-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": null,
+ "hascustomalias": false,
+ "source_identifier": "64f6553c-7b65-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "b1a12448-7b65-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept n1 w/o default",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept",
+ "nodegroup": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "config": "{\"rdmCollection\": \"2a259f4b-807c-4574-b681-47fef3086d88\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_n1_w_o_default",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "b29546b8-7b65-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept-list w/o default",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept-list",
+ "nodegroup": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "config": "{\"rdmCollection\": \"2a259f4b-807c-4574-b681-47fef3086d88\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_list_w_o_default",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c362fd2a-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "No concept nodes",
+ "description": "",
+ "istopnode": true,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": null,
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": null,
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c5a2a2e8-fadd-11e6-9849-6c4008b05c4c",
+ "fields": {
+ "name": "ANALYTICS",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "c5a2a2e8-fadd-11e6-9849-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "analytics",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "fields": {
+ "name": "SYSTEM_SETTINGS",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "system_settings",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "fields": {
+ "name": "APP_NAMES",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "app_names",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "fields": {
+ "name": "SPARQL_ENDPOINT_PROVIDERS",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "sparql_endpoint_providers",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c5a2b94a-fadd-11e6-a029-6c4008b05c4c",
+ "fields": {
+ "name": "APP_NAME",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "app_name",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c5a2ba63-fadd-11e6-9306-6c4008b05c4c",
+ "fields": {
+ "name": "SPARQL_ENDPOINT_PROVIDER",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "sparql_endpoint_provider",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c5a2bdb3-fadd-11e6-8c96-6c4008b05c4c",
+ "fields": {
+ "name": "ETL_USERNAME",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "etl_username",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c5a2be85-fadd-11e6-b72f-6c4008b05c4c",
+ "fields": {
+ "name": "GOOGLE_ANALYTICS_TRACKING_ID",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "c5a2a2e8-fadd-11e6-9849-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "google_analytics_tracking_id",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "semantic",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "semantic",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "cf89bcf6-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "string",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "string",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "fields": {
+ "name": "BASIC_SEARCH_SETTINGS",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "basic_search_settings",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "d0987cc2-fad8-11e6-8581-6c4008b05c4c",
+ "fields": {
+ "name": "SEARCH_DROPDOWN_LENGTH",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_dropdown_length",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "d0987de3-fad8-11e6-a434-6c4008b05c4c",
+ "fields": {
+ "name": "SEARCH_ITEMS_PER_PAGE",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_items_per_page",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "d0987ec0-fad8-11e6-aad3-6c4008b05c4c",
+ "fields": {
+ "name": "SEARCH_EXPORT_LIMIT",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_export_limit",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "d4a6981c-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "number",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc46b399-c824-45e5-86e2-5b992b8fa619",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "number",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "d8c678b6-7b65-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept-list w/ default",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept-list",
+ "nodegroup": "94cb9a10-7b65-11ef-a937-0aa766c61b64",
+ "graph": "8f7cfa3c-d0e0-4a66-8608-43dd726a1b81",
+ "config": "{\"rdmCollection\": \"2a259f4b-807c-4574-b681-47fef3086d88\"}",
+ "issearchable": true,
+ "isrequired": true,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_list_w_default",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "semantic",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "semantic",
+ "hascustomalias": false,
+ "source_identifier": "c97a05be-7b6d-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "dbdf13a2-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "string",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "string",
+ "hascustomalias": false,
+ "source_identifier": "cf89bcf6-7b6d-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "dbdf1578-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "number",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "number",
+ "nodegroup": "dbdf0db2-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "number",
+ "hascustomalias": false,
+ "source_identifier": "d4a6981c-7b6d-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "dbdf173a-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "No concept nodes",
+ "description": "",
+ "istopnode": true,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": null,
+ "graph": "dbdf0b96-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": null,
+ "hascustomalias": false,
+ "source_identifier": "c362fd2a-7b6d-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "e42f3e9c-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Collection Not Migrated",
+ "description": "",
+ "istopnode": true,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": null,
+ "graph": "b974103f-73bb-4f2a-bffb-8303227ba0da",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": null,
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "efbeeca8-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept not migrated",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept",
+ "nodegroup": "efbeeca8-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "b974103f-73bb-4f2a-bffb-8303227ba0da",
+ "config": "{\"rdmCollection\": \"00000000-0000-0000-0000-000000000005\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_not_migrated",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "fc44a742-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Concept not migrated",
+ "description": null,
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "concept",
+ "nodegroup": "fc44a742-7b6d-11ef-a937-0aa766c61b64",
+ "graph": "fc44a56c-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"rdmCollection\": \"00000000-0000-0000-0000-000000000005\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": "concept_not_migrated",
+ "hascustomalias": false,
+ "source_identifier": "efbeeca8-7b6d-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "fc44ac42-7b6d-11ef-a937-0aa766c61b64",
+ "fields": {
+ "name": "Collection Not Migrated",
+ "description": "",
+ "istopnode": true,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": null,
+ "graph": "fc44a56c-7b6d-11ef-a937-0aa766c61b64",
+ "config": "{\"en\": \"\"}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": null,
+ "exportable": false,
+ "alias": null,
+ "hascustomalias": false,
+ "source_identifier": "e42f3e9c-7b6d-11ef-a937-0aa766c61b64",
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "fields": {
+ "name": "SAVED_SEARCHES",
+ "description": "",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "saved_searches",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "feb95eae-fa14-11e6-9683-6c4008b05c4c",
+ "fields": {
+ "name": "SEARCH_URL",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_url",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "feb96005-fa14-11e6-aa8d-6c4008b05c4c",
+ "fields": {
+ "name": "IMAGE",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "file-list",
+ "nodegroup": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{\"maxFiles\": 1, \"imagesOnly\": false, \"activateMax\": false, \"maxFileSize\": null}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "image",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "feb96126-fa14-11e6-9f19-6c4008b05c4c",
+ "fields": {
+ "name": "SEARCH_NAME",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_name",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "feb9623d-fa14-11e6-a9c3-6c4008b05c4c",
+ "fields": {
+ "name": "SEARCH_DESCRIPTION",
+ "description": "Represents a single node in a graph",
+ "istopnode": false,
+ "ontologyclass": null,
+ "datatype": "string",
+ "nodegroup": "feb95991-fa14-11e6-974f-6c4008b05c4c",
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": false,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "search_description",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.node",
+ "pk": "ff62303a-fa12-11e6-a889-6c4008b05c4c",
+ "fields": {
+ "name": "ARCHES_SYSTEM_SETTINGS",
+ "description": "",
+ "istopnode": true,
+ "ontologyclass": null,
+ "datatype": "semantic",
+ "nodegroup": null,
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "config": "{}",
+ "issearchable": true,
+ "isrequired": false,
+ "is_immutable": false,
+ "sortorder": 0,
+ "fieldname": "",
+ "exportable": false,
+ "alias": "arches_system_settings",
+ "hascustomalias": false,
+ "source_identifier": null,
+ "sourcebranchpublication": null
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "04a141f3-dd4c-4be7-bc50-c538468b7003",
+ "fields": {
+ "conceptfrom": "7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "conceptto": "fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "relationtype": "narrower"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "54cebf72-2fc8-40ea-a419-ed8a50f7dde6",
+ "fields": {
+ "conceptfrom": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "conceptto": "fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "relationtype": "member"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "655926ee-5f26-4f8c-9a9a-74b4ccf2e8c8",
+ "fields": {
+ "conceptfrom": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "conceptto": "a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "relationtype": "member"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "65772bbb-e728-499e-a5c1-15ff72542ef0",
+ "fields": {
+ "conceptfrom": "7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "conceptto": "a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "relationtype": "narrower"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "67b23ff6-7b6b-11ef-a83a-db4328ef67dc",
+ "fields": {
+ "conceptfrom": "00000000-0000-0000-0000-000000000001",
+ "conceptto": "00000000-0000-0000-0000-000000000004",
+ "relationtype": "hasTopConcept"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "67b24e56-7b6b-11ef-a83a-af077e38e1b3",
+ "fields": {
+ "conceptfrom": "00000000-0000-0000-0000-000000000005",
+ "conceptto": "00000000-0000-0000-0000-000000000007",
+ "relationtype": "member"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "67e389e4-7b6b-11ef-a83a-e70f5a464ed7",
+ "fields": {
+ "conceptfrom": "00000000-0000-0000-0000-000000000004",
+ "conceptto": "00000000-0000-0000-0000-000000000007",
+ "relationtype": "narrower"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "7674c581-de56-453e-ae53-3be73eb518e4",
+ "fields": {
+ "conceptfrom": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "conceptto": "8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "relationtype": "member"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "90f74d06-e39e-4214-93ce-e12d1aacde02",
+ "fields": {
+ "conceptfrom": "f5a9b66c-7d28-4840-86df-fc1ed641d83f",
+ "conceptto": "7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "relationtype": "hasTopConcept"
+ }
+ },
+ {
+ "model": "models.relation",
+ "pk": "98ddb199-93e1-4519-90f3-134580fba8f0",
+ "fields": {
+ "conceptfrom": "7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "conceptto": "8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "relationtype": "narrower"
+ }
+ },
+ {
+ "model": "models.resourceinstance",
+ "pk": "a106c400-260c-11e7-a604-14109fd34195",
+ "fields": {
+ "graph": "ff623370-fa12-11e6-b98b-6c4008b05c4c",
+ "graph_publication": "6b07140a-2f4f-11ef-ae31-acde48001122",
+ "name": "",
+ "descriptors": {
+ "en": {
+ "name": null,
+ "map_popup": null,
+ "description": null
+ }
+ },
+ "legacyid": "a106c400-260c-11e7-a604-14109fd34195",
+ "createdtime": "2024-09-25T13:24:40.828",
+ "resource_instance_lifecycle_state": "4e2a6b8e-2489-4377-9c9f-29cfbd3e76c8",
+ "principaluser": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "02dd0153-faa4-4016-9207-903cc87a9b73",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": "3442b7e7-9bee-4c54-8d37-eca3a236ef8f",
+ "data": {
+ "0e8ffaf5-4148-11e7-b24d-c4b301baab9f": 4,
+ "0e8ffcab-4148-11e7-a571-c4b301baab9f": 100
+ },
+ "nodegroup_id": "0e8ff675-4148-11e7-9c88-c4b301baab9f",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "0621c870-5802-4cf0-8964-1934bd7f98bd",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": "3442b7e7-9bee-4c54-8d37-eca3a236ef8f",
+ "data": {
+ "0e8fdef0-4148-11e7-8330-c4b301baab9f": null,
+ "0e8ffbcf-4148-11e7-a95a-c4b301baab9f": {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "id": "b3496f23d0e20fe8fedd646dad1cb723",
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -122,
+ -52
+ ],
+ [
+ 128,
+ -52
+ ],
+ [
+ 128,
+ 69
+ ],
+ [
+ -122,
+ 69
+ ],
+ [
+ -122,
+ -52
+ ]
+ ]
+ ]
+ },
+ "properties": {}
+ }
+ ]
+ }
+ },
+ "nodegroup_id": "0e8fdef0-4148-11e7-8330-c4b301baab9f",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "2e49911e-6bcf-4711-bc59-2264cb71c4ab",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": "3442b7e7-9bee-4c54-8d37-eca3a236ef8f",
+ "data": {
+ "0e8ff9d1-4148-11e7-90ed-c4b301baab9f": 0,
+ "0e8fff21-4148-11e7-ba78-c4b301baab9f": 20,
+ "0e90017a-4148-11e7-82ce-c4b301baab9f": 0
+ },
+ "nodegroup_id": "0e8fe87a-4148-11e7-aa8b-c4b301baab9f",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "3442b7e7-9bee-4c54-8d37-eca3a236ef8f",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": null,
+ "data": {},
+ "nodegroup_id": "0e8ff31c-4148-11e7-998a-c4b301baab9f",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "4345f530-aa90-48cf-b4b3-92d1185ca439",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": "a70b6016-5145-4513-a6be-5901944347b4",
+ "data": {
+ "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c": null,
+ "c5a2b94a-fadd-11e6-a029-6c4008b05c4c": {
+ "en": {
+ "value": "Arches",
+ "direction": "ltr"
+ }
+ },
+ "c5a2bdb3-fadd-11e6-8c96-6c4008b05c4c": {
+ "en": {
+ "value": "ETL",
+ "direction": "ltr"
+ }
+ }
+ },
+ "nodegroup_id": "c5a2b1dc-fadd-11e6-a726-6c4008b05c4c",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "a4e0f0e2-9840-4ba6-acae-a6c430daf917",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": null,
+ "data": {
+ "d0987880-fad8-11e6-8cce-6c4008b05c4c": null,
+ "d0987cc2-fad8-11e6-8581-6c4008b05c4c": 100.0,
+ "d0987de3-fad8-11e6-a434-6c4008b05c4c": 5.0,
+ "d0987ec0-fad8-11e6-aad3-6c4008b05c4c": 10000
+ },
+ "nodegroup_id": "d0987880-fad8-11e6-8cce-6c4008b05c4c",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "a70b6016-5145-4513-a6be-5901944347b4",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": null,
+ "data": {},
+ "nodegroup_id": "c5a2a914-fadd-11e6-8f8f-6c4008b05c4c",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "c45a7069-1803-4d85-a017-61296a2ae760",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": "a70b6016-5145-4513-a6be-5901944347b4",
+ "data": {
+ "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c": null,
+ "c5a2ba63-fadd-11e6-9306-6c4008b05c4c": {
+ "en": {
+ "value": "arches.app.utils.data_management.sparql_providers.aat_provider.AAT_Provider",
+ "direction": "ltr"
+ }
+ }
+ },
+ "nodegroup_id": "c5a2b530-fadd-11e6-b5f6-6c4008b05c4c",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.tilemodel",
+ "pk": "f49e37b3-3686-4fbd-98c9-ab8241f72a60",
+ "fields": {
+ "resourceinstance": "a106c400-260c-11e7-a604-14109fd34195",
+ "parenttile": "3442b7e7-9bee-4c54-8d37-eca3a236ef8f",
+ "data": {
+ "0e9000b0-4148-11e7-bd19-c4b301baab9f": null,
+ "0e900254-4148-11e7-9902-c4b301baab9f": {
+ "en": {
+ "value": "mapbox://sprites/mapbox/basic-v9",
+ "direction": "ltr"
+ }
+ },
+ "0e90031e-4148-11e7-a176-c4b301baab9f": {
+ "en": {
+ "value": "mapbox://fonts/mapbox/{fontstack}/{range}.pbf",
+ "direction": "ltr"
+ }
+ }
+ },
+ "nodegroup_id": "0e8fe457-4148-11e7-9c10-c4b301baab9f",
+ "sortorder": 0,
+ "provisionaledits": null
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "071329b2-3d39-4c19-b265-f7ffa6ad2466",
+ "fields": {
+ "concept": "f5a9b66c-7d28-4840-86df-fc1ed641d83f",
+ "valuetype": "identifier",
+ "value": "http://localhost:8000/f5a9b66c-7d28-4840-86df-fc1ed641d83f",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "25ff5fe1-3b10-4ab8-a446-e907204b40b0",
+ "fields": {
+ "concept": "fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "valuetype": "identifier",
+ "value": "http://localhost:8000/fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "352fb55e-c5ee-4cfb-b2d2-51e387b0a1dd",
+ "fields": {
+ "concept": "7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "valuetype": "identifier",
+ "value": "http://localhost:8000/7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "54718390-038b-4d33-907a-e03da3347d96",
+ "fields": {
+ "concept": "fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "valuetype": "prefLabel",
+ "value": "child3",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "6df1d12c-9398-4734-9656-81712350af0b",
+ "fields": {
+ "concept": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "valuetype": "prefLabel",
+ "value": "Top concept",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "7738334d-c307-49be-a335-4f7989727116",
+ "fields": {
+ "concept": "a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "valuetype": "identifier",
+ "value": "http://localhost:8000/a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "7e4c0e04-2a58-456d-8728-5fa8019307a5",
+ "fields": {
+ "concept": "8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "valuetype": "prefLabel",
+ "value": "child2",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "8e88c7ea-a157-4846-826d-4422eb967b9e",
+ "fields": {
+ "concept": "a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "valuetype": "prefLabel",
+ "value": "child1",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "a5f20db4-182a-4066-8e80-1849e1c7ef78",
+ "fields": {
+ "concept": "f5a9b66c-7d28-4840-86df-fc1ed641d83f",
+ "valuetype": "prefLabel",
+ "value": "Test Thesaurus",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "ac41d9be-79db-4256-b368-2f4559cfbe55",
+ "fields": {
+ "concept": "00000000-0000-0000-0000-000000000007",
+ "valuetype": "prefLabel",
+ "value": "is related to",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "c12e7e6c-e417-11e6-b14b-0738913905b4",
+ "fields": {
+ "concept": "00000000-0000-0000-0000-000000000004",
+ "valuetype": "prefLabel",
+ "value": "Resource To Resource Relationship Types",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "ce3d6820-6fb4-4f7b-9971-c4e287a11558",
+ "fields": {
+ "concept": "8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "valuetype": "identifier",
+ "value": "http://localhost:8000/8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "d8c60bf4-e786-11e6-905a-b756ec83dad5",
+ "fields": {
+ "concept": "00000000-0000-0000-0000-000000000001",
+ "valuetype": "prefLabel",
+ "value": "Arches",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "d8c622f6-e786-11e6-905a-475a5eee86f5",
+ "fields": {
+ "concept": "00000000-0000-0000-0000-000000000005",
+ "valuetype": "prefLabel",
+ "value": "Resource To Resource Relationship Types",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "eab6d1fd-4030-4040-a7ed-aa99dbd4c2fe",
+ "fields": {
+ "concept": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "valuetype": "identifier",
+ "value": "http://localhost:8000/7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "fd271aa7-81a4-432c-9577-e3506b6f7f65",
+ "fields": {
+ "concept": "7ea5b0e1-d3b2-42bc-9f8f-5021012abcd2",
+ "valuetype": "prefLabel",
+ "value": "Top concept",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.value",
+ "pk": "fee39428-e83f-11e6-b49d-9b976819ac02",
+ "fields": {
+ "concept": "00000000-0000-0000-0000-000000000006",
+ "valuetype": "prefLabel",
+ "value": "Candidates",
+ "language": "en"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000001",
+ "fields": {
+ "name": "text-widget",
+ "component": "views/components/widgets/text",
+ "defaultconfig": {
+ "width": "100%",
+ "maxLength": null,
+ "uneditable": false,
+ "placeholder": {
+ "en": "Enter text"
+ },
+ "defaultValue": {
+ "en": {
+ "value": "",
+ "direction": "ltr"
+ }
+ },
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "string"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000002",
+ "fields": {
+ "name": "concept-select-widget",
+ "component": "views/components/widgets/concept-select",
+ "defaultconfig": {
+ "options": [],
+ "placeholder": "Select an option",
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "concept"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000003",
+ "fields": {
+ "name": "switch-widget",
+ "component": "views/components/widgets/switch",
+ "defaultconfig": {
+ "subtitle": {
+ "en": "Click to switch"
+ },
+ "defaultValue": null
+ },
+ "helptext": null,
+ "datatype": "boolean"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000004",
+ "fields": {
+ "name": "datepicker-widget",
+ "component": "views/components/widgets/datepicker",
+ "defaultconfig": {
+ "maxDate": false,
+ "minDate": false,
+ "viewMode": "days",
+ "placeholder": "Enter date",
+ "defaultValue": ""
+ },
+ "helptext": null,
+ "datatype": "date"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000005",
+ "fields": {
+ "name": "rich-text-widget",
+ "component": "views/components/widgets/rich-text",
+ "defaultconfig": {
+ "width": "100%",
+ "maxLength": null,
+ "uneditable": false,
+ "placeholder": {
+ "en": "Enter text"
+ },
+ "defaultValue": {
+ "en": {
+ "value": "",
+ "direction": "ltr"
+ }
+ },
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "string"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000006",
+ "fields": {
+ "name": "radio-boolean-widget",
+ "component": "views/components/widgets/radio-boolean",
+ "defaultconfig": {
+ "defaultValue": null
+ },
+ "helptext": null,
+ "datatype": "boolean"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000007",
+ "fields": {
+ "name": "map-widget",
+ "component": "views/components/widgets/map",
+ "defaultconfig": {
+ "zoom": 0,
+ "pitch": 0.0,
+ "basemap": "streets",
+ "bearing": 0.0,
+ "centerX": 0,
+ "centerY": 0,
+ "maxZoom": 20,
+ "minZoom": 0,
+ "rerender": true,
+ "defaultValue": "",
+ "featureColor": "#FF0000",
+ "geometryTypes": [
+ {
+ "id": "Point",
+ "text": "Point"
+ },
+ {
+ "id": "Line",
+ "text": "Line"
+ },
+ {
+ "id": "Polygon",
+ "text": "Polygon"
+ }
+ ],
+ "overlayConfigs": [],
+ "overlayOpacity": 0.0,
+ "geocodeProvider": "10000000-0000-0000-0000-010000000000",
+ "geocoderVisible": true,
+ "defaultValueType": "",
+ "featureLineWidth": 1,
+ "featurePointSize": 3,
+ "geocodePlaceholder": "Search"
+ },
+ "helptext": null,
+ "datatype": "geojson-feature-collection"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000008",
+ "fields": {
+ "name": "number-widget",
+ "component": "views/components/widgets/number",
+ "defaultconfig": {
+ "max": "",
+ "min": "",
+ "step": "",
+ "width": "100%",
+ "format": "",
+ "prefix": "",
+ "suffix": "",
+ "precision": "",
+ "uneditable": false,
+ "placeholder": "Enter number",
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder",
+ "prefix",
+ "suffix"
+ ]
+ },
+ "helptext": null,
+ "datatype": "number"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000009",
+ "fields": {
+ "name": "concept-radio-widget",
+ "component": "views/components/widgets/concept-radio",
+ "defaultconfig": {
+ "options": [],
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "concept"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000012",
+ "fields": {
+ "name": "concept-multiselect-widget",
+ "component": "views/components/widgets/concept-multiselect",
+ "defaultconfig": {
+ "options": [],
+ "placeholder": "Select an option",
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "concept-list"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000013",
+ "fields": {
+ "name": "concept-checkbox-widget",
+ "component": "views/components/widgets/concept-checkbox",
+ "defaultconfig": {
+ "options": [],
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "concept-list"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000015",
+ "fields": {
+ "name": "domain-select-widget",
+ "component": "views/components/widgets/domain-select",
+ "defaultconfig": {
+ "placeholder": "Select an option",
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "domain-value"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000016",
+ "fields": {
+ "name": "domain-multiselect-widget",
+ "component": "views/components/widgets/domain-multiselect",
+ "defaultconfig": {
+ "placeholder": "Select an option",
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "domain-value-list"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000017",
+ "fields": {
+ "name": "domain-radio-widget",
+ "component": "views/components/widgets/domain-radio",
+ "defaultconfig": {
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "domain-value"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000018",
+ "fields": {
+ "name": "domain-checkbox-widget",
+ "component": "views/components/widgets/domain-checkbox",
+ "defaultconfig": {
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "domain-value-list"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "10000000-0000-0000-0000-000000000019",
+ "fields": {
+ "name": "file-widget",
+ "component": "views/components/widgets/file",
+ "defaultconfig": {
+ "rerender": true,
+ "maxFilesize": "200",
+ "defaultValue": [],
+ "acceptedFiles": ""
+ },
+ "helptext": null,
+ "datatype": "file-list"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "19e56148-82b8-47eb-b66e-f6243639a1a8",
+ "fields": {
+ "name": "reference-select-widget",
+ "component": "views/components/widgets/reference-select",
+ "defaultconfig": {
+ "placeholder": "Select an option",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "reference"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "31f3728c-7613-11e7-a139-784f435179ea",
+ "fields": {
+ "name": "resource-instance-select-widget",
+ "component": "views/components/widgets/resource-instance-select",
+ "defaultconfig": {
+ "placeholder": "",
+ "i18n_properties": [
+ "placeholder"
+ ],
+ "defaultResourceInstance": []
+ },
+ "helptext": null,
+ "datatype": "resource-instance"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "46ef064b-2611-4708-9f52-60136bd8a65b",
+ "fields": {
+ "name": "non-localized-text-widget",
+ "component": "views/components/widgets/non-localized-text",
+ "defaultconfig": {
+ "width": "100%",
+ "maxLength": null,
+ "uneditable": false,
+ "placeholder": "Enter text",
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "non-localized-string"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "aae743b8-4c48-11ea-988b-2bc775672c81",
+ "fields": {
+ "name": "iiif-widget",
+ "component": "views/components/widgets/iiif",
+ "defaultconfig": {
+ "defaultManifest": ""
+ },
+ "helptext": null,
+ "datatype": "annotation"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "adfd15ce-dbab-11e7-86d1-0fcf08612b27",
+ "fields": {
+ "name": "edtf-widget",
+ "component": "views/components/widgets/edtf",
+ "defaultconfig": {
+ "placeholder": "",
+ "defaultValue": "",
+ "i18n_properties": [
+ "placeholder"
+ ]
+ },
+ "helptext": null,
+ "datatype": "edtf"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "ca0c43ff-af73-4349-bafd-53ff9f22eebd",
+ "fields": {
+ "name": "urldatatype",
+ "component": "views/components/widgets/urldatatype",
+ "defaultconfig": {
+ "link_color": "#0055a0",
+ "i18n_properties": [
+ "url_label_placeholder",
+ "url_placeholder"
+ ],
+ "url_placeholder": "Enter URL... ",
+ "url_label_placeholder": "Enter URL Label... "
+ },
+ "helptext": null,
+ "datatype": "url"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "f5d6b190-bbf0-4dc9-b991-1debab8cb4a9",
+ "fields": {
+ "name": "node-value-select",
+ "component": "views/components/widgets/node-value-select",
+ "defaultconfig": {
+ "placeholder": "",
+ "i18n_properties": [
+ "placeholder"
+ ],
+ "displayOnlySelectedNode": false
+ },
+ "helptext": null,
+ "datatype": "node-value"
+ }
+ },
+ {
+ "model": "models.widget",
+ "pk": "ff3c400a-76ec-11e7-a793-784f435179ea",
+ "fields": {
+ "name": "resource-instance-multiselect-widget",
+ "component": "views/components/widgets/resource-instance-multiselect",
+ "defaultconfig": {
+ "placeholder": "",
+ "i18n_properties": [
+ "placeholder"
+ ],
+ "defaultResourceInstance": []
+ },
+ "helptext": null,
+ "datatype": "resource-instance-list"
+ }
+ },
+ {
+ "model": "arches_references.list",
+ "pk": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "fields": {
+ "name": "Top concept",
+ "dynamic": false,
+ "search_only": false
+ }
+ },
+ {
+ "model": "arches_references.listitem",
+ "pk": "8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "fields": {
+ "uri": "http://localhost:8000/plugins/controlled-list-manager/item/8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "list": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "sortorder": 1,
+ "parent": null,
+ "guide": false
+ }
+ },
+ {
+ "model": "arches_references.listitem",
+ "pk": "a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "fields": {
+ "uri": "http://localhost:8000/plugins/controlled-list-manager/item/a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "list": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "sortorder": 0,
+ "parent": null,
+ "guide": false
+ }
+ },
+ {
+ "model": "arches_references.listitem",
+ "pk": "fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "fields": {
+ "uri": "http://localhost:8000/plugins/controlled-list-manager/item/fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "list": "2a259f4b-807c-4574-b681-47fef3086d88",
+ "sortorder": 2,
+ "parent": null,
+ "guide": false
+ }
+ },
+ {
+ "model": "arches_references.listitemvalue",
+ "pk": "54718390-038b-4d33-907a-e03da3347d96",
+ "fields": {
+ "list_item": "fde79d7b-9182-4743-bc81-baa2e72367b2",
+ "valuetype": "prefLabel",
+ "language": "en",
+ "value": "child3"
+ }
+ },
+ {
+ "model": "arches_references.listitemvalue",
+ "pk": "7e4c0e04-2a58-456d-8728-5fa8019307a5",
+ "fields": {
+ "list_item": "8f9a53b7-35cd-48be-9093-bd202fbe8e0b",
+ "valuetype": "prefLabel",
+ "language": "en",
+ "value": "child2"
+ }
+ },
+ {
+ "model": "arches_references.listitemvalue",
+ "pk": "8e88c7ea-a157-4846-826d-4422eb967b9e",
+ "fields": {
+ "list_item": "a1f4cab6-f577-40af-b8fe-589c61236dd2",
+ "valuetype": "prefLabel",
+ "language": "en",
+ "value": "child1"
+ }
+ }
+]
\ No newline at end of file