diff --git a/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextCache.java b/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextCache.java index 57e8f20..c0624c8 100644 --- a/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextCache.java +++ b/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextCache.java @@ -2,11 +2,12 @@ package org.gcube.informationsystem.resourceregistry.api.contexts; import java.util.ArrayList; import java.util.Calendar; -import java.util.HashMap; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; +import java.util.SortedSet; import java.util.TreeMap; +import java.util.TreeSet; import java.util.UUID; import java.util.concurrent.TimeUnit; @@ -15,6 +16,7 @@ import org.gcube.informationsystem.contexts.impl.relations.IsParentOfImpl; import org.gcube.informationsystem.contexts.reference.entities.Context; import org.gcube.informationsystem.contexts.reference.relations.IsParentOf; import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException; +import org.gcube.informationsystem.tree.Tree; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -47,23 +49,6 @@ public class ContextCache { return singleton; } - public void cleanCache() { - cleanCache(Calendar.getInstance()); - } - - protected void cleanCache(Calendar now) { - this.contexts = null; - this.uuidToContext = new LinkedHashMap<>(); - this.uuidToContextFullName = new LinkedHashMap<>(); - this.contextFullNameToUUID = new TreeMap<>(); - this.creationTime = Calendar.getInstance(); - this.creationTime.setTimeInMillis(now.getTimeInMillis()); - this.expiringTime = Calendar.getInstance(); - this.expiringTime.setTimeInMillis(now.getTimeInMillis()); - this.expiringTime.add(Calendar.MILLISECOND, -1); - this.expiringTime.add(Calendar.MILLISECOND, expiringTimeout); - } - protected ContextCacheRenewal contextCacheRenewal; // in millisec used for logging purposes only @@ -75,12 +60,37 @@ public class ContextCache { protected Map uuidToContext; protected Map uuidToContextFullName; protected Map contextFullNameToUUID; + protected Tree contextsTree; public ContextCache() { Calendar now = Calendar.getInstance(); cleanCache(now); } + public void cleanCache() { + cleanCache(Calendar.getInstance()); + } + + protected void cleanCache(Calendar calendar) { + this.contexts = null; + this.uuidToContext = new LinkedHashMap<>(); + this.uuidToContextFullName = new LinkedHashMap<>(); + this.contextFullNameToUUID = new TreeMap<>(); + this.contextsTree = new Tree(new ContextInformation()); + this.contextsTree.setAllowMultipleInheritance(false); + this.creationTime = Calendar.getInstance(); + this.creationTime.setTimeInMillis(calendar.getTimeInMillis()); + this.expiringTime = Calendar.getInstance(); + this.expiringTime.setTimeInMillis(calendar.getTimeInMillis()); + this.expiringTime.add(Calendar.MILLISECOND, -1); + this.expiringTime.add(Calendar.MILLISECOND, expiringTimeout); + } + + public void renew() throws ResourceRegistryException { + cleanCache(); + refreshContextsIfNeeded(); + } + public ContextCacheRenewal getContextCacheRenewal() { return contextCacheRenewal; } @@ -91,13 +101,12 @@ public class ContextCache { } } - public void refreshContextsIfNeeded() throws ResourceRegistryException { + public synchronized void refreshContextsIfNeeded() throws ResourceRegistryException { Calendar now = Calendar.getInstance(); if((now.after(expiringTime) || (contexts==null)) && contextCacheRenewal!=null) { try { List contexts = contextCacheRenewal.renew(); - cleanCache(now); - setContexts(contexts); + setContexts(now, contexts); } catch (ResourceRegistryException e) { logger.error("Unable to refresh Cache", e); if(contexts==null) { @@ -113,7 +122,13 @@ public class ContextCache { return contexts; } - protected void setContexts(List contexts) { + public void setContexts(List contexts) { + Calendar now = Calendar.getInstance(); + setContexts(now, contexts); + } + + protected void setContexts(Calendar calendar, List contexts) { + cleanCache(calendar); this.contexts = new ArrayList<>(); for(Context c : contexts) { @@ -140,8 +155,6 @@ public class ContextCache { } } - - for(Context context : contexts) { UUID uuid = context.getID(); String fullName = getContextFullName(context); @@ -149,6 +162,13 @@ public class ContextCache { this.contextFullNameToUUID.put(fullName, uuid); } + SortedSet contextFullNames = new TreeSet(contextFullNameToUUID.keySet()); + for(String contextFullName : contextFullNames) { + UUID uuid = contextFullNameToUUID.get(contextFullName); + Context context = uuidToContext.get(uuid); + contextsTree.addNode(context); + } + } protected String getContextFullName(Context context) { @@ -201,7 +221,7 @@ public class ContextCache { */ public synchronized Map getUUIDToContextFullNameAssociation() throws ResourceRegistryException { refreshContextsIfNeeded(); - return new HashMap<>(uuidToContextFullName); + return new LinkedHashMap<>(uuidToContextFullName); } /** @@ -209,7 +229,11 @@ public class ContextCache { */ public synchronized Map getContextFullNameToUUIDAssociation() throws ResourceRegistryException { refreshContextsIfNeeded(); - return new HashMap<>(contextFullNameToUUID); + return new TreeMap<>(contextFullNameToUUID); + } + + public Tree getContextsTree() { + return contextsTree; } } diff --git a/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextInformation.java b/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextInformation.java new file mode 100644 index 0000000..8b06330 --- /dev/null +++ b/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextInformation.java @@ -0,0 +1,30 @@ +package org.gcube.informationsystem.resourceregistry.api.contexts; + +import java.util.LinkedHashSet; +import java.util.Set; + +import org.gcube.informationsystem.contexts.reference.entities.Context; +import org.gcube.informationsystem.contexts.reference.relations.IsParentOf; +import org.gcube.informationsystem.tree.NodeInformation; + +public class ContextInformation implements NodeInformation { + + @Override + public String getIdentifier(Context context) { + return context.getID().toString(); + } + + @Override + public Set getParentIdentifiers(Context root, Context context) { + Set set = new LinkedHashSet<>(); + if(root !=null && context.getID().compareTo(root.getID())==0) { + return set; + } + IsParentOf parent = context.getParent(); + if(parent!=null) { + set.add(parent.getSource().getID().toString()); + } + return set; + } + +} diff --git a/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextUtility.java b/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextUtility.java index 16248e2..741a9d5 100644 --- a/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextUtility.java +++ b/src/main/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextUtility.java @@ -23,7 +23,7 @@ public class ContextUtility { private static Logger logger = LoggerFactory.getLogger(ContextUtility.class); -// public static Set getContextUUIDSe(String jsonArray) throws IOException { +// public static Set getContextUUIDSet(String jsonArray) throws IOException { // ObjectMapper mapper = ElementMapper.getObjectMapper(); // JavaType type = mapper.getTypeFactory().constructCollectionType(HashSet.class, UUID.class); // return mapper.readValue(jsonArray, type); @@ -33,7 +33,7 @@ public class ContextUtility { // Set uuids = getContextUUIDSet(jsonArray); // return getContextFullNameSet(uuids); // } -// + public static Map getContextMap(String objectnode) throws JsonParseException, JsonMappingException, IOException{ ObjectMapper mapper = ElementMapper.getObjectMapper(); JavaType type = mapper.getTypeFactory().constructMapType(HashMap.class, UUID.class, String.class); diff --git a/src/test/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextCacheTest.java b/src/test/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextCacheTest.java new file mode 100644 index 0000000..7f4595e --- /dev/null +++ b/src/test/java/org/gcube/informationsystem/resourceregistry/api/contexts/ContextCacheTest.java @@ -0,0 +1,80 @@ +package org.gcube.informationsystem.resourceregistry.api.contexts; + +import java.io.File; +import java.io.IOException; +import java.net.URL; +import java.nio.charset.Charset; +import java.nio.file.Files; +import java.util.List; +import java.util.UUID; + +import org.gcube.informationsystem.contexts.reference.entities.Context; +import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException; +import org.gcube.informationsystem.serialization.ElementMapper; +import org.gcube.informationsystem.tree.Node; +import org.gcube.informationsystem.tree.NodeElaborator; +import org.gcube.informationsystem.tree.Tree; +import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** + * @author Luca Frosini (ISTI - CNR) + */ +public class ContextCacheTest{ + + private static final Logger logger = LoggerFactory.getLogger(ContextCacheTest.class); + + protected File getTypesDirectory() throws Exception { + URL logbackFileURL = ContextCacheTest.class.getClassLoader().getResource("logback-test.xml"); + File logbackFile = new File(logbackFileURL.toURI()); + File resourcesDirectory = logbackFile.getParentFile(); + return new File(resourcesDirectory, "contexts"); + } + + protected String readFile(File file) throws IOException { + byte[] encoded = Files.readAllBytes(file.toPath()); + return new String(encoded, Charset.defaultCharset()); + } + + protected List getContexts() throws Exception { + File typesDirectory = getTypesDirectory(); + File file = new File(typesDirectory, "contexts.json"); + String json = readFile(file); + List contexts = ElementMapper.unmarshalList(Context.class, json); + return contexts; + } + + @Test + public void test() throws Exception { + List contexts = getContexts(); + ContextCache contextCache = new ContextCache(); + contextCache.setContexts(contexts); + contextCache.setContextCacheRenewal(new ContextCacheRenewal() { + @Override + public List renew() throws ResourceRegistryException { + try { + return getContexts(); + }catch (Exception e) { + throw new ResourceRegistryException(e); + } + } + }); + Tree contextTree = contextCache.getContextsTree(); + contextTree.elaborate(new NodeElaborator() { + + @Override + public void elaborate(Node node, int level) throws Exception { + StringBuffer stringBuffer = new StringBuffer(); + for (int i = 0; i < level; ++i) { + stringBuffer.append(Node.INDENTATION); + } + + Context context = node.getNodeElement(); + UUID uuid = context.getID(); + String fullName = contextCache.getContextFullNameByUUID(uuid); + logger.info("{}- {} (ID:{})", stringBuffer.toString(), fullName, uuid); + } + }); + } +} diff --git a/src/test/resources/contexts/contexts.json b/src/test/resources/contexts/contexts.json new file mode 100644 index 0000000..5efa883 --- /dev/null +++ b/src/test/resources/contexts/contexts.json @@ -0,0 +1,5618 @@ +[ + { + "type": "Context", + "id": "fe6118e1-30c0-48f9-997e-2bde05690b82", + "name": "d4science.research-infrastructures.eu", + "parent": null, + "children": + [ + { + "type": "IsParentOf", + "id": "be50674f-1229-4204-b9c8-163664d13f8e", + "target": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + { + "type": "IsParentOf", + "id": "91f6c744-7b1f-43e5-9383-cacea441ee32", + "target": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + { + "type": "IsParentOf", + "id": "69227f66-6492-4e92-80ed-64a4961a436a", + "target": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + { + "type": "IsParentOf", + "id": "df58505e-8c89-4b77-8320-96e9723062c9", + "target": + { + "type": "Context", + "id": "5121bcaa-2abd-4e4f-aa07-57c76ea2366d", + "name": "OpenAIRE" + } + }, + { + "type": "IsParentOf", + "id": "479882ee-3f30-42ed-99dd-3298e583d7ce", + "target": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + { + "type": "IsParentOf", + "id": "1d269780-6f1b-4d83-a596-68dcf631c16f", + "target": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + { + "type": "IsParentOf", + "id": "ad2ad1f3-db2f-476f-a24a-550d7505ef71", + "target": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + } + ] + }, + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM", + "parent": + { + "type": "IsParentOf", + "id": "be50674f-1229-4204-b9c8-163664d13f8e", + "source": + { + "type": "Context", + "id": "fe6118e1-30c0-48f9-997e-2bde05690b82", + "name": "d4science.research-infrastructures.eu" + } + }, + "children": + [ + { + "type": "IsParentOf", + "id": "8d403532-8289-41ec-b64c-1392b0e696b6", + "target": + { + "type": "Context", + "id": "ef74e390-fc6d-11e8-a745-d7890df55d7f", + "name": "CFE_DATA" + } + }, + { + "type": "IsParentOf", + "id": "ff20fb61-1dc5-4333-a2d6-6f7fbd045203", + "target": + { + "type": "Context", + "id": "30788660-f54f-11ed-b8a9-e17e530f7483", + "name": "CultureDigitalSkills" + } + }, + { + "type": "IsParentOf", + "id": "9f23abce-a1a1-4fb5-bdd6-8171a2dd3c62", + "target": + { + "type": "Context", + "id": "0eb25b90-d5cb-11ec-ac90-d2b4dd1b53ba", + "name": "DeepU" + } + }, + { + "type": "IsParentOf", + "id": "45f79908-250c-458b-b113-ed89c7353a45", + "target": + { + "type": "Context", + "id": "33eb27f0-a992-11ea-a95f-8df5878bc02d", + "name": "GRSF_Pre" + } + }, + { + "type": "IsParentOf", + "id": "5b87c577-d7b6-4043-9c90-e511eebc3e62", + "target": + { + "type": "Context", + "id": "b9e21cf0-1047-11ee-b161-b39c51104fdf", + "name": "ITINERIS_CriticalZoneVRE" + } + }, + { + "type": "IsParentOf", + "id": "9eeceaab-d629-4ba9-9e16-1cd2f27e5861", + "target": + { + "type": "Context", + "id": "7a7a87e0-19ce-11eb-adc8-b3e87bd72f1a", + "name": "MOVING_Project" + } + }, + { + "type": "IsParentOf", + "id": "4807e8f0-5055-4ee5-a645-013cee6e973f", + "target": + { + "type": "Context", + "id": "3c256010-f54e-11ed-b8a9-e17e530f7483", + "name": "NAVIGATOR-AOUS" + } + }, + { + "type": "IsParentOf", + "id": "f7baaed4-57b1-459d-8a11-29175d3334a0", + "target": + { + "type": "Context", + "id": "a4f44010-932f-11ed-a909-ab4aa9cd501a", + "name": "NAVIGATOR-UNIPI" + } + }, + { + "type": "IsParentOf", + "id": "61c096f6-557e-414f-a35f-08ef37bdde0c", + "target": + { + "type": "Context", + "id": "86f1eb90-93e7-11e8-b325-8c70a8e6a0ef", + "name": "PerformFISH-KPIs" + } + }, + { + "type": "IsParentOf", + "id": "5ea2f47b-0a0f-4482-99d9-f954169cc881", + "target": + { + "type": "Context", + "id": "302d22d0-af58-11ec-ac90-d2b4dd1b53ba", + "name": "SOFIA-TAF" + } + }, + { + "type": "IsParentOf", + "id": "2dc6a148-b94c-461c-b0ae-36c1c8618705", + "target": + { + "type": "Context", + "id": "552215d0-524f-11e6-9acc-af5600b62d32", + "name": "WECAFC-FIRMS" + } + }, + { + "type": "IsParentOf", + "id": "072446e2-3744-4ab0-94d5-595f6d7234c8", + "target": + { + "type": "Context", + "id": "2f8524e0-85e5-11e8-8aff-ec993fe29e6c", + "name": "AGINFRAplusShowcase" + } + }, + { + "type": "IsParentOf", + "id": "f98de20a-8799-4e55-828d-f2868276e03f", + "target": + { + "type": "Context", + "id": "b406d010-fc87-11e8-a65c-a45ebf91bc16", + "name": "CollabResearch" + } + }, + { + "type": "IsParentOf", + "id": "13ec2ce0-3568-40be-98df-abe2b183b4f1", + "target": + { + "type": "Context", + "id": "44d61f90-fc8a-11e8-b1ac-e2291ca1c848", + "name": "D4STeam" + } + }, + { + "type": "IsParentOf", + "id": "f76b2ce4-478c-4375-b5a2-21157f0123f2", + "target": + { + "type": "Context", + "id": "0218fe10-fd30-11e8-906d-a74c9f2e5800", + "name": "GRSF" + } + }, + { + "type": "IsParentOf", + "id": "dff2602c-3efa-4480-acd2-5482949f08d1", + "target": + { + "type": "Context", + "id": "948a9860-69ff-11eb-9efd-db57e5f19379", + "name": "MOVING_CoordinationManagement" + } + }, + { + "type": "IsParentOf", + "id": "6f04c94a-9e1b-43ce-a065-25b8a2531f8e", + "target": + { + "type": "Context", + "id": "10ae40e0-d599-11eb-a499-b8df1083f615", + "name": "MOVING_RegionalMAPs" + } + }, + { + "type": "IsParentOf", + "id": "01553441-5624-497d-8221-3a21c993be80", + "target": + { + "type": "Context", + "id": "3a94adf0-f54e-11ed-b8a6-e17e530f7483", + "name": "NAVIGATOR-AUSL_TC" + } + }, + { + "type": "IsParentOf", + "id": "8822efb1-8858-4f6d-9ea9-ce5b6f1739a3", + "target": + { + "type": "Context", + "id": "d91dcc70-77dc-11e9-9d52-acd3be641cc1", + "name": "PerformFISH_WP4" + } + }, + { + "type": "IsParentOf", + "id": "aa18e0e5-1e49-4f4f-b282-b6bc7690ad63", + "target": + { + "type": "Context", + "id": "eb167b30-96dd-11eb-9efd-db57e5f19379", + "name": "SerGen-Covid19_Operatore" + } + }, + { + "type": "IsParentOf", + "id": "3b5a5dda-9b8e-433c-a5ce-5a307ae467a4", + "target": + { + "type": "Context", + "id": "f30e7d30-044d-11ee-b161-b39c51104fdf", + "name": "EMSO-ERIC" + } + }, + { + "type": "IsParentOf", + "id": "d3fb3160-290a-4008-aa87-e225d70123a8", + "target": + { + "type": "Context", + "id": "0090a7e0-90e9-11e8-b31f-8c70a8e6a0ef", + "name": "FIT4RRI" + } + }, + { + "type": "IsParentOf", + "id": "ed639923-f7c4-4cd2-91e8-1d337d6484fd", + "target": + { + "type": "Context", + "id": "c71b8350-b330-11e6-94e9-8f130aecbe51", + "name": "GRSF_Admin" + } + }, + { + "type": "IsParentOf", + "id": "ab059f07-108f-400d-8f86-9bbc0741984c", + "target": + { + "type": "Context", + "id": "146b4a90-388e-11ec-a499-b8df1083f615", + "name": "MOVING_EU-MultiActorPlatform" + } + }, + { + "type": "IsParentOf", + "id": "9d363f17-17dc-4eb5-854a-fb68aa9e3999", + "target": + { + "type": "Context", + "id": "c0429760-94af-11ec-8b38-a2aaf7b24d98", + "name": "MOVING_StoryMaps" + } + }, + { + "type": "IsParentOf", + "id": "0efc9484-6e12-4716-be1f-fa74edc02fbe", + "target": + { + "type": "Context", + "id": "3c56f760-f54e-11ed-b8a9-e17e530f7483", + "name": "NAVIGATOR-AOUC" + } + }, + { + "type": "IsParentOf", + "id": "18e7c2a0-7628-438d-b138-7585e37bb10c", + "target": + { + "type": "Context", + "id": "ad256970-906c-11eb-9efd-db57e5f19379", + "name": "NAVIGATOR-DEV" + } + }, + { + "type": "IsParentOf", + "id": "9ea11ac3-8199-4fb2-af91-ae94fbc94611", + "target": + { + "type": "Context", + "id": "4d56e910-43d1-11ec-8b37-a2aaf7b24d98", + "name": "NotebookLab" + } + }, + { + "type": "IsParentOf", + "id": "82da5a39-1009-4894-97e8-366695b2cd33", + "target": + { + "type": "Context", + "id": "5da6fdd0-feee-11ed-b15f-b39c51104fdf", + "name": "OpenScientometricsLab" + } + }, + { + "type": "IsParentOf", + "id": "9a78944b-f56d-49d9-adca-4f95b7f238f5", + "target": + { + "type": "Context", + "id": "dbdac550-599c-11eb-9d9b-a6101c63ee7e", + "name": "PerformFISH-AnalyticsLab" + } + }, + { + "type": "IsParentOf", + "id": "0f1cb784-7662-4040-8631-22faa516597e", + "target": + { + "type": "Context", + "id": "f1863710-4b3c-11ee-b163-b39c51104fdf", + "name": "RECOFI-RDB_PILOT" + } + }, + { + "type": "IsParentOf", + "id": "31a0de8b-ad3a-4959-bf60-142dba8cd870", + "target": + { + "type": "Context", + "id": "88d85380-993f-11eb-9efd-db57e5f19379", + "name": "SerGen-Covid19_Ricercatore" + } + } + ] + }, + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData", + "parent": + { + "type": "IsParentOf", + "id": "91f6c744-7b1f-43e5-9383-cacea441ee32", + "source": + { + "type": "Context", + "id": "fe6118e1-30c0-48f9-997e-2bde05690b82", + "name": "d4science.research-infrastructures.eu" + } + }, + "children": + [ + { + "type": "IsParentOf", + "id": "beeedbed-5a15-4931-b5ce-003a1eaa5be7", + "target": + { + "type": "Context", + "id": "ebd4c400-6e75-11ea-ac45-b4c80af2c470", + "name": "DisasterRecovery" + } + }, + { + "type": "IsParentOf", + "id": "f5f11a31-a11c-4f28-a636-ca44d32582ae", + "target": + { + "type": "Context", + "id": "83cac5e0-1a79-11e9-ab10-d5e4d5241904", + "name": "ExplainableMachineLearning" + } + }, + { + "type": "IsParentOf", + "id": "fbc38dac-bc8e-4ef9-be9b-2411ef016132", + "target": + { + "type": "Context", + "id": "035afcf0-7520-11eb-ac4c-b4c80af2c470", + "name": "HackAtEO-AQ21" + } + }, + { + "type": "IsParentOf", + "id": "42443a1b-4548-4954-a331-ec0270fc0170", + "target": + { + "type": "Context", + "id": "2c4ffa00-1789-11ec-938f-be91cbbfcdef", + "name": "SoBigData-PlusPlus_DSAA2021" + } + }, + { + "type": "IsParentOf", + "id": "5140f8f6-bf23-410f-a83a-66a8afa3bb6c", + "target": + { + "type": "Context", + "id": "8337ad60-e990-11ed-ad43-a41b72fe97e2", + "name": "SoBigData.it" + } + }, + { + "type": "IsParentOf", + "id": "9bfcfcf4-55e6-45bd-a120-eb55148f17a8", + "target": + { + "type": "Context", + "id": "b39c77c0-f3cb-11ed-ad44-a41b72fe97e2", + "name": "SoBigDataLab-PlusPlus" + } + }, + { + "type": "IsParentOf", + "id": "0fe1c32f-a9f3-4f6f-8902-c4c198a2dcb1", + "target": + { + "type": "Context", + "id": "c7f2e490-30dd-11e8-bb23-b48de826068b", + "name": "SportsDataScience" + } + }, + { + "type": "IsParentOf", + "id": "b7103f61-852c-40a4-aa22-9309a44405db", + "target": + { + "type": "Context", + "id": "0bcff000-bca3-11eb-92e1-ba182ffd9572", + "name": "TerritoriApertiLab" + } + }, + { + "type": "IsParentOf", + "id": "6ecadcfa-317e-42c7-b925-c9f09e89bd0d", + "target": + { + "type": "Context", + "id": "2f0251d0-74e7-11ea-ac46-b4c80af2c470", + "name": "CO-GUARD" + } + }, + { + "type": "IsParentOf", + "id": "e668337b-a1c3-4d05-a5bc-e1a52fe9a3b2", + "target": + { + "type": "Context", + "id": "4e47f590-83a6-11ea-ac46-b4c80af2c470", + "name": "Catalogue-TerritoriAperti" + } + }, + { + "type": "IsParentOf", + "id": "6a3df248-28b7-4c58-9769-f7f7944f9800", + "target": + { + "type": "Context", + "id": "264716e0-7604-11e8-bb57-b48de826068b", + "name": "E-Learning_Area" + } + }, + { + "type": "IsParentOf", + "id": "57dbfdac-9a56-48a5-b95c-cb0d4b8b8576", + "target": + { + "type": "Context", + "id": "b857faf0-680c-11e8-bb50-b48de826068b", + "name": "MigrationStudies" + } + }, + { + "type": "IsParentOf", + "id": "191f0e9b-d1e9-461c-a063-443a5f208cd3", + "target": + { + "type": "Context", + "id": "05865ef0-a6e3-11e9-bb6f-d5200ecea25b", + "name": "OpenScienceGraphLab" + } + }, + { + "type": "IsParentOf", + "id": "edcf138d-6450-4205-932b-3004e2a7d3bb", + "target": + { + "type": "Context", + "id": "83133d20-533f-11e6-a342-8707350103d4", + "name": "ResourceCatalogue" + } + }, + { + "type": "IsParentOf", + "id": "90890f15-cc71-46b6-9eea-37835d7f5725", + "target": + { + "type": "Context", + "id": "e5b5a970-0f8c-11ee-ad45-a41b72fe97e2", + "name": "SoBigData-SummerSchool2023" + } + }, + { + "type": "IsParentOf", + "id": "f9116ea6-b7b5-45dc-9b4f-8bad7a9959c3", + "target": + { + "type": "Context", + "id": "ee4567e0-4bd4-11ee-ad45-a41b72fe97e2", + "name": "SoBigDataAtDIPSCO" + } + }, + { + "type": "IsParentOf", + "id": "4dbd48f1-22f5-4bee-befa-b022576b40d3", + "target": + { + "type": "Context", + "id": "bcb87730-2f35-11eb-ac4a-b4c80af2c470", + "name": "SoBigDataLiteracy" + } + }, + { + "type": "IsParentOf", + "id": "d7caf5f0-fbd1-4ae4-9888-4e5d7edadccc", + "target": + { + "type": "Context", + "id": "f7c491f0-c2b6-11e6-bab9-e9e53c7f8e12", + "name": "WellBeingAndEconomy" + } + }, + { + "type": "IsParentOf", + "id": "e703cda0-e993-462f-a925-c907c59fe908", + "target": + { + "type": "Context", + "id": "673812c0-906a-11e6-a35d-8707350103d4", + "name": "CityOfCitizens" + } + }, + { + "type": "IsParentOf", + "id": "233e26f3-759a-446f-96af-2d0ca189b506", + "target": + { + "type": "Context", + "id": "393f5370-7418-11ea-ac45-b4c80af2c470", + "name": "ComputationalEpidemiology" + } + }, + { + "type": "IsParentOf", + "id": "aa9fa9d3-7da7-4a22-ba4f-6ea9b1e508da", + "target": + { + "type": "Context", + "id": "995ba490-a1d7-11e7-ba84-b48de826068b", + "name": "M-ATLAS" + } + }, + { + "type": "IsParentOf", + "id": "31f0e21f-5dcd-418c-8d10-1eae1721cfd8", + "target": + { + "type": "Context", + "id": "b480b1c0-ed24-11ea-ac48-b4c80af2c470", + "name": "PandemicRecovery" + } + }, + { + "type": "IsParentOf", + "id": "f875c8bb-fdd8-41b0-9050-45613acae012", + "target": + { + "type": "Context", + "id": "a65b1250-b46e-11ea-ac47-b4c80af2c470", + "name": "SBD-InfraCore" + } + }, + { + "type": "IsParentOf", + "id": "beebafec-3fb3-4bc1-88e0-5f2f35cb2082", + "target": + { + "type": "Context", + "id": "75e97050-ada9-11e6-aff3-95258c839c48", + "name": "SMAPH" + } + }, + { + "type": "IsParentOf", + "id": "e9f6b27a-0dc1-450d-8205-95dc104cb57b", + "target": + { + "type": "Context", + "id": "9929dbc0-c223-11e6-bab9-e9e53c7f8e12", + "name": "SoBigDataLab" + } + }, + { + "type": "IsParentOf", + "id": "ca5bdd02-0173-49d5-bc43-55c48ccf769a", + "target": + { + "type": "Context", + "id": "2773baa0-c2af-11e6-bab9-e9e53c7f8e12", + "name": "SocietalDebates" + } + }, + { + "type": "IsParentOf", + "id": "31458eef-0455-42be-9a8b-a7188aef492c", + "target": + { + "type": "Context", + "id": "7a2218a0-1c38-11e6-baa2-9dc916bd9919", + "name": "TagMe" + } + }, + { + "type": "IsParentOf", + "id": "951f2fee-5493-499e-ae7a-51bfd55172ce", + "target": + { + "type": "Context", + "id": "73eafa30-0901-11ed-9393-be91cbbfcdef", + "name": "XAISS" + } + } + ] + }, + { + "type": "Context", + "id": "31d03a70-c2fb-11e8-8080-a02f75c50d0b", + "name": "AGINFRAplusDev", + "parent": + { + "type": "IsParentOf", + "id": "75139bcc-99b4-41f8-a4a7-efffff9619cc", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "32a37e10-758f-11ea-b0fd-9677b743f4c7", + "name": "ARIADNEplus_AggregationMgmt", + "parent": + { + "type": "IsParentOf", + "id": "2cd907f3-c093-4241-afed-46a656ddb74b", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0fff3c10-2b89-11e9-ac82-d7d19997e0e2", + "name": "ARIADNEplus_Project", + "parent": + { + "type": "IsParentOf", + "id": "4f92addc-450c-43b8-b533-8daca8d5d7e5", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "9b380210-ac6a-11e8-aac7-b84cfa0c06cf", + "name": "AlienAndInvasiveSpecies", + "parent": + { + "type": "IsParentOf", + "id": "139127b7-61f9-4b4e-ab93-5ccba64702c8", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0e4e8780-7fe4-11ea-b11c-9677b743f4c7", + "name": "Archeomar", + "parent": + { + "type": "IsParentOf", + "id": "022ff598-6f0c-4c5f-914c-fd7acbded61b", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "dd795060-78cf-11ea-ae02-a86c2df2b5a7", + "name": "Biolaakso", + "parent": + { + "type": "IsParentOf", + "id": "76a2135d-8b6b-414c-aa74-69c3a6f8bdd9", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0bc65d70-e06c-11e9-a84d-afea15882b0c", + "name": "Blue-CloudLab", + "parent": + { + "type": "IsParentOf", + "id": "a06642e2-5a45-46c9-a91a-8356299ca43d", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "ef74e390-fc6d-11e8-a745-d7890df55d7f", + "name": "CFE_DATA", + "parent": + { + "type": "IsParentOf", + "id": "8d403532-8289-41ec-b64c-1392b0e696b6", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b9098fd0-ccb2-11ed-91df-9f0a0237cc74", + "name": "CarbonPlanktonDynamics", + "parent": + { + "type": "IsParentOf", + "id": "2f3d7895-ae47-4b5e-b0d0-bcf951d5f207", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "17c1a810-bcea-11ed-91df-9f0a0237cc74", + "name": "CoastalCurrentsFromObservations", + "parent": + { + "type": "IsParentOf", + "id": "923b8507-d2da-4385-8592-b0458bd71395", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "30788660-f54f-11ed-b8a9-e17e530f7483", + "name": "CultureDigitalSkills", + "parent": + { + "type": "IsParentOf", + "id": "ff20fb61-1dc5-4333-a2d6-6f7fbd045203", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "248f4f80-4b41-11e9-9d8e-d07a590d0c89", + "name": "DEMETER_trial", + "parent": + { + "type": "IsParentOf", + "id": "6f824872-f550-490c-99a3-dbaaf20970d0", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0eb25b90-d5cb-11ec-ac90-d2b4dd1b53ba", + "name": "DeepU", + "parent": + { + "type": "IsParentOf", + "id": "9f23abce-a1a1-4fb5-bdd6-8171a2dd3c62", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "ebd4c400-6e75-11ea-ac45-b4c80af2c470", + "name": "DisasterRecovery", + "parent": + { + "type": "IsParentOf", + "id": "beeedbed-5a15-4931-b5ce-003a1eaa5be7", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "5dba8730-45a1-11ed-a4d7-e624048b48ed", + "name": "E-RIHS_IP", + "parent": + { + "type": "IsParentOf", + "id": "3d0909ac-c27c-4092-9a3d-137c7de94324", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "dd718830-17d9-11ec-89e8-cca7d35d93e4", + "name": "EAGLE", + "parent": + { + "type": "IsParentOf", + "id": "720d50e1-f420-47db-b1f3-4f5c0a495b94", + "source": + { + "type": "Context", + "id": "5121bcaa-2abd-4e4f-aa07-57c76ea2366d", + "name": "OpenAIRE" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2d5b3370-965d-11ed-bc0c-ce8e7860603b", + "name": "ENVRIPlus", + "parent": + { + "type": "IsParentOf", + "id": "e005864c-6ffb-494f-86ae-a6f47b4d9271", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "fabad240-b0b8-11ea-af1d-cda5d7e20250", + "name": "EOSCPillarITServiceRegistry", + "parent": + { + "type": "IsParentOf", + "id": "10225dac-1a95-4d5d-bbd5-10c72d330a8c", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c9300920-2dae-11eb-af8c-b9e8c67a5d97", + "name": "EOSCPillarOSTA", + "parent": + { + "type": "IsParentOf", + "id": "fa93425a-99ac-44fd-8cf6-b4cfb2254283", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c5ead990-a972-11ea-af1c-cda5d7e20250", + "name": "EOSCPillarTrainingAndSupport", + "parent": + { + "type": "IsParentOf", + "id": "c2b3c019-44a3-41a8-95c9-53dc0618d6b3", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "934a7c10-f41a-11e9-a84e-afea15882b0c", + "name": "ERICForumIT", + "parent": + { + "type": "IsParentOf", + "id": "1d2f78ec-50cc-45a5-a2ed-0a9fac2b2023", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "abfaae00-1ca8-11ee-b2b4-d83f18a2fd93", + "name": "Ecosystem-Workbench", + "parent": + { + "type": "IsParentOf", + "id": "10d5ed74-e243-426c-a159-2ee681e81a67", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "83cac5e0-1a79-11e9-ab10-d5e4d5241904", + "name": "ExplainableMachineLearning", + "parent": + { + "type": "IsParentOf", + "id": "f5f11a31-a11c-4f28-a636-ca44d32582ae", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b45a89f0-386b-11ea-baa6-f99d6ff7f8ec", + "name": "FMJ_Lab", + "parent": + { + "type": "IsParentOf", + "id": "3e7b2cac-1d58-431a-a759-6b88d21920f3", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "8bcc1fb0-cf60-11e7-a7ee-829b2cdf0ac3", + "name": "FoodSecurity", + "parent": + { + "type": "IsParentOf", + "id": "b6c8528a-b218-49b9-b170-c0f50d01e080", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "d181a5c0-4d06-11ec-b281-8523a585c524", + "name": "GNA", + "parent": + { + "type": "IsParentOf", + "id": "07530ddd-b976-450b-8ec5-0f6259c07269", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "33eb27f0-a992-11ea-a95f-8df5878bc02d", + "name": "GRSF_Pre", + "parent": + { + "type": "IsParentOf", + "id": "45f79908-250c-458b-b113-ed89c7353a45", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "8d3f38b0-04b2-11e7-9770-82da5ad06fb5", + "name": "H2020greeneu", + "parent": + { + "type": "IsParentOf", + "id": "c893baa9-ff4f-42cd-b390-304066be8247", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "035afcf0-7520-11eb-ac4c-b4c80af2c470", + "name": "HackAtEO-AQ21", + "parent": + { + "type": "IsParentOf", + "id": "fbc38dac-bc8e-4ef9-be9b-2411ef016132", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "7fcb0360-2cfa-11ec-b27f-8523a585c524", + "name": "I-GenePublic", + "parent": + { + "type": "IsParentOf", + "id": "9cc2d96c-101a-47e0-836a-c35da2cee201", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "9506dda0-a2cd-11e7-8ebf-a6af70430c53", + "name": "IOTC_SS3", + "parent": + { + "type": "IsParentOf", + "id": "e64cbe87-5a2d-472e-afa8-19ff021687d6", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b9e21cf0-1047-11ee-b161-b39c51104fdf", + "name": "ITINERIS_CriticalZoneVRE", + "parent": + { + "type": "IsParentOf", + "id": "5b87c577-d7b6-4043-9c90-e511eebc3e62", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "788e00b0-2953-11ed-b287-8523a585c524", + "name": "JONAS", + "parent": + { + "type": "IsParentOf", + "id": "6edaa6f7-d9e7-4200-bbf1-be318a069515", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "20d921f0-8b44-11eb-a510-b5394b24af77", + "name": "MEGic", + "parent": + { + "type": "IsParentOf", + "id": "4ef94390-422c-4499-b3be-c412c517baca", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "7a7a87e0-19ce-11eb-adc8-b3e87bd72f1a", + "name": "MOVING_Project", + "parent": + { + "type": "IsParentOf", + "id": "9eeceaab-d629-4ba9-9e16-1cd2f27e5861", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "74608420-7eee-11ea-b11c-9677b743f4c7", + "name": "MarineEnvironmentalIndicators", + "parent": + { + "type": "IsParentOf", + "id": "5b1f7b2d-dd99-4827-86a2-323d23158e1b", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4ea3d930-d650-11ea-af1e-cda5d7e20250", + "name": "MarineScienceLab-CNR", + "parent": + { + "type": "IsParentOf", + "id": "a0cfdf4b-be6d-4dda-bb89-3c8b457a4c5f", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "3c256010-f54e-11ed-b8a9-e17e530f7483", + "name": "NAVIGATOR-AOUS", + "parent": + { + "type": "IsParentOf", + "id": "4807e8f0-5055-4ee5-a645-013cee6e973f", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "a4f44010-932f-11ed-a909-ab4aa9cd501a", + "name": "NAVIGATOR-UNIPI", + "parent": + { + "type": "IsParentOf", + "id": "f7baaed4-57b1-459d-8a11-29175d3334a0", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4dd32260-d013-11ea-9692-87b4ef71e0a5", + "name": "OPEN-ASFA", + "parent": + { + "type": "IsParentOf", + "id": "8d024a02-c1bf-41a9-80d6-73ffaf7220e5", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "234fe5e0-6a9a-11ed-8f27-dd521c91a43e", + "name": "OceanHackathon", + "parent": + { + "type": "IsParentOf", + "id": "0dd26f17-87b7-4810-8702-6b41e0cb5838", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "9ae743d0-4b38-11e9-8d1c-89a117b11c60", + "name": "OpenAIRE_RCD", + "parent": + { + "type": "IsParentOf", + "id": "540148e2-9c22-4789-827a-82207c3f0a93", + "source": + { + "type": "Context", + "id": "5121bcaa-2abd-4e4f-aa07-57c76ea2366d", + "name": "OpenAIRE" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f9d4c510-5f2d-11eb-b128-9607a1e39eb7", + "name": "OpenScienceEUMandate", + "parent": + { + "type": "IsParentOf", + "id": "c839eff1-d78d-47fc-964b-a4a8ee6d9f26", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "6aa25050-7f7b-11ec-a4cc-e624048b48ed", + "name": "PAILab", + "parent": + { + "type": "IsParentOf", + "id": "b933e984-194d-4c9c-8205-62d218eee504", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "07b9a440-0f82-11e5-8939-df8a51ff9007", + "name": "Parthenos", + "parent": + { + "type": "IsParentOf", + "id": "55cf8f9c-4415-4648-9e87-ea1d9e9a9f42", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "86f1eb90-93e7-11e8-b325-8c70a8e6a0ef", + "name": "PerformFISH-KPIs", + "parent": + { + "type": "IsParentOf", + "id": "61c096f6-557e-414f-a35f-08ef37bdde0c", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "25dc0d10-bfba-11e7-ad13-9440097a86c5", + "name": "PerformFish", + "parent": + { + "type": "IsParentOf", + "id": "65eaa9b3-b575-4e00-9503-55828347c29b", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "13e4fe50-660a-11e7-8ef6-87202f6bddbf", + "name": "RAKIP_portal", + "parent": + { + "type": "IsParentOf", + "id": "9f1c3f48-ff04-404c-8802-530fd9206b1b", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "187016b0-8aee-11ea-8c3a-8f49a0b9bc25", + "name": "RDFForestry", + "parent": + { + "type": "IsParentOf", + "id": "aefdb5a1-907d-4bd6-870a-b1e5638e589d", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "608d2f20-36b4-11ea-adfb-a86c2df2b5a7", + "name": "RISIS2Lab", + "parent": + { + "type": "IsParentOf", + "id": "281c968c-268e-4c51-b181-e35d1bca69ad", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "d652b340-78fa-11e6-a878-b63d70f3c28a", + "name": "RStudioLab", + "parent": + { + "type": "IsParentOf", + "id": "1b58daa2-9c71-4a29-955c-5b9a1313a324", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "da2660e0-a320-11e9-a731-89a8dce13441", + "name": "RuralDigitizationForum", + "parent": + { + "type": "IsParentOf", + "id": "c224539f-dcbe-4785-a364-d55715d10c07", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "d6dfbef0-ca0e-11e7-a7eb-829b2cdf0ac3", + "name": "SDG-Indicator14.4.1", + "parent": + { + "type": "IsParentOf", + "id": "a348644c-ad93-4fa0-af21-53f2f06892ce", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "302d22d0-af58-11ec-ac90-d2b4dd1b53ba", + "name": "SOFIA-TAF", + "parent": + { + "type": "IsParentOf", + "id": "5ea2f47b-0a0f-4482-99d9-f954169cc881", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2c4ffa00-1789-11ec-938f-be91cbbfcdef", + "name": "SoBigData-PlusPlus_DSAA2021", + "parent": + { + "type": "IsParentOf", + "id": "42443a1b-4548-4954-a331-ec0270fc0170", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "8337ad60-e990-11ed-ad43-a41b72fe97e2", + "name": "SoBigData.it", + "parent": + { + "type": "IsParentOf", + "id": "5140f8f6-bf23-410f-a83a-66a8afa3bb6c", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b39c77c0-f3cb-11ed-ad44-a41b72fe97e2", + "name": "SoBigDataLab-PlusPlus", + "parent": + { + "type": "IsParentOf", + "id": "9bfcfcf4-55e6-45bd-a120-eb55148f17a8", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c7f2e490-30dd-11e8-bb23-b48de826068b", + "name": "SportsDataScience", + "parent": + { + "type": "IsParentOf", + "id": "0fe1c32f-a9f3-4f6f-8902-c4c198a2dcb1", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0bcff000-bca3-11eb-92e1-ba182ffd9572", + "name": "TerritoriApertiLab", + "parent": + { + "type": "IsParentOf", + "id": "b7103f61-852c-40a4-aa22-9309a44405db", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0dfeab20-c80b-11e9-a6eb-ca21a4eac8d2", + "name": "ToscanaNord", + "parent": + { + "type": "IsParentOf", + "id": "7df23ac4-595b-4043-87a5-83d55d38cd1b", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "8c142c00-8073-11ed-8192-a8da5845b419", + "name": "VC_Lab", + "parent": + { + "type": "IsParentOf", + "id": "d52f1448-0e5b-4a3b-ba54-aaeca39a3dc7", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "552215d0-524f-11e6-9acc-af5600b62d32", + "name": "WECAFC-FIRMS", + "parent": + { + "type": "IsParentOf", + "id": "2dc6a148-b94c-461c-b0ae-36c1c8618705", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "08420140-c4f0-11ea-af1d-cda5d7e20250", + "name": "Zoo-Phytoplankton_EOV", + "parent": + { + "type": "IsParentOf", + "id": "e60668d5-eafd-4c22-973f-5546b7683b73", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4bdb2680-2688-11e6-8568-81ebddd4f8be", + "name": "gCube", + "parent": + { + "type": "IsParentOf", + "id": "98d70fc5-b109-497a-a3a0-0fb24149153f", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS", + "parent": + { + "type": "IsParentOf", + "id": "69227f66-6492-4e92-80ed-64a4961a436a", + "source": + { + "type": "Context", + "id": "fe6118e1-30c0-48f9-997e-2bde05690b82", + "name": "d4science.research-infrastructures.eu" + } + }, + "children": + [ + { + "type": "IsParentOf", + "id": "2cd907f3-c093-4241-afed-46a656ddb74b", + "target": + { + "type": "Context", + "id": "32a37e10-758f-11ea-b0fd-9677b743f4c7", + "name": "ARIADNEplus_AggregationMgmt" + } + }, + { + "type": "IsParentOf", + "id": "4f92addc-450c-43b8-b533-8daca8d5d7e5", + "target": + { + "type": "Context", + "id": "0fff3c10-2b89-11e9-ac82-d7d19997e0e2", + "name": "ARIADNEplus_Project" + } + }, + { + "type": "IsParentOf", + "id": "022ff598-6f0c-4c5f-914c-fd7acbded61b", + "target": + { + "type": "Context", + "id": "0e4e8780-7fe4-11ea-b11c-9677b743f4c7", + "name": "Archeomar" + } + }, + { + "type": "IsParentOf", + "id": "a06642e2-5a45-46c9-a91a-8356299ca43d", + "target": + { + "type": "Context", + "id": "0bc65d70-e06c-11e9-a84d-afea15882b0c", + "name": "Blue-CloudLab" + } + }, + { + "type": "IsParentOf", + "id": "2f3d7895-ae47-4b5e-b0d0-bcf951d5f207", + "target": + { + "type": "Context", + "id": "b9098fd0-ccb2-11ed-91df-9f0a0237cc74", + "name": "CarbonPlanktonDynamics" + } + }, + { + "type": "IsParentOf", + "id": "923b8507-d2da-4385-8592-b0458bd71395", + "target": + { + "type": "Context", + "id": "17c1a810-bcea-11ed-91df-9f0a0237cc74", + "name": "CoastalCurrentsFromObservations" + } + }, + { + "type": "IsParentOf", + "id": "10225dac-1a95-4d5d-bbd5-10c72d330a8c", + "target": + { + "type": "Context", + "id": "fabad240-b0b8-11ea-af1d-cda5d7e20250", + "name": "EOSCPillarITServiceRegistry" + } + }, + { + "type": "IsParentOf", + "id": "fa93425a-99ac-44fd-8cf6-b4cfb2254283", + "target": + { + "type": "Context", + "id": "c9300920-2dae-11eb-af8c-b9e8c67a5d97", + "name": "EOSCPillarOSTA" + } + }, + { + "type": "IsParentOf", + "id": "c2b3c019-44a3-41a8-95c9-53dc0618d6b3", + "target": + { + "type": "Context", + "id": "c5ead990-a972-11ea-af1c-cda5d7e20250", + "name": "EOSCPillarTrainingAndSupport" + } + }, + { + "type": "IsParentOf", + "id": "1d2f78ec-50cc-45a5-a2ed-0a9fac2b2023", + "target": + { + "type": "Context", + "id": "934a7c10-f41a-11e9-a84e-afea15882b0c", + "name": "ERICForumIT" + } + }, + { + "type": "IsParentOf", + "id": "10d5ed74-e243-426c-a159-2ee681e81a67", + "target": + { + "type": "Context", + "id": "abfaae00-1ca8-11ee-b2b4-d83f18a2fd93", + "name": "Ecosystem-Workbench" + } + }, + { + "type": "IsParentOf", + "id": "07530ddd-b976-450b-8ec5-0f6259c07269", + "target": + { + "type": "Context", + "id": "d181a5c0-4d06-11ec-b281-8523a585c524", + "name": "GNA" + } + }, + { + "type": "IsParentOf", + "id": "9cc2d96c-101a-47e0-836a-c35da2cee201", + "target": + { + "type": "Context", + "id": "7fcb0360-2cfa-11ec-b27f-8523a585c524", + "name": "I-GenePublic" + } + }, + { + "type": "IsParentOf", + "id": "6edaa6f7-d9e7-4200-bbf1-be318a069515", + "target": + { + "type": "Context", + "id": "788e00b0-2953-11ed-b287-8523a585c524", + "name": "JONAS" + } + }, + { + "type": "IsParentOf", + "id": "5b1f7b2d-dd99-4827-86a2-323d23158e1b", + "target": + { + "type": "Context", + "id": "74608420-7eee-11ea-b11c-9677b743f4c7", + "name": "MarineEnvironmentalIndicators" + } + }, + { + "type": "IsParentOf", + "id": "a0cfdf4b-be6d-4dda-bb89-3c8b457a4c5f", + "target": + { + "type": "Context", + "id": "4ea3d930-d650-11ea-af1e-cda5d7e20250", + "name": "MarineScienceLab-CNR" + } + }, + { + "type": "IsParentOf", + "id": "0dd26f17-87b7-4810-8702-6b41e0cb5838", + "target": + { + "type": "Context", + "id": "234fe5e0-6a9a-11ed-8f27-dd521c91a43e", + "name": "OceanHackathon" + } + }, + { + "type": "IsParentOf", + "id": "e60668d5-eafd-4c22-973f-5546b7683b73", + "target": + { + "type": "Context", + "id": "08420140-c4f0-11ea-af1d-cda5d7e20250", + "name": "Zoo-Phytoplankton_EOV" + } + }, + { + "type": "IsParentOf", + "id": "8bde6dd8-21f8-4c86-8862-d479e44d4176", + "target": + { + "type": "Context", + "id": "3baff9c0-dd76-11eb-b27e-8523a585c524", + "name": "ARIADNEplus_Lab" + } + }, + { + "type": "IsParentOf", + "id": "d93b3669-1937-4a12-bd56-7fae568b9a4a", + "target": + { + "type": "Context", + "id": "15197b70-708b-11ed-8f27-dd521c91a43e", + "name": "Blue-Cloud2026Project" + } + }, + { + "type": "IsParentOf", + "id": "03b56db1-e744-43fc-867c-c66f63ebac71", + "target": + { + "type": "Context", + "id": "23096dd0-e065-11e9-a84c-afea15882b0c", + "name": "Blue-CloudProject" + } + }, + { + "type": "IsParentOf", + "id": "9c6bbbd8-7170-4f25-9fd9-612c7dc25be9", + "target": + { + "type": "Context", + "id": "30faa9a0-372a-11eb-af8d-b9e8c67a5d97", + "name": "EOSCPillar4AgriFood" + } + }, + { + "type": "IsParentOf", + "id": "da7f572e-4c4c-449d-8c7c-9d37df1acba9", + "target": + { + "type": "Context", + "id": "4d0d1160-b1ae-11eb-b27e-8523a585c524", + "name": "EOSCPillarOS4SSCH" + } + }, + { + "type": "IsParentOf", + "id": "036d58ae-c34c-4498-9d4c-4d03ef0eab32", + "target": + { + "type": "Context", + "id": "00a749a0-41b9-11ea-a27b-f57065157f53", + "name": "EOSCPillarResDataCtlg" + } + }, + { + "type": "IsParentOf", + "id": "c1b2d9cf-2b56-46c7-8252-37393717c276", + "target": + { + "type": "Context", + "id": "3c31ae60-3629-11eb-af8d-b9e8c67a5d97", + "name": "EOSCPillar_COVID-19" + } + }, + { + "type": "IsParentOf", + "id": "5b2feea9-5f70-41aa-a9bb-5a5e8bf897f0", + "target": + { + "type": "Context", + "id": "fecd5390-3a3c-11eb-af8d-b9e8c67a5d97", + "name": "FisheriesAtlas" + } + }, + { + "type": "IsParentOf", + "id": "db713d04-3680-4cb5-900f-0ba821a6737f", + "target": + { + "type": "Context", + "id": "f53a8a70-56e7-11ea-a27b-f57065157f53", + "name": "GeoNA-Prototype" + } + }, + { + "type": "IsParentOf", + "id": "b288d104-532b-491e-ad15-cbaea895ddf7", + "target": + { + "type": "Context", + "id": "2831a5f0-1136-11ea-a850-afea15882b0c", + "name": "HDN-Lab" + } + }, + { + "type": "IsParentOf", + "id": "791ef8d4-58dc-4061-a170-4adf203e8f44", + "target": + { + "type": "Context", + "id": "229cd840-fedb-11ec-b286-8523a585c524", + "name": "MarineEnvironmentalIndicatorsDev" + } + }, + { + "type": "IsParentOf", + "id": "65db01e1-4ac3-464f-94f4-ecd85ddca678", + "target": + { + "type": "Context", + "id": "929f5680-781e-11eb-af91-b9e8c67a5d97", + "name": "PlanktonGenomics" + } + }, + { + "type": "IsParentOf", + "id": "d28f2c93-f4e0-4fb6-98c7-92f3cf89fef2", + "target": + { + "type": "Context", + "id": "46a31a30-fe01-11ed-b2b4-d83f18a2fd93", + "name": "TrainingAcademy" + } + }, + { + "type": "IsParentOf", + "id": "4fd50a8e-3602-45da-866e-2b99a4a9efe2", + "target": + { + "type": "Context", + "id": "f45a4ba0-2ba4-11e9-ac82-d7d19997e0e2", + "name": "ARIADNEplus_Mappings" + } + }, + { + "type": "IsParentOf", + "id": "faefabfb-15ec-4058-9a52-2d95959d0c97", + "target": + { + "type": "Context", + "id": "721a7610-4708-11ec-b27f-8523a585c524", + "name": "Blue-CloudHackathon" + } + }, + { + "type": "IsParentOf", + "id": "a7a57f41-875c-46af-83fd-ecd1d7f66be8", + "target": + { + "type": "Context", + "id": "0fab2dd0-eb49-11ed-a4f9-b1eda3cccccd", + "name": "Blue-CloudTrainingLab" + } + }, + { + "type": "IsParentOf", + "id": "64073828-a1d8-4f90-a9fe-9f6ece8ad9f6", + "target": + { + "type": "Context", + "id": "ec3501b0-75fb-11eb-af8f-b9e8c67a5d97", + "name": "EOSCPillar4EarthScience" + } + }, + { + "type": "IsParentOf", + "id": "b4900682-11cb-4289-adab-954d116a5ae6", + "target": + { + "type": "Context", + "id": "f6bf6ad0-9986-11ec-b285-8523a585c524", + "name": "EOSCPillarOSLF" + } + }, + { + "type": "IsParentOf", + "id": "ab8b37ce-523d-48ea-915f-584c12bb516b", + "target": + { + "type": "Context", + "id": "c4c52270-cb40-11e9-b79d-99cc522de507", + "name": "EOSCPillarServiceRegistry" + } + }, + { + "type": "IsParentOf", + "id": "e6eb98b5-2f83-4573-99b0-2f3ba547587f", + "target": + { + "type": "Context", + "id": "54094cf0-b9a9-11ec-b286-8523a585c524", + "name": "EOSCPillar_Lab" + } + }, + { + "type": "IsParentOf", + "id": "3fa38783-c5ce-4c4d-974f-bbae950a8898", + "target": + { + "type": "Context", + "id": "82d1ae80-2189-11ee-b0f0-f7434eb37160", + "name": "EcologicalRestorationLab" + } + }, + { + "type": "IsParentOf", + "id": "2777882a-9c8f-42f5-bfb3-b9f4c5bb84c8", + "target": + { + "type": "Context", + "id": "47f885f0-cd0a-11ed-91e1-9f0a0237cc74", + "name": "GlobalFisheriesAtlas" + } + }, + { + "type": "IsParentOf", + "id": "8f22d796-d3a6-4fa3-90e6-953a977bb262", + "target": + { + "type": "Context", + "id": "1a270ae0-056a-11ea-a850-afea15882b0c", + "name": "I-GeneProject" + } + }, + { + "type": "IsParentOf", + "id": "04391b45-27cb-4cad-ade9-ff58738fd457", + "target": + { + "type": "Context", + "id": "f3fbf730-d86b-11ed-91e2-9f0a0237cc74", + "name": "ICOOE" + } + }, + { + "type": "IsParentOf", + "id": "1b03bcb1-6a8e-4e0f-a1f6-2b8e44aa7dab", + "target": + { + "type": "Context", + "id": "4cafe0d0-4d2b-11ec-b282-8523a585c524", + "name": "JERICO_CORE" + } + }, + { + "type": "IsParentOf", + "id": "51cec4c9-8bef-4518-b467-2c66779c1874", + "target": + { + "type": "Context", + "id": "f6dfd0c0-15d2-11ea-8c90-b4759126c18b", + "name": "MarineScienceLab" + } + }, + { + "type": "IsParentOf", + "id": "122e9b15-35fa-4c68-b581-a4945d39b54d", + "target": + { + "type": "Context", + "id": "a8932400-5c5d-11e9-a725-d3964f6c6247", + "name": "PerformFISH_dev" + } + }, + { + "type": "IsParentOf", + "id": "8fbfad65-8579-47cb-9047-acb6a037ca58", + "target": + { + "type": "Context", + "id": "ae420650-3dbc-11ea-a279-f57065157f53", + "name": "RuralCluster" + } + } + ] + }, + { + "type": "Context", + "id": "5121bcaa-2abd-4e4f-aa07-57c76ea2366d", + "name": "OpenAIRE", + "parent": + { + "type": "IsParentOf", + "id": "df58505e-8c89-4b77-8320-96e9723062c9", + "source": + { + "type": "Context", + "id": "fe6118e1-30c0-48f9-997e-2bde05690b82", + "name": "d4science.research-infrastructures.eu" + } + }, + "children": + [ + { + "type": "IsParentOf", + "id": "720d50e1-f420-47db-b1f3-4f5c0a495b94", + "target": + { + "type": "Context", + "id": "dd718830-17d9-11ec-89e8-cca7d35d93e4", + "name": "EAGLE" + } + }, + { + "type": "IsParentOf", + "id": "540148e2-9c22-4789-827a-82207c3f0a93", + "target": + { + "type": "Context", + "id": "9ae743d0-4b38-11e9-8d1c-89a117b11c60", + "name": "OpenAIRE_RCD" + } + }, + { + "type": "IsParentOf", + "id": "dd0361fc-4420-4bde-b7ab-4dc8738ae283", + "target": + { + "type": "Context", + "id": "83096160-6c6b-11e7-aed1-e0cce947b527", + "name": "OpenAIRE_Users" + } + }, + { + "type": "IsParentOf", + "id": "8548d47b-df11-45b8-89c0-9bc0693323c8", + "target": + { + "type": "Context", + "id": "7b4fce60-1c96-11e8-ba5d-f9abba79bd2d", + "name": "dnet" + } + }, + { + "type": "IsParentOf", + "id": "a9d1aa62-c685-41b4-8e3d-e63114a1b481", + "target": + { + "type": "Context", + "id": "4e3928e0-e862-11eb-89e6-cca7d35d93e4", + "name": "OpenAIRE_Lab" + } + }, + { + "type": "IsParentOf", + "id": "2dc45e59-1faa-435d-97a8-845e92db5779", + "target": + { + "type": "Context", + "id": "62886670-f5c9-11eb-89e7-cca7d35d93e4", + "name": "OpenAIRE_devops" + } + } + ] + }, + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps", + "parent": + { + "type": "IsParentOf", + "id": "479882ee-3f30-42ed-99dd-3298e583d7ce", + "source": + { + "type": "Context", + "id": "fe6118e1-30c0-48f9-997e-2bde05690b82", + "name": "d4science.research-infrastructures.eu" + } + }, + "children": + [ + { + "type": "IsParentOf", + "id": "139127b7-61f9-4b4e-ab93-5ccba64702c8", + "target": + { + "type": "Context", + "id": "9b380210-ac6a-11e8-aac7-b84cfa0c06cf", + "name": "AlienAndInvasiveSpecies" + } + }, + { + "type": "IsParentOf", + "id": "e005864c-6ffb-494f-86ae-a6f47b4d9271", + "target": + { + "type": "Context", + "id": "2d5b3370-965d-11ed-bc0c-ce8e7860603b", + "name": "ENVRIPlus" + } + }, + { + "type": "IsParentOf", + "id": "8d024a02-c1bf-41a9-80d6-73ffaf7220e5", + "target": + { + "type": "Context", + "id": "4dd32260-d013-11ea-9692-87b4ef71e0a5", + "name": "OPEN-ASFA" + } + }, + { + "type": "IsParentOf", + "id": "55cf8f9c-4415-4648-9e87-ea1d9e9a9f42", + "target": + { + "type": "Context", + "id": "07b9a440-0f82-11e5-8939-df8a51ff9007", + "name": "Parthenos" + } + }, + { + "type": "IsParentOf", + "id": "1b58daa2-9c71-4a29-955c-5b9a1313a324", + "target": + { + "type": "Context", + "id": "d652b340-78fa-11e6-a878-b63d70f3c28a", + "name": "RStudioLab" + } + }, + { + "type": "IsParentOf", + "id": "d52f1448-0e5b-4a3b-ba54-aaeca39a3dc7", + "target": + { + "type": "Context", + "id": "8c142c00-8073-11ed-8192-a8da5845b419", + "name": "VC_Lab" + } + }, + { + "type": "IsParentOf", + "id": "98d70fc5-b109-497a-a3a0-0fb24149153f", + "target": + { + "type": "Context", + "id": "4bdb2680-2688-11e6-8568-81ebddd4f8be", + "name": "gCube" + } + }, + { + "type": "IsParentOf", + "id": "1188e7b8-71ae-4d0a-b015-1e68ae9fd93b", + "target": + { + "type": "Context", + "id": "9492f840-9b42-11ed-bc0c-ce8e7860603b", + "name": "AssistedLab" + } + }, + { + "type": "IsParentOf", + "id": "19a35c85-b5d9-4ea0-b650-651fa3b430f0", + "target": + { + "type": "Context", + "id": "09d83fc0-c111-11e5-abe8-c1ed1c8747ef", + "name": "EFG" + } + }, + { + "type": "IsParentOf", + "id": "6d73c2a6-98df-4313-ad69-82ba0f9ee8e4", + "target": + { + "type": "Context", + "id": "1c8308d0-7fc2-11e4-a7aa-ba2ba547f799", + "name": "FAO_TunaAtlas" + } + }, + { + "type": "IsParentOf", + "id": "ae7298ca-b654-4db0-957b-6f7693270ff9", + "target": + { + "type": "Context", + "id": "2d7fe180-6de6-11e6-9ab2-9b106e54d317", + "name": "ICCAT_BFT-E" + } + }, + { + "type": "IsParentOf", + "id": "9528bc10-e815-43a2-afa0-14c5fb2e4787", + "target": + { + "type": "Context", + "id": "05a758d0-ddc2-11ec-8190-a8da5845b419", + "name": "InfraScience" + } + }, + { + "type": "IsParentOf", + "id": "fc4b20b7-4818-434c-bd83-6bfcea0eb310", + "target": + { + "type": "Context", + "id": "9d7ccc00-8f50-11ec-a788-f9b8e37af5f1", + "name": "S2i2S-SIIT_Lab" + } + }, + { + "type": "IsParentOf", + "id": "e2ee490e-0018-4101-8bf3-89aad52e4377", + "target": + { + "type": "Context", + "id": "fbfc8390-4d5f-11e5-b6d3-9b78ffed058f", + "name": "StockAssessment" + } + }, + { + "type": "IsParentOf", + "id": "07f7d6b9-396d-486c-aee4-96c99e7f6d51", + "target": + { + "type": "Context", + "id": "9dda7ea0-f3c1-11e8-b089-bee4dfdfe94e", + "name": "VisualMedia" + } + }, + { + "type": "IsParentOf", + "id": "c17236c0-aea1-4139-8842-b83149239cf0", + "target": + { + "type": "Context", + "id": "1421f600-1e38-11e5-8b21-df8a51ff9007", + "name": "ARIADNE" + } + }, + { + "type": "IsParentOf", + "id": "d3f4820b-39f0-4988-a784-302475d5ae43", + "target": + { + "type": "Context", + "id": "a64379e0-4d5f-11e5-b6d2-9b78ffed058f", + "name": "AquacultureAtlasGeneration" + } + }, + { + "type": "IsParentOf", + "id": "7d2ed51f-01ed-4511-bb3a-00fcb238026c", + "target": + { + "type": "Context", + "id": "d688b910-74b3-11e4-aa46-fa585a95eba3", + "name": "BiodiversityLab" + } + }, + { + "type": "IsParentOf", + "id": "602f617d-81f5-4ce6-814b-187153a72d6b", + "target": + { + "type": "Context", + "id": "a09208a0-4897-11ed-8191-a8da5845b419", + "name": "Esquiline" + } + }, + { + "type": "IsParentOf", + "id": "d78d3520-0734-4ae4-b560-13c9abb77553", + "target": + { + "type": "Context", + "id": "3222a240-ccf0-11eb-8ba4-925f3b2938cb", + "name": "FoodDecide" + } + }, + { + "type": "IsParentOf", + "id": "c912ec52-0130-4f58-83ea-7521b4a63dc2", + "target": + { + "type": "Context", + "id": "c864ec90-a5e5-11e6-918c-95dfd2918b3e", + "name": "GEMex" + } + }, + { + "type": "IsParentOf", + "id": "49df9149-9b06-48d0-b03f-bc4b3dd69eca", + "target": + { + "type": "Context", + "id": "6356c2f0-91b2-11ed-8192-a8da5845b419", + "name": "HPC_Lab" + } + }, + { + "type": "IsParentOf", + "id": "bc8714df-8ba9-4d40-acd8-e1e3385bbffc", + "target": + { + "type": "Context", + "id": "4bf4b910-f0bc-11ec-8190-a8da5845b419", + "name": "ISTI_Lab" + } + }, + { + "type": "IsParentOf", + "id": "3f944b47-4d40-4861-98f9-b54de5ae9bb7", + "target": + { + "type": "Context", + "id": "8bca08c0-9c00-11ed-bc0c-ce8e7860603b", + "name": "OSObservatory_IT" + } + }, + { + "type": "IsParentOf", + "id": "3c00aff3-d5bc-4f00-869c-0e5ee1b10783", + "target": + { + "type": "Context", + "id": "29ea8fc0-4d62-11e5-b6da-9b78ffed058f", + "name": "ProtectedAreaImpactMaps" + } + }, + { + "type": "IsParentOf", + "id": "1edb0670-05a7-4f01-91f3-39e3ba01b221", + "target": + { + "type": "Context", + "id": "2f9963a0-965d-11ed-bc0c-ce8e7860603b", + "name": "RPrototypingLab" + } + }, + { + "type": "IsParentOf", + "id": "05e4ef63-24e7-4011-a35d-7c5cf77e71d7", + "target": + { + "type": "Context", + "id": "43299530-684c-11e5-bc2f-9b78ffed058f", + "name": "SoBigData.eu" + } + }, + { + "type": "IsParentOf", + "id": "e14eac6e-871f-4d02-9d50-e591c6d9ae97", + "target": + { + "type": "Context", + "id": "c1e21390-a3cf-11ed-bc0c-ce8e7860603b", + "name": "TuscanyHealthEcosystem" + } + }, + { + "type": "IsParentOf", + "id": "fe38d144-4978-4710-89a6-6017dba696f4", + "target": + { + "type": "Context", + "id": "a36af700-89cd-11ec-a788-f9b8e37af5f1", + "name": "s2i2s_lab" + } + } + ] + }, + { + "type": "Context", + "id": "2f8524e0-85e5-11e8-8aff-ec993fe29e6c", + "name": "AGINFRAplusShowcase", + "parent": + { + "type": "IsParentOf", + "id": "072446e2-3744-4ab0-94d5-595f6d7234c8", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "3baff9c0-dd76-11eb-b27e-8523a585c524", + "name": "ARIADNEplus_Lab", + "parent": + { + "type": "IsParentOf", + "id": "8bde6dd8-21f8-4c86-8862-d479e44d4176", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "8c5f6240-8885-11e9-9cd4-bd99a95efcda", + "name": "AgroClimaticModeling_trial", + "parent": + { + "type": "IsParentOf", + "id": "d10ef13d-d241-4995-8140-49fe7f9eeca6", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "8b845120-c3aa-11e6-b8fe-d1397ea7f6b0", + "name": "AnalyticsLab", + "parent": + { + "type": "IsParentOf", + "id": "ce748545-6b7c-4009-98c3-a0b1c80df49c", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "9492f840-9b42-11ed-bc0c-ce8e7860603b", + "name": "AssistedLab", + "parent": + { + "type": "IsParentOf", + "id": "1188e7b8-71ae-4d0a-b015-1e68ae9fd93b", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "15197b70-708b-11ed-8f27-dd521c91a43e", + "name": "Blue-Cloud2026Project", + "parent": + { + "type": "IsParentOf", + "id": "d93b3669-1937-4a12-bd56-7fae568b9a4a", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "23096dd0-e065-11e9-a84c-afea15882b0c", + "name": "Blue-CloudProject", + "parent": + { + "type": "IsParentOf", + "id": "03b56db1-e744-43fc-867c-c66f63ebac71", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2f0251d0-74e7-11ea-ac46-b4c80af2c470", + "name": "CO-GUARD", + "parent": + { + "type": "IsParentOf", + "id": "6ecadcfa-317e-42c7-b925-c9f09e89bd0d", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4e47f590-83a6-11ea-ac46-b4c80af2c470", + "name": "Catalogue-TerritoriAperti", + "parent": + { + "type": "IsParentOf", + "id": "e668337b-a1c3-4d05-a5bc-e1a52fe9a3b2", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b406d010-fc87-11e8-a65c-a45ebf91bc16", + "name": "CollabResearch", + "parent": + { + "type": "IsParentOf", + "id": "f98de20a-8799-4e55-828d-f2868276e03f", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "44d61f90-fc8a-11e8-b1ac-e2291ca1c848", + "name": "D4STeam", + "parent": + { + "type": "IsParentOf", + "id": "13ec2ce0-3568-40be-98df-abe2b183b4f1", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "eb0b1c30-a2f2-11e9-a730-89a8dce13441", + "name": "DESIRA_CoordinationManagement", + "parent": + { + "type": "IsParentOf", + "id": "555d9c34-5c9b-499c-9b64-24c87b0ad45a", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "7cc2dcd0-9c30-11ea-8c3a-8f49a0b9bc25", + "name": "DigitalaisMarketingsLatvia", + "parent": + { + "type": "IsParentOf", + "id": "168eef55-5820-4a06-acae-ab390503e871", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "264716e0-7604-11e8-bb57-b48de826068b", + "name": "E-Learning_Area", + "parent": + { + "type": "IsParentOf", + "id": "6a3df248-28b7-4c58-9769-f7f7944f9800", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "70c43e00-705d-11ea-8488-c08e7e9bf311", + "name": "E-RIHS_iGA", + "parent": + { + "type": "IsParentOf", + "id": "57cd64d9-18d4-413e-adfa-12bcf03eb590", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "09d83fc0-c111-11e5-abe8-c1ed1c8747ef", + "name": "EFG", + "parent": + { + "type": "IsParentOf", + "id": "19a35c85-b5d9-4ea0-b650-651fa3b430f0", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "30faa9a0-372a-11eb-af8d-b9e8c67a5d97", + "name": "EOSCPillar4AgriFood", + "parent": + { + "type": "IsParentOf", + "id": "9c6bbbd8-7170-4f25-9fd9-612c7dc25be9", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4d0d1160-b1ae-11eb-b27e-8523a585c524", + "name": "EOSCPillarOS4SSCH", + "parent": + { + "type": "IsParentOf", + "id": "da7f572e-4c4c-449d-8c7c-9d37df1acba9", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "00a749a0-41b9-11ea-a27b-f57065157f53", + "name": "EOSCPillarResDataCtlg", + "parent": + { + "type": "IsParentOf", + "id": "036d58ae-c34c-4498-9d4c-4d03ef0eab32", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "3c31ae60-3629-11eb-af8d-b9e8c67a5d97", + "name": "EOSCPillar_COVID-19", + "parent": + { + "type": "IsParentOf", + "id": "c1b2d9cf-2b56-46c7-8252-37393717c276", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "bb816a70-15ee-11e7-8be0-dc4dc997c5d1", + "name": "EcoEvo", + "parent": + { + "type": "IsParentOf", + "id": "427cb92d-08cb-40dd-afc0-6f346d00e87a", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4046b500-59ae-11ec-a4cb-e624048b48ed", + "name": "EnvironmentalDataExchange", + "parent": + { + "type": "IsParentOf", + "id": "85b474ce-25b7-493c-9f03-2a9a529ac0dd", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "1c8308d0-7fc2-11e4-a7aa-ba2ba547f799", + "name": "FAO_TunaAtlas", + "parent": + { + "type": "IsParentOf", + "id": "6d73c2a6-98df-4313-ad69-82ba0f9ee8e4", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "fecd5390-3a3c-11eb-af8d-b9e8c67a5d97", + "name": "FisheriesAtlas", + "parent": + { + "type": "IsParentOf", + "id": "5b2feea9-5f70-41aa-a9bb-5a5e8bf897f0", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "38c2dbd0-e0bb-11e7-8dac-dbea6c1188f8", + "name": "FoodborneOutbreak", + "parent": + { + "type": "IsParentOf", + "id": "0e3a68f9-1f95-4b31-bc01-3da2522564f2", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0218fe10-fd30-11e8-906d-a74c9f2e5800", + "name": "GRSF", + "parent": + { + "type": "IsParentOf", + "id": "f76b2ce4-478c-4375-b5a2-21157f0123f2", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f53a8a70-56e7-11ea-a27b-f57065157f53", + "name": "GeoNA-Prototype", + "parent": + { + "type": "IsParentOf", + "id": "db713d04-3680-4cb5-900f-0ba821a6737f", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2831a5f0-1136-11ea-a850-afea15882b0c", + "name": "HDN-Lab", + "parent": + { + "type": "IsParentOf", + "id": "b288d104-532b-491e-ad15-cbaea895ddf7", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b9cef3a0-7fa2-11ec-a4cc-e624048b48ed", + "name": "HumanaVoxLab", + "parent": + { + "type": "IsParentOf", + "id": "8b8e1ad4-270e-4996-a698-97dcb02d9141", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2d7fe180-6de6-11e6-9ab2-9b106e54d317", + "name": "ICCAT_BFT-E", + "parent": + { + "type": "IsParentOf", + "id": "ae7298ca-b654-4db0-957b-6f7693270ff9", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "37ffd4d0-7819-11ea-8488-c08e7e9bf311", + "name": "IPERION_HS", + "parent": + { + "type": "IsParentOf", + "id": "169a390e-6ea3-492d-9893-5e49b5e1784e", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "05a758d0-ddc2-11ec-8190-a8da5845b419", + "name": "InfraScience", + "parent": + { + "type": "IsParentOf", + "id": "9528bc10-e815-43a2-afa0-14c5fb2e4787", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "94e59f10-c2f3-11eb-a84f-bad21096951e", + "name": "Limnodata", + "parent": + { + "type": "IsParentOf", + "id": "55fd9440-d3df-43eb-ab7c-6d88d936787b", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "948a9860-69ff-11eb-9efd-db57e5f19379", + "name": "MOVING_CoordinationManagement", + "parent": + { + "type": "IsParentOf", + "id": "dff2602c-3efa-4480-acd2-5482949f08d1", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "10ae40e0-d599-11eb-a499-b8df1083f615", + "name": "MOVING_RegionalMAPs", + "parent": + { + "type": "IsParentOf", + "id": "6f04c94a-9e1b-43ce-a065-25b8a2531f8e", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "229cd840-fedb-11ec-b286-8523a585c524", + "name": "MarineEnvironmentalIndicatorsDev", + "parent": + { + "type": "IsParentOf", + "id": "791ef8d4-58dc-4061-a170-4adf203e8f44", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b857faf0-680c-11e8-bb50-b48de826068b", + "name": "MigrationStudies", + "parent": + { + "type": "IsParentOf", + "id": "57dbfdac-9a56-48a5-b95c-cb0d4b8b8576", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "3a94adf0-f54e-11ed-b8a6-e17e530f7483", + "name": "NAVIGATOR-AUSL_TC", + "parent": + { + "type": "IsParentOf", + "id": "01553441-5624-497d-8221-3a21c993be80", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "1546f160-3135-11ea-a32a-a63a8e3dd29e", + "name": "NitrogenScrumLab", + "parent": + { + "type": "IsParentOf", + "id": "5bb78a12-5f41-4112-9a51-f9b32ab0f799", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c455bdc0-fc31-11e7-8dd0-dbea6c1188f8", + "name": "ORIONKnowledgeHub", + "parent": + { + "type": "IsParentOf", + "id": "0518e014-6c04-4a9f-a4e4-8610a74ab81c", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b1a97e60-78cf-11ea-ae02-a86c2df2b5a7", + "name": "Oosterwold", + "parent": + { + "type": "IsParentOf", + "id": "76563dec-deb0-4444-a42f-09ba0fec0b18", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "83096160-6c6b-11e7-aed1-e0cce947b527", + "name": "OpenAIRE_Users", + "parent": + { + "type": "IsParentOf", + "id": "dd0361fc-4420-4bde-b7ab-4dc8738ae283", + "source": + { + "type": "Context", + "id": "5121bcaa-2abd-4e4f-aa07-57c76ea2366d", + "name": "OpenAIRE" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "05865ef0-a6e3-11e9-bb6f-d5200ecea25b", + "name": "OpenScienceGraphLab", + "parent": + { + "type": "IsParentOf", + "id": "191f0e9b-d1e9-461c-a063-443a5f208cd3", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "fa9856c0-1d8e-11e9-bda9-b74261761c8b", + "name": "PARTHENOS_VRE", + "parent": + { + "type": "IsParentOf", + "id": "744562d0-a31a-4726-8a21-73aa68a856e8", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "fe81adf0-0d26-11e8-8b99-f1c4c2a4f648", + "name": "ParticleFormation", + "parent": + { + "type": "IsParentOf", + "id": "8f3b3c00-285a-4249-a83c-7779f9766138", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "d91dcc70-77dc-11e9-9d52-acd3be641cc1", + "name": "PerformFISH_WP4", + "parent": + { + "type": "IsParentOf", + "id": "8822efb1-8858-4f6d-9ea9-ce5b6f1739a3", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "929f5680-781e-11eb-af91-b9e8c67a5d97", + "name": "PlanktonGenomics", + "parent": + { + "type": "IsParentOf", + "id": "65db01e1-4ac3-464f-94f4-ecd85ddca678", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "d97b8fb0-4a30-11e9-9d8b-d07a590d0c89", + "name": "RAKIP_trial", + "parent": + { + "type": "IsParentOf", + "id": "975121b9-13a1-4a7a-8666-7e8c6d91cd3d", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2086f530-8ae9-11ea-8c3a-8f49a0b9bc25", + "name": "RDFRural", + "parent": + { + "type": "IsParentOf", + "id": "97537b94-9f13-4553-a4d2-34e8fa567068", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "d9af4100-384d-11ea-adfe-a86c2df2b5a7", + "name": "RISIS2OpenData", + "parent": + { + "type": "IsParentOf", + "id": "3995f6d4-e9ed-4af1-b898-0f3c96c41e82", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "83133d20-533f-11e6-a342-8707350103d4", + "name": "ResourceCatalogue", + "parent": + { + "type": "IsParentOf", + "id": "edcf138d-6450-4205-932b-3004e2a7d3bb", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "9d7ccc00-8f50-11ec-a788-f9b8e37af5f1", + "name": "S2i2S-SIIT_Lab", + "parent": + { + "type": "IsParentOf", + "id": "fc4b20b7-4818-434c-bd83-6bfcea0eb310", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "3c658780-f784-11e7-8dcc-dbea6c1188f8", + "name": "SDI_Lab", + "parent": + { + "type": "IsParentOf", + "id": "bec818b4-02cf-415b-9cb2-dc1847205c33", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "eb167b30-96dd-11eb-9efd-db57e5f19379", + "name": "SerGen-Covid19_Operatore", + "parent": + { + "type": "IsParentOf", + "id": "aa18e0e5-1e49-4f4f-b282-b6bc7690ad63", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "e5b5a970-0f8c-11ee-ad45-a41b72fe97e2", + "name": "SoBigData-SummerSchool2023", + "parent": + { + "type": "IsParentOf", + "id": "90890f15-cc71-46b6-9eea-37835d7f5725", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "ee4567e0-4bd4-11ee-ad45-a41b72fe97e2", + "name": "SoBigDataAtDIPSCO", + "parent": + { + "type": "IsParentOf", + "id": "f9116ea6-b7b5-45dc-9b4f-8bad7a9959c3", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "bcb87730-2f35-11eb-ac4a-b4c80af2c470", + "name": "SoBigDataLiteracy", + "parent": + { + "type": "IsParentOf", + "id": "4dbd48f1-22f5-4bee-befa-b022576b40d3", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "fbfc8390-4d5f-11e5-b6d3-9b78ffed058f", + "name": "StockAssessment", + "parent": + { + "type": "IsParentOf", + "id": "e2ee490e-0018-4101-8bf3-89aad52e4377", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "ce4aa9a0-67c4-11e7-8f00-87202f6bddbf", + "name": "TextCrowd", + "parent": + { + "type": "IsParentOf", + "id": "6db0ab7c-041d-4b2f-a8ea-942a1ce549b0", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "46a31a30-fe01-11ed-b2b4-d83f18a2fd93", + "name": "TrainingAcademy", + "parent": + { + "type": "IsParentOf", + "id": "d28f2c93-f4e0-4fb6-98c7-92f3cf89fef2", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "9dda7ea0-f3c1-11e8-b089-bee4dfdfe94e", + "name": "VisualMedia", + "parent": + { + "type": "IsParentOf", + "id": "07f7d6b9-396d-486c-aee4-96c99e7f6d51", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f7c491f0-c2b6-11e6-bab9-e9e53c7f8e12", + "name": "WellBeingAndEconomy", + "parent": + { + "type": "IsParentOf", + "id": "d7caf5f0-fbd1-4ae4-9888-4e5d7edadccc", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "7b4fce60-1c96-11e8-ba5d-f9abba79bd2d", + "name": "dnet", + "parent": + { + "type": "IsParentOf", + "id": "8548d47b-df11-45b8-89c0-9bc0693323c8", + "source": + { + "type": "Context", + "id": "5121bcaa-2abd-4e4f-aa07-57c76ea2366d", + "name": "OpenAIRE" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "dae35be0-b8a5-11eb-a510-b5394b24af77", + "name": "open-science-it", + "parent": + { + "type": "IsParentOf", + "id": "54a69c16-21bf-4de0-9efb-33b21797782f", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research", + "parent": + { + "type": "IsParentOf", + "id": "1d269780-6f1b-4d83-a596-68dcf631c16f", + "source": + { + "type": "Context", + "id": "fe6118e1-30c0-48f9-997e-2bde05690b82", + "name": "d4science.research-infrastructures.eu" + } + }, + "children": + [ + { + "type": "IsParentOf", + "id": "75139bcc-99b4-41f8-a4a7-efffff9619cc", + "target": + { + "type": "Context", + "id": "31d03a70-c2fb-11e8-8080-a02f75c50d0b", + "name": "AGINFRAplusDev" + } + }, + { + "type": "IsParentOf", + "id": "6f824872-f550-490c-99a3-dbaaf20970d0", + "target": + { + "type": "Context", + "id": "248f4f80-4b41-11e9-9d8e-d07a590d0c89", + "name": "DEMETER_trial" + } + }, + { + "type": "IsParentOf", + "id": "3d0909ac-c27c-4092-9a3d-137c7de94324", + "target": + { + "type": "Context", + "id": "5dba8730-45a1-11ed-a4d7-e624048b48ed", + "name": "E-RIHS_IP" + } + }, + { + "type": "IsParentOf", + "id": "3e7b2cac-1d58-431a-a759-6b88d21920f3", + "target": + { + "type": "Context", + "id": "b45a89f0-386b-11ea-baa6-f99d6ff7f8ec", + "name": "FMJ_Lab" + } + }, + { + "type": "IsParentOf", + "id": "b6c8528a-b218-49b9-b170-c0f50d01e080", + "target": + { + "type": "Context", + "id": "8bcc1fb0-cf60-11e7-a7ee-829b2cdf0ac3", + "name": "FoodSecurity" + } + }, + { + "type": "IsParentOf", + "id": "c893baa9-ff4f-42cd-b390-304066be8247", + "target": + { + "type": "Context", + "id": "8d3f38b0-04b2-11e7-9770-82da5ad06fb5", + "name": "H2020greeneu" + } + }, + { + "type": "IsParentOf", + "id": "e64cbe87-5a2d-472e-afa8-19ff021687d6", + "target": + { + "type": "Context", + "id": "9506dda0-a2cd-11e7-8ebf-a6af70430c53", + "name": "IOTC_SS3" + } + }, + { + "type": "IsParentOf", + "id": "4ef94390-422c-4499-b3be-c412c517baca", + "target": + { + "type": "Context", + "id": "20d921f0-8b44-11eb-a510-b5394b24af77", + "name": "MEGic" + } + }, + { + "type": "IsParentOf", + "id": "c839eff1-d78d-47fc-964b-a4a8ee6d9f26", + "target": + { + "type": "Context", + "id": "f9d4c510-5f2d-11eb-b128-9607a1e39eb7", + "name": "OpenScienceEUMandate" + } + }, + { + "type": "IsParentOf", + "id": "b933e984-194d-4c9c-8205-62d218eee504", + "target": + { + "type": "Context", + "id": "6aa25050-7f7b-11ec-a4cc-e624048b48ed", + "name": "PAILab" + } + }, + { + "type": "IsParentOf", + "id": "65eaa9b3-b575-4e00-9503-55828347c29b", + "target": + { + "type": "Context", + "id": "25dc0d10-bfba-11e7-ad13-9440097a86c5", + "name": "PerformFish" + } + }, + { + "type": "IsParentOf", + "id": "9f1c3f48-ff04-404c-8802-530fd9206b1b", + "target": + { + "type": "Context", + "id": "13e4fe50-660a-11e7-8ef6-87202f6bddbf", + "name": "RAKIP_portal" + } + }, + { + "type": "IsParentOf", + "id": "a348644c-ad93-4fa0-af21-53f2f06892ce", + "target": + { + "type": "Context", + "id": "d6dfbef0-ca0e-11e7-a7eb-829b2cdf0ac3", + "name": "SDG-Indicator14.4.1" + } + }, + { + "type": "IsParentOf", + "id": "d10ef13d-d241-4995-8140-49fe7f9eeca6", + "target": + { + "type": "Context", + "id": "8c5f6240-8885-11e9-9cd4-bd99a95efcda", + "name": "AgroClimaticModeling_trial" + } + }, + { + "type": "IsParentOf", + "id": "ce748545-6b7c-4009-98c3-a0b1c80df49c", + "target": + { + "type": "Context", + "id": "8b845120-c3aa-11e6-b8fe-d1397ea7f6b0", + "name": "AnalyticsLab" + } + }, + { + "type": "IsParentOf", + "id": "57cd64d9-18d4-413e-adfa-12bcf03eb590", + "target": + { + "type": "Context", + "id": "70c43e00-705d-11ea-8488-c08e7e9bf311", + "name": "E-RIHS_iGA" + } + }, + { + "type": "IsParentOf", + "id": "427cb92d-08cb-40dd-afc0-6f346d00e87a", + "target": + { + "type": "Context", + "id": "bb816a70-15ee-11e7-8be0-dc4dc997c5d1", + "name": "EcoEvo" + } + }, + { + "type": "IsParentOf", + "id": "85b474ce-25b7-493c-9f03-2a9a529ac0dd", + "target": + { + "type": "Context", + "id": "4046b500-59ae-11ec-a4cb-e624048b48ed", + "name": "EnvironmentalDataExchange" + } + }, + { + "type": "IsParentOf", + "id": "0e3a68f9-1f95-4b31-bc01-3da2522564f2", + "target": + { + "type": "Context", + "id": "38c2dbd0-e0bb-11e7-8dac-dbea6c1188f8", + "name": "FoodborneOutbreak" + } + }, + { + "type": "IsParentOf", + "id": "8b8e1ad4-270e-4996-a698-97dcb02d9141", + "target": + { + "type": "Context", + "id": "b9cef3a0-7fa2-11ec-a4cc-e624048b48ed", + "name": "HumanaVoxLab" + } + }, + { + "type": "IsParentOf", + "id": "169a390e-6ea3-492d-9893-5e49b5e1784e", + "target": + { + "type": "Context", + "id": "37ffd4d0-7819-11ea-8488-c08e7e9bf311", + "name": "IPERION_HS" + } + }, + { + "type": "IsParentOf", + "id": "55fd9440-d3df-43eb-ab7c-6d88d936787b", + "target": + { + "type": "Context", + "id": "94e59f10-c2f3-11eb-a84f-bad21096951e", + "name": "Limnodata" + } + }, + { + "type": "IsParentOf", + "id": "5bb78a12-5f41-4112-9a51-f9b32ab0f799", + "target": + { + "type": "Context", + "id": "1546f160-3135-11ea-a32a-a63a8e3dd29e", + "name": "NitrogenScrumLab" + } + }, + { + "type": "IsParentOf", + "id": "0518e014-6c04-4a9f-a4e4-8610a74ab81c", + "target": + { + "type": "Context", + "id": "c455bdc0-fc31-11e7-8dd0-dbea6c1188f8", + "name": "ORIONKnowledgeHub" + } + }, + { + "type": "IsParentOf", + "id": "8f3b3c00-285a-4249-a83c-7779f9766138", + "target": + { + "type": "Context", + "id": "fe81adf0-0d26-11e8-8b99-f1c4c2a4f648", + "name": "ParticleFormation" + } + }, + { + "type": "IsParentOf", + "id": "975121b9-13a1-4a7a-8666-7e8c6d91cd3d", + "target": + { + "type": "Context", + "id": "d97b8fb0-4a30-11e9-9d8b-d07a590d0c89", + "name": "RAKIP_trial" + } + }, + { + "type": "IsParentOf", + "id": "bec818b4-02cf-415b-9cb2-dc1847205c33", + "target": + { + "type": "Context", + "id": "3c658780-f784-11e7-8dcc-dbea6c1188f8", + "name": "SDI_Lab" + } + }, + { + "type": "IsParentOf", + "id": "6db0ab7c-041d-4b2f-a8ea-942a1ce549b0", + "target": + { + "type": "Context", + "id": "ce4aa9a0-67c4-11e7-8f00-87202f6bddbf", + "name": "TextCrowd" + } + }, + { + "type": "IsParentOf", + "id": "54a69c16-21bf-4de0-9efb-33b21797782f", + "target": + { + "type": "Context", + "id": "dae35be0-b8a5-11eb-a510-b5394b24af77", + "name": "open-science-it" + } + }, + { + "type": "IsParentOf", + "id": "29c49bea-f798-41d3-ac92-04ad3f52c3ad", + "target": + { + "type": "Context", + "id": "cd7964e0-c82c-11e6-b8ff-d1397ea7f6b0", + "name": "AGINFRAplus" + } + }, + { + "type": "IsParentOf", + "id": "ea0db60d-7f30-4edb-adf6-4e65ace4600d", + "target": + { + "type": "Context", + "id": "e291bbf0-cac1-11e7-a7ed-829b2cdf0ac3", + "name": "AgroClimaticModelling" + } + }, + { + "type": "IsParentOf", + "id": "a54f12f7-7a71-4d41-8a14-8f68efa9546c", + "target": + { + "type": "Context", + "id": "7bdf37a0-63cb-11ec-a4cc-e624048b48ed", + "name": "COI_Collaboratory" + } + }, + { + "type": "IsParentOf", + "id": "e4eaad1b-ec00-4ff1-8592-1bee2224ac2f", + "target": + { + "type": "Context", + "id": "f3a12430-15fe-11e7-8be1-dc4dc997c5d1", + "name": "DEMETER" + } + }, + { + "type": "IsParentOf", + "id": "5a1001a8-fb90-40af-9ce1-236c32cf833f", + "target": + { + "type": "Context", + "id": "d83eeb10-4b6d-11e7-8a71-85a964c06da1", + "name": "E-RIHS" + } + }, + { + "type": "IsParentOf", + "id": "c6bdcf09-2a07-461d-871f-35c82907c7a2", + "target": + { + "type": "Context", + "id": "8e983e40-625f-11ec-a4cc-e624048b48ed", + "name": "E-RIHS_iNCC" + } + }, + { + "type": "IsParentOf", + "id": "152901b7-fd97-4d20-93c7-50ec480eac63", + "target": + { + "type": "Context", + "id": "2357caa0-e3e9-11e6-9766-82da5ad06fb5", + "name": "fosteropenscience" + } + } + ] + }, + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO", + "parent": + { + "type": "IsParentOf", + "id": "ad2ad1f3-db2f-476f-a24a-550d7505ef71", + "source": + { + "type": "Context", + "id": "fe6118e1-30c0-48f9-997e-2bde05690b82", + "name": "d4science.research-infrastructures.eu" + } + }, + "children": + [ + { + "type": "IsParentOf", + "id": "76a2135d-8b6b-414c-aa74-69c3a6f8bdd9", + "target": + { + "type": "Context", + "id": "dd795060-78cf-11ea-ae02-a86c2df2b5a7", + "name": "Biolaakso" + } + }, + { + "type": "IsParentOf", + "id": "aefdb5a1-907d-4bd6-870a-b1e5638e589d", + "target": + { + "type": "Context", + "id": "187016b0-8aee-11ea-8c3a-8f49a0b9bc25", + "name": "RDFForestry" + } + }, + { + "type": "IsParentOf", + "id": "281c968c-268e-4c51-b181-e35d1bca69ad", + "target": + { + "type": "Context", + "id": "608d2f20-36b4-11ea-adfb-a86c2df2b5a7", + "name": "RISIS2Lab" + } + }, + { + "type": "IsParentOf", + "id": "c224539f-dcbe-4785-a364-d55715d10c07", + "target": + { + "type": "Context", + "id": "da2660e0-a320-11e9-a731-89a8dce13441", + "name": "RuralDigitizationForum" + } + }, + { + "type": "IsParentOf", + "id": "7df23ac4-595b-4043-87a5-83d55d38cd1b", + "target": + { + "type": "Context", + "id": "0dfeab20-c80b-11e9-a6eb-ca21a4eac8d2", + "name": "ToscanaNord" + } + }, + { + "type": "IsParentOf", + "id": "555d9c34-5c9b-499c-9b64-24c87b0ad45a", + "target": + { + "type": "Context", + "id": "eb0b1c30-a2f2-11e9-a730-89a8dce13441", + "name": "DESIRA_CoordinationManagement" + } + }, + { + "type": "IsParentOf", + "id": "168eef55-5820-4a06-acae-ab390503e871", + "target": + { + "type": "Context", + "id": "7cc2dcd0-9c30-11ea-8c3a-8f49a0b9bc25", + "name": "DigitalaisMarketingsLatvia" + } + }, + { + "type": "IsParentOf", + "id": "76563dec-deb0-4444-a42f-09ba0fec0b18", + "target": + { + "type": "Context", + "id": "b1a97e60-78cf-11ea-ae02-a86c2df2b5a7", + "name": "Oosterwold" + } + }, + { + "type": "IsParentOf", + "id": "744562d0-a31a-4726-8a21-73aa68a856e8", + "target": + { + "type": "Context", + "id": "fa9856c0-1d8e-11e9-bda9-b74261761c8b", + "name": "PARTHENOS_VRE" + } + }, + { + "type": "IsParentOf", + "id": "97537b94-9f13-4553-a4d2-34e8fa567068", + "target": + { + "type": "Context", + "id": "2086f530-8ae9-11ea-8c3a-8f49a0b9bc25", + "name": "RDFRural" + } + }, + { + "type": "IsParentOf", + "id": "3995f6d4-e9ed-4af1-b898-0f3c96c41e82", + "target": + { + "type": "Context", + "id": "d9af4100-384d-11ea-adfe-a86c2df2b5a7", + "name": "RISIS2OpenData" + } + }, + { + "type": "IsParentOf", + "id": "4acde36f-7ff2-4c27-9771-09a4701aac0e", + "target": + { + "type": "Context", + "id": "0e56e8d0-16d3-11ec-b98e-93fe44257d6e", + "name": "DESIRA_Project" + } + }, + { + "type": "IsParentOf", + "id": "99cc0e08-137f-4c5d-b16f-9035bd44ce64", + "target": + { + "type": "Context", + "id": "a0fadda0-9c30-11ea-8c3a-8f49a0b9bc25", + "name": "DigitalisierterObstanbauBodenseeregion" + } + }, + { + "type": "IsParentOf", + "id": "9789f374-a84f-425c-8c4b-3d89d7908eda", + "target": + { + "type": "Context", + "id": "6e79c780-8ae5-11ea-8c3a-8f49a0b9bc25", + "name": "RDFAgriculture" + } + }, + { + "type": "IsParentOf", + "id": "ecdae600-4db6-41cb-90be-a86ba949d3d0", + "target": + { + "type": "Context", + "id": "fa4c6090-78b3-11ea-ae01-a86c2df2b5a7", + "name": "TimberRegulation" + } + }, + { + "type": "IsParentOf", + "id": "9dd31add-e67b-49f2-b627-5ae3dfbc7e42", + "target": + { + "type": "Context", + "id": "21dddbe0-78d0-11ea-ae02-a86c2df2b5a7", + "name": "Vlaanderen" + } + } + ] + }, + { + "type": "Context", + "id": "cd7964e0-c82c-11e6-b8ff-d1397ea7f6b0", + "name": "AGINFRAplus", + "parent": + { + "type": "IsParentOf", + "id": "29c49bea-f798-41d3-ac92-04ad3f52c3ad", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "1421f600-1e38-11e5-8b21-df8a51ff9007", + "name": "ARIADNE", + "parent": + { + "type": "IsParentOf", + "id": "c17236c0-aea1-4139-8842-b83149239cf0", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f45a4ba0-2ba4-11e9-ac82-d7d19997e0e2", + "name": "ARIADNEplus_Mappings", + "parent": + { + "type": "IsParentOf", + "id": "4fd50a8e-3602-45da-866e-2b99a4a9efe2", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "e291bbf0-cac1-11e7-a7ed-829b2cdf0ac3", + "name": "AgroClimaticModelling", + "parent": + { + "type": "IsParentOf", + "id": "ea0db60d-7f30-4edb-adf6-4e65ace4600d", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "a64379e0-4d5f-11e5-b6d2-9b78ffed058f", + "name": "AquacultureAtlasGeneration", + "parent": + { + "type": "IsParentOf", + "id": "d3f4820b-39f0-4988-a784-302475d5ae43", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "d688b910-74b3-11e4-aa46-fa585a95eba3", + "name": "BiodiversityLab", + "parent": + { + "type": "IsParentOf", + "id": "7d2ed51f-01ed-4511-bb3a-00fcb238026c", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "721a7610-4708-11ec-b27f-8523a585c524", + "name": "Blue-CloudHackathon", + "parent": + { + "type": "IsParentOf", + "id": "faefabfb-15ec-4058-9a52-2d95959d0c97", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0fab2dd0-eb49-11ed-a4f9-b1eda3cccccd", + "name": "Blue-CloudTrainingLab", + "parent": + { + "type": "IsParentOf", + "id": "a7a57f41-875c-46af-83fd-ecd1d7f66be8", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "7bdf37a0-63cb-11ec-a4cc-e624048b48ed", + "name": "COI_Collaboratory", + "parent": + { + "type": "IsParentOf", + "id": "a54f12f7-7a71-4d41-8a14-8f68efa9546c", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "673812c0-906a-11e6-a35d-8707350103d4", + "name": "CityOfCitizens", + "parent": + { + "type": "IsParentOf", + "id": "e703cda0-e993-462f-a925-c907c59fe908", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "393f5370-7418-11ea-ac45-b4c80af2c470", + "name": "ComputationalEpidemiology", + "parent": + { + "type": "IsParentOf", + "id": "233e26f3-759a-446f-96af-2d0ca189b506", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f3a12430-15fe-11e7-8be1-dc4dc997c5d1", + "name": "DEMETER", + "parent": + { + "type": "IsParentOf", + "id": "e4eaad1b-ec00-4ff1-8592-1bee2224ac2f", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0e56e8d0-16d3-11ec-b98e-93fe44257d6e", + "name": "DESIRA_Project", + "parent": + { + "type": "IsParentOf", + "id": "4acde36f-7ff2-4c27-9771-09a4701aac0e", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "a0fadda0-9c30-11ea-8c3a-8f49a0b9bc25", + "name": "DigitalisierterObstanbauBodenseeregion", + "parent": + { + "type": "IsParentOf", + "id": "99cc0e08-137f-4c5d-b16f-9035bd44ce64", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "d83eeb10-4b6d-11e7-8a71-85a964c06da1", + "name": "E-RIHS", + "parent": + { + "type": "IsParentOf", + "id": "5a1001a8-fb90-40af-9ce1-236c32cf833f", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "8e983e40-625f-11ec-a4cc-e624048b48ed", + "name": "E-RIHS_iNCC", + "parent": + { + "type": "IsParentOf", + "id": "c6bdcf09-2a07-461d-871f-35c82907c7a2", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f30e7d30-044d-11ee-b161-b39c51104fdf", + "name": "EMSO-ERIC", + "parent": + { + "type": "IsParentOf", + "id": "3b5a5dda-9b8e-433c-a5ce-5a307ae467a4", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "ec3501b0-75fb-11eb-af8f-b9e8c67a5d97", + "name": "EOSCPillar4EarthScience", + "parent": + { + "type": "IsParentOf", + "id": "64073828-a1d8-4f90-a9fe-9f6ece8ad9f6", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f6bf6ad0-9986-11ec-b285-8523a585c524", + "name": "EOSCPillarOSLF", + "parent": + { + "type": "IsParentOf", + "id": "b4900682-11cb-4289-adab-954d116a5ae6", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c4c52270-cb40-11e9-b79d-99cc522de507", + "name": "EOSCPillarServiceRegistry", + "parent": + { + "type": "IsParentOf", + "id": "ab8b37ce-523d-48ea-915f-584c12bb516b", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "54094cf0-b9a9-11ec-b286-8523a585c524", + "name": "EOSCPillar_Lab", + "parent": + { + "type": "IsParentOf", + "id": "e6eb98b5-2f83-4573-99b0-2f3ba547587f", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "82d1ae80-2189-11ee-b0f0-f7434eb37160", + "name": "EcologicalRestorationLab", + "parent": + { + "type": "IsParentOf", + "id": "3fa38783-c5ce-4c4d-974f-bbae950a8898", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "a09208a0-4897-11ed-8191-a8da5845b419", + "name": "Esquiline", + "parent": + { + "type": "IsParentOf", + "id": "602f617d-81f5-4ce6-814b-187153a72d6b", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "0090a7e0-90e9-11e8-b31f-8c70a8e6a0ef", + "name": "FIT4RRI", + "parent": + { + "type": "IsParentOf", + "id": "d3fb3160-290a-4008-aa87-e225d70123a8", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "3222a240-ccf0-11eb-8ba4-925f3b2938cb", + "name": "FoodDecide", + "parent": + { + "type": "IsParentOf", + "id": "d78d3520-0734-4ae4-b560-13c9abb77553", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c864ec90-a5e5-11e6-918c-95dfd2918b3e", + "name": "GEMex", + "parent": + { + "type": "IsParentOf", + "id": "c912ec52-0130-4f58-83ea-7521b4a63dc2", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c71b8350-b330-11e6-94e9-8f130aecbe51", + "name": "GRSF_Admin", + "parent": + { + "type": "IsParentOf", + "id": "ed639923-f7c4-4cd2-91e8-1d337d6484fd", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "47f885f0-cd0a-11ed-91e1-9f0a0237cc74", + "name": "GlobalFisheriesAtlas", + "parent": + { + "type": "IsParentOf", + "id": "2777882a-9c8f-42f5-bfb3-b9f4c5bb84c8", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "6356c2f0-91b2-11ed-8192-a8da5845b419", + "name": "HPC_Lab", + "parent": + { + "type": "IsParentOf", + "id": "49df9149-9b06-48d0-b03f-bc4b3dd69eca", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "1a270ae0-056a-11ea-a850-afea15882b0c", + "name": "I-GeneProject", + "parent": + { + "type": "IsParentOf", + "id": "8f22d796-d3a6-4fa3-90e6-953a977bb262", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f3fbf730-d86b-11ed-91e2-9f0a0237cc74", + "name": "ICOOE", + "parent": + { + "type": "IsParentOf", + "id": "04391b45-27cb-4cad-ade9-ff58738fd457", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4bf4b910-f0bc-11ec-8190-a8da5845b419", + "name": "ISTI_Lab", + "parent": + { + "type": "IsParentOf", + "id": "bc8714df-8ba9-4d40-acd8-e1e3385bbffc", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4cafe0d0-4d2b-11ec-b282-8523a585c524", + "name": "JERICO_CORE", + "parent": + { + "type": "IsParentOf", + "id": "1b03bcb1-6a8e-4e0f-a1f6-2b8e44aa7dab", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "995ba490-a1d7-11e7-ba84-b48de826068b", + "name": "M-ATLAS", + "parent": + { + "type": "IsParentOf", + "id": "aa9fa9d3-7da7-4a22-ba4f-6ea9b1e508da", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "146b4a90-388e-11ec-a499-b8df1083f615", + "name": "MOVING_EU-MultiActorPlatform", + "parent": + { + "type": "IsParentOf", + "id": "ab059f07-108f-400d-8f86-9bbc0741984c", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c0429760-94af-11ec-8b38-a2aaf7b24d98", + "name": "MOVING_StoryMaps", + "parent": + { + "type": "IsParentOf", + "id": "9d363f17-17dc-4eb5-854a-fb68aa9e3999", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f6dfd0c0-15d2-11ea-8c90-b4759126c18b", + "name": "MarineScienceLab", + "parent": + { + "type": "IsParentOf", + "id": "51cec4c9-8bef-4518-b467-2c66779c1874", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "3c56f760-f54e-11ed-b8a9-e17e530f7483", + "name": "NAVIGATOR-AOUC", + "parent": + { + "type": "IsParentOf", + "id": "0efc9484-6e12-4716-be1f-fa74edc02fbe", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "ad256970-906c-11eb-9efd-db57e5f19379", + "name": "NAVIGATOR-DEV", + "parent": + { + "type": "IsParentOf", + "id": "18e7c2a0-7628-438d-b138-7585e37bb10c", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4d56e910-43d1-11ec-8b37-a2aaf7b24d98", + "name": "NotebookLab", + "parent": + { + "type": "IsParentOf", + "id": "9ea11ac3-8199-4fb2-af91-ae94fbc94611", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "8bca08c0-9c00-11ed-bc0c-ce8e7860603b", + "name": "OSObservatory_IT", + "parent": + { + "type": "IsParentOf", + "id": "3f944b47-4d40-4861-98f9-b54de5ae9bb7", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "4e3928e0-e862-11eb-89e6-cca7d35d93e4", + "name": "OpenAIRE_Lab", + "parent": + { + "type": "IsParentOf", + "id": "a9d1aa62-c685-41b4-8e3d-e63114a1b481", + "source": + { + "type": "Context", + "id": "5121bcaa-2abd-4e4f-aa07-57c76ea2366d", + "name": "OpenAIRE" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "62886670-f5c9-11eb-89e7-cca7d35d93e4", + "name": "OpenAIRE_devops", + "parent": + { + "type": "IsParentOf", + "id": "2dc45e59-1faa-435d-97a8-845e92db5779", + "source": + { + "type": "Context", + "id": "5121bcaa-2abd-4e4f-aa07-57c76ea2366d", + "name": "OpenAIRE" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "5da6fdd0-feee-11ed-b15f-b39c51104fdf", + "name": "OpenScientometricsLab", + "parent": + { + "type": "IsParentOf", + "id": "82da5a39-1009-4894-97e8-366695b2cd33", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "b480b1c0-ed24-11ea-ac48-b4c80af2c470", + "name": "PandemicRecovery", + "parent": + { + "type": "IsParentOf", + "id": "31f0e21f-5dcd-418c-8d10-1eae1721cfd8", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "dbdac550-599c-11eb-9d9b-a6101c63ee7e", + "name": "PerformFISH-AnalyticsLab", + "parent": + { + "type": "IsParentOf", + "id": "9a78944b-f56d-49d9-adca-4f95b7f238f5", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "a8932400-5c5d-11e9-a725-d3964f6c6247", + "name": "PerformFISH_dev", + "parent": + { + "type": "IsParentOf", + "id": "122e9b15-35fa-4c68-b581-a4945d39b54d", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "29ea8fc0-4d62-11e5-b6da-9b78ffed058f", + "name": "ProtectedAreaImpactMaps", + "parent": + { + "type": "IsParentOf", + "id": "3c00aff3-d5bc-4f00-869c-0e5ee1b10783", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "6e79c780-8ae5-11ea-8c3a-8f49a0b9bc25", + "name": "RDFAgriculture", + "parent": + { + "type": "IsParentOf", + "id": "9789f374-a84f-425c-8c4b-3d89d7908eda", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "f1863710-4b3c-11ee-b163-b39c51104fdf", + "name": "RECOFI-RDB_PILOT", + "parent": + { + "type": "IsParentOf", + "id": "0f1cb784-7662-4040-8631-22faa516597e", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2f9963a0-965d-11ed-bc0c-ce8e7860603b", + "name": "RPrototypingLab", + "parent": + { + "type": "IsParentOf", + "id": "1edb0670-05a7-4f01-91f3-39e3ba01b221", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "ae420650-3dbc-11ea-a279-f57065157f53", + "name": "RuralCluster", + "parent": + { + "type": "IsParentOf", + "id": "8fbfad65-8579-47cb-9047-acb6a037ca58", + "source": + { + "type": "Context", + "id": "01b0e4a7-22c3-4deb-a6b2-3c520c3c64a6", + "name": "D4OS" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "a65b1250-b46e-11ea-ac47-b4c80af2c470", + "name": "SBD-InfraCore", + "parent": + { + "type": "IsParentOf", + "id": "f875c8bb-fdd8-41b0-9050-45613acae012", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "75e97050-ada9-11e6-aff3-95258c839c48", + "name": "SMAPH", + "parent": + { + "type": "IsParentOf", + "id": "beebafec-3fb3-4bc1-88e0-5f2f35cb2082", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "88d85380-993f-11eb-9efd-db57e5f19379", + "name": "SerGen-Covid19_Ricercatore", + "parent": + { + "type": "IsParentOf", + "id": "31a0de8b-ad3a-4959-bf60-142dba8cd870", + "source": + { + "type": "Context", + "id": "6afe7b16-0703-4185-80b2-30823e8efb28", + "name": "FARM" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "43299530-684c-11e5-bc2f-9b78ffed058f", + "name": "SoBigData.eu", + "parent": + { + "type": "IsParentOf", + "id": "05e4ef63-24e7-4011-a35d-7c5cf77e71d7", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "9929dbc0-c223-11e6-bab9-e9e53c7f8e12", + "name": "SoBigDataLab", + "parent": + { + "type": "IsParentOf", + "id": "e9f6b27a-0dc1-450d-8205-95dc104cb57b", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2773baa0-c2af-11e6-bab9-e9e53c7f8e12", + "name": "SocietalDebates", + "parent": + { + "type": "IsParentOf", + "id": "ca5bdd02-0173-49d5-bc43-55c48ccf769a", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "7a2218a0-1c38-11e6-baa2-9dc916bd9919", + "name": "TagMe", + "parent": + { + "type": "IsParentOf", + "id": "31458eef-0455-42be-9a8b-a7188aef492c", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "fa4c6090-78b3-11ea-ae01-a86c2df2b5a7", + "name": "TimberRegulation", + "parent": + { + "type": "IsParentOf", + "id": "ecdae600-4db6-41cb-90be-a86ba949d3d0", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "c1e21390-a3cf-11ed-bc0c-ce8e7860603b", + "name": "TuscanyHealthEcosystem", + "parent": + { + "type": "IsParentOf", + "id": "e14eac6e-871f-4d02-9d50-e591c6d9ae97", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "21dddbe0-78d0-11ea-ae02-a86c2df2b5a7", + "name": "Vlaanderen", + "parent": + { + "type": "IsParentOf", + "id": "9dd31add-e67b-49f2-b627-5ae3dfbc7e42", + "source": + { + "type": "Context", + "id": "657f3e59-28aa-4a22-acd9-fa6e34336fa8", + "name": "ParthenosVO" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "73eafa30-0901-11ed-9393-be91cbbfcdef", + "name": "XAISS", + "parent": + { + "type": "IsParentOf", + "id": "951f2fee-5493-499e-ae7a-51bfd55172ce", + "source": + { + "type": "Context", + "id": "89e8d292-d3bc-4f9c-9778-163e3989c600", + "name": "SoBigData" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "2357caa0-e3e9-11e6-9766-82da5ad06fb5", + "name": "fosteropenscience", + "parent": + { + "type": "IsParentOf", + "id": "152901b7-fd97-4d20-93c7-50ec480eac63", + "source": + { + "type": "Context", + "id": "40455ca3-293b-4103-93c1-1dbf2078edaa", + "name": "D4Research" + } + }, + "children": + [] + }, + { + "type": "Context", + "id": "a36af700-89cd-11ec-a788-f9b8e37af5f1", + "name": "s2i2s_lab", + "parent": + { + "type": "IsParentOf", + "id": "fe38d144-4978-4710-89a6-6017dba696f4", + "source": + { + "type": "Context", + "id": "04733be6-04bc-4af5-b551-393e128f7c42", + "name": "gCubeApps" + } + }, + "children": + [] + } +] \ No newline at end of file diff --git a/src/test/resources/contexts/dev-contexts.json b/src/test/resources/contexts/dev-contexts.json new file mode 100644 index 0000000..a4f340e --- /dev/null +++ b/src/test/resources/contexts/dev-contexts.json @@ -0,0 +1 @@ +[{"type":"Context","id":"9a7752f6-ca01-4a89-a9dd-f36aeb2cbf50","name":"gcube","parent":null,"children":[{"type":"IsParentOf","id":"b4bdbd3e-87c4-43d1-b642-532f6a30ad44","target":{"type":"Context","id":"4e6adfe6-ab93-47c0-a532-339bb92ad07a","name":"devNext"}},{"type":"IsParentOf","id":"542179cb-36fc-4d4e-9771-b55d3b2bd301","target":{"type":"Context","id":"2a9f4a4b-5f3e-4eee-9630-e2f7b2e58c34","name":"devsec"}}]},{"type":"Context","id":"4e6adfe6-ab93-47c0-a532-339bb92ad07a","name":"devNext","parent":{"type":"IsParentOf","id":"b4bdbd3e-87c4-43d1-b642-532f6a30ad44","source":{"type":"Context","id":"9a7752f6-ca01-4a89-a9dd-f36aeb2cbf50","name":"gcube"}},"children":[{"type":"IsParentOf","id":"01cc9e06-475b-43a4-a4cd-7f5070f0dc65","target":{"type":"Context","id":"c7f3af7e-7e8c-406e-8d5a-cd11c82b5fa3","name":"NextNext"}}]},{"type":"Context","id":"2a9f4a4b-5f3e-4eee-9630-e2f7b2e58c34","name":"devsec","parent":{"type":"IsParentOf","id":"542179cb-36fc-4d4e-9771-b55d3b2bd301","source":{"type":"Context","id":"9a7752f6-ca01-4a89-a9dd-f36aeb2cbf50","name":"gcube"}},"children":[{"type":"IsParentOf","id":"e28b8e16-84d5-4cd9-a5a1-8a55fa371d0c","target":{"type":"Context","id":"a3e40b10-01d0-11ed-8d67-f3498769ebff","name":"CCP"}},{"type":"IsParentOf","id":"e46696d5-3290-4d7a-b22a-71940bda7ec0","target":{"type":"Context","id":"8efe07f5-de24-49f9-a2fb-fbfdcfda8c91","name":"devVRE"}}]},{"type":"Context","id":"c7f3af7e-7e8c-406e-8d5a-cd11c82b5fa3","name":"NextNext","parent":{"type":"IsParentOf","id":"01cc9e06-475b-43a4-a4cd-7f5070f0dc65","source":{"type":"Context","id":"4e6adfe6-ab93-47c0-a532-339bb92ad07a","name":"devNext"}},"children":[]},{"type":"Context","id":"a3e40b10-01d0-11ed-8d67-f3498769ebff","name":"CCP","parent":{"type":"IsParentOf","id":"e28b8e16-84d5-4cd9-a5a1-8a55fa371d0c","source":{"type":"Context","id":"2a9f4a4b-5f3e-4eee-9630-e2f7b2e58c34","name":"devsec"}},"children":[]},{"type":"Context","id":"8efe07f5-de24-49f9-a2fb-fbfdcfda8c91","name":"devVRE","parent":{"type":"IsParentOf","id":"e46696d5-3290-4d7a-b22a-71940bda7ec0","source":{"type":"Context","id":"2a9f4a4b-5f3e-4eee-9630-e2f7b2e58c34","name":"devsec"}},"children":[]}] \ No newline at end of file