From e766ec1d76b00eba76e5afb8e0942e52a0f5de77 Mon Sep 17 00:00:00 2001 From: Remko Date: Tue, 26 Sep 2023 13:05:03 +0200 Subject: [PATCH 1/3] added new env variables --- pwa/.env.development | 8 - pwa/gatsby-config.js | 2 +- pwa/package-lock.json | 10 +- pwa/package.json | 1 + .../categoryCard/CategoryCard.module.css | 9 +- .../components/categoryCard/CategoryCard.tsx | 10 +- pwa/src/context/theme.ts | 18 - pwa/src/data/applications.ts | 734 - pwa/src/data/components.ts | 46898 ---------------- pwa/src/data/organizations.ts | 128 - pwa/src/layout/Head.tsx | 6 +- pwa/src/layout/Layout.tsx | 24 +- pwa/src/styling/global.css | 51 + pwa/src/styling/index.css | 9 + .../themeProvider/ThemeProvider.module.css | 31 - .../styling/themeProvider/ThemeProvider.tsx | 86 - .../ApplicationsTemplate.tsx | 2 +- .../templateParts/header/HeaderTemplate.tsx | 6 +- pwa/static/.env.development | 13 + pwa/static/.env.production | 13 + pwa/static/themes/rotterdam.css | 301 +- pwa/static/themes/utrecht.css | 76 +- 22 files changed, 185 insertions(+), 48251 deletions(-) delete mode 100644 pwa/.env.development delete mode 100644 pwa/src/context/theme.ts delete mode 100644 pwa/src/data/applications.ts delete mode 100644 pwa/src/data/components.ts delete mode 100644 pwa/src/data/organizations.ts delete mode 100644 pwa/src/styling/themeProvider/ThemeProvider.module.css delete mode 100644 pwa/src/styling/themeProvider/ThemeProvider.tsx create mode 100644 pwa/static/.env.development create mode 100644 pwa/static/.env.production diff --git a/pwa/.env.development b/pwa/.env.development deleted file mode 100644 index 3aa828970..000000000 --- a/pwa/.env.development +++ /dev/null @@ -1,8 +0,0 @@ -GATSBY_ME_URL = http://localhost/me -GATSBY_API_URL = http://localhost/api -GATSBY_ADMIN_URL = http://localhost/admin -GATSBY_BASE_URL = http://localhost -GATSBY_FRONTEND_URL = http://localhost:8000 -GATSBY_ORGANIZATION = - http://webresourcecatalogus.conduction.svc.cluster.local/organizations/b2d3176e-f1c6-4365-ab86-dd253c65fc43 -GATSBY_LOGIN_REDIRECT = vault diff --git a/pwa/gatsby-config.js b/pwa/gatsby-config.js index cb69c4cf9..66dcd217d 100644 --- a/pwa/gatsby-config.js +++ b/pwa/gatsby-config.js @@ -1,7 +1,7 @@ /* eslint-env node */ /* eslint-disable @typescript-eslint/no-var-requires */ require("dotenv").config({ - path: `.env.${process.env.NODE_ENV}`, + path: `static/.env.${process.env.NODE_ENV}`, }); module.exports = { diff --git a/pwa/package-lock.json b/pwa/package-lock.json index 966b7efcf..3d71a0457 100644 --- a/pwa/package-lock.json +++ b/pwa/package-lock.json @@ -9,6 +9,7 @@ "version": "1.0.0", "dependencies": { "@conduction/components": "2.2.9", + "@conduction/theme": "1.0.38", "@fortawesome/fontawesome-svg-core": "^6.1.1", "@fortawesome/free-solid-svg-icons": "^6.1.1", "@fortawesome/react-fontawesome": "^0.1.18", @@ -1885,6 +1886,14 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, + "node_modules/@conduction/theme": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/@conduction/theme/-/theme-1.0.38.tgz", + "integrity": "sha512-IMESWeyL1hMC3DAO1LnYssYUIk1KHvdcaaX/uFM4l/qxvoj+gOqEYq/Q3TjuG+dh5ud21LeJSvk5JwbSHnsc9A==", + "dependencies": { + "@nl-design-system-unstable/rotterdam-design-tokens": "^1.0.0-alpha.100" + } + }, "node_modules/@egjs/hammerjs": { "version": "2.0.17", "license": "MIT", @@ -2937,7 +2946,6 @@ }, "node_modules/@nl-design-system-unstable/rotterdam-design-tokens": { "version": "1.0.0-alpha.100", - "dev": true, "license": "SEE LICENSE IN LICENSE.md" }, "node_modules/@nodelib/fs.scandir": { diff --git a/pwa/package.json b/pwa/package.json index 4f44cccc8..d834e78d1 100644 --- a/pwa/package.json +++ b/pwa/package.json @@ -24,6 +24,7 @@ }, "dependencies": { "@conduction/components": "2.2.9", + "@conduction/theme": "1.0.38", "@fortawesome/fontawesome-svg-core": "^6.1.1", "@fortawesome/free-solid-svg-icons": "^6.1.1", "@fortawesome/react-fontawesome": "^0.1.18", diff --git a/pwa/src/components/categoryCard/CategoryCard.module.css b/pwa/src/components/categoryCard/CategoryCard.module.css index e241657e1..1fb88945f 100644 --- a/pwa/src/components/categoryCard/CategoryCard.module.css +++ b/pwa/src/components/categoryCard/CategoryCard.module.css @@ -9,15 +9,18 @@ .titleLink { font-size: var(--web-app-font-size-lg); - --denhaag-link-icon-gap: var(--web-app-size-xs); } -.titleLink > :first-child > span > svg { +.titleLink > span > svg { width: var(--web-app-font-size-lg); height: var(--web-app-font-size-lg); } -.titleLink > :first-child { +.icon { + margin-inline-end: var(--web-app-size-xs); +} + +.titleLink > span { display: flex; } diff --git a/pwa/src/components/categoryCard/CategoryCard.tsx b/pwa/src/components/categoryCard/CategoryCard.tsx index bdfda5b75..b63f16091 100644 --- a/pwa/src/components/categoryCard/CategoryCard.tsx +++ b/pwa/src/components/categoryCard/CategoryCard.tsx @@ -19,12 +19,10 @@ export const CategoryCard: React.FC = ({ title, description, -
- - {icon} - {title.label} - -
+ + {icon} + {title.label} +
{description} diff --git a/pwa/src/context/theme.ts b/pwa/src/context/theme.ts deleted file mode 100644 index 6827246d1..000000000 --- a/pwa/src/context/theme.ts +++ /dev/null @@ -1,18 +0,0 @@ -import * as React from "react"; - - -export interface IThemesContext { - - - current: string; - -} - -export const baseThemesContext = { - current: "", - -} as IThemesContext; - -export const ThemesContextContext = React.createContext<[IThemesContext, (_: IThemesContext) => void]>([baseThemesContext, () => null]); - -export const ThemesContextProvider = ThemesContextContext.Provider; diff --git a/pwa/src/data/applications.ts b/pwa/src/data/applications.ts deleted file mode 100644 index 3ce0c95ce..000000000 --- a/pwa/src/data/applications.ts +++ /dev/null @@ -1,734 +0,0 @@ -export const TEMPORARY_APPLICATIONS = [ - { - id: "1629b91c-5da2-4aea-969b-90930b2617bf", - objectType: "application", - bpmnProcessUrl: null, - components: [ - "/apiComponentUrl/f5bcb695-b111-41f4-accb-3b805af9b92a", - "/apiComponentUrl/1669cd26-ab2c-402e-b8e7-271e6c0b8133", - "/apiComponentUrl/956104a4-25f0-43fe-9e3d-421816d73f5a", - "/apiComponentUrl/f912a658-8ce5-4a1a-9193-1b2cfb71a908", - "/apiComponentUrl/7c70df70-b7fb-4c22-9556-6f6783fde1af", - "/apiComponentUrl/c8eaf270-063e-4830-8df3-d411df9545bb", - "/apiComponentUrl/0b9ddf8b-cb42-43f9-805b-564d375e850e", - "/apiComponentUrl/a7beae69-76bb-4a02-b21c-055d2fd754e3", - "/apiComponentUrl/ef04f3eb-eceb-46fd-b08f-0cc43015f1fc", - "/apiComponentUrl/b7113d67-8c7e-4f16-ada2-f0d0acc19ea6", - "/apiComponentUrl/32101ce6-8d4e-4587-9ddb-e2dfd7c90d27", - "/apiComponentUrl/cad9df04-db7a-4ac3-90a2-abec298cfb1a", - "/apiComponentUrl/ca3a8bde-fc3c-41f9-8cfc-4fe05fe0e217", - "/apiComponentUrl/37406204-521c-45b9-bfd9-8dd3e9f141c6", - "/apiComponentUrl/491e9cef-ce99-483a-9cdb-031b07558c6a", - "/apiComponentUrl/d376ee82-37a7-4497-ad9b-5d0b5fa73e24", - "/apiComponentUrl/901af477-4f80-4729-af1f-70348787adaf", - "/apiComponentUrl/88ee3c4e-36e3-497d-9b57-7dde19b439a2", - "/apiComponentUrl/b88a633c-9f24-491f-91ac-103741c895ff", - "/apiComponentUrl/044c0d4a-1e83-4a66-abb6-caa8e27a29b7", - "/apiComponentUrl/3f1341e9-cf08-4c62-b7a1-571374d5d4f3", - "/apiComponentUrl/741b84f1-2bcf-4ff5-b48c-3717f1769bed", - "/apiComponentUrl/d2b6bdbc-236f-46f6-af69-896585336719", - "/apiComponentUrl/39a1a8c0-7119-4698-8416-f17332eb3999", - "/apiComponentUrl/269d9af2-01b8-4a12-b3b2-bb5338292751", - "/apiComponentUrl/f12bfb16-eb3e-474e-96a0-91e43943432d", - "/apiComponentUrl/b4a280cc-a142-4563-af3a-8c6c28697b2e", - "/apiComponentUrl/e94d75e8-e15d-4dda-bea4-c95685827be4", - "/apiComponentUrl/9ba42b7b-d041-476f-adf7-80dd20a35329", - "/apiComponentUrl/e8a5bd60-df78-4ea5-a215-70348bc5e162", - "/apiComponentUrl/4e74c161-7d1c-4bab-b3ed-0d470585ad73", - "/apiComponentUrl/afe613d4-a599-404f-9a08-ae79bc9a94a8", - "/apiComponentUrl/cbf4dee6-4113-4ba3-829f-88716081d7e6", - "/apiComponentUrl/4bbc245a-afd6-4ed5-b312-9eab0915581f", - "/apiComponentUrl/ae029e2c-2042-4a4e-a8f7-c89860643c74", - "/apiComponentUrl/455f5dcb-4fa7-4a70-8faf-2f6ee5e94c1c", - "/apiComponentUrl/d75c8ef9-335b-46f4-a05a-f1e1710885e0", - "/apiComponentUrl/06ecaeae-5c9e-461e-9177-8dad44a75422", - "/apiComponentUrl/92e5f86b-79e7-4c7d-8727-bd6e5822e524", - "/apiComponentUrl/3ab4bc90-c100-4938-90d5-9a0410657fde", - "/apiComponentUrl/cee832b6-bf70-419f-be9a-1db160f78ba5", - "/apiComponentUrl/337734d5-8b7c-4f75-b670-996448425297", - "/apiComponentUrl/6026bae4-0a7d-449c-8134-6f18f4bf2496", - "/apiComponentUrl/1c46a837-fcc6-4e55-b650-36dfa111e3b6", - "/apiComponentUrl/a7707e6d-a7a4-4a14-90df-7ebdd058122a", - "/apiComponentUrl/0e3f2565-433c-407e-95dc-4926745e2427", - "/apiComponentUrl/a7b4d7e1-e2b1-45c8-8798-0b76e04a1c3b", - "/apiComponentUrl/f21e107b-0a97-41dd-969c-8ab9f375d4e8", - "/apiComponentUrl/fcfa45a1-b93f-4be0-b50d-d2ff96813184", - "/apiComponentUrl/17545738-29b9-4590-a065-be095a0e6581", - "/apiComponentUrl/de364b89-cc21-48cd-9554-7af9755132ae", - "/apiComponentUrl/a1377cf9-31a0-42fb-8dc5-a831a79d7ec8", - "/apiComponentUrl/07b84af3-c2e6-423c-9b05-46362b777fad", - "/apiComponentUrl/a6fa0d0f-cb4f-4b67-8ea1-54fd4ffb2d4e", - "/apiComponentUrl/16635d5c-f056-4744-ab13-e11f6bcb8120", - "/apiComponentUrl/8b15e8f8-6b40-41bd-a004-8f1a9c07d9fd", - "/apiComponentUrl/b63f33f8-582f-434d-ab5c-0cb4bbb455cf", - "/apiComponentUrl/3fce58e7-1ba6-49de-add5-59dc6a0bd9a5", - "/apiComponentUrl/d2b8572e-0d33-4ce4-80b4-fc1c17d2ff75", - "/apiComponentUrl/2f0fe7d7-4abd-4397-b54d-85d78a6a435b", - "/apiComponentUrl/6d99d534-75bc-46c2-a0a3-2057e2a139a4", - "/apiComponentUrl/d0a81389-c826-40fe-9989-4bebbfd92adb", - "/apiComponentUrl/e5371322-235d-4de6-8ec8-1bf98f83eedd", - "/apiComponentUrl/09f0f02c-9ee4-4c9f-b656-ed7e0705c015", - "/apiComponentUrl/725a8195-7e8e-48bb-8aa5-4786f0a2aca2", - "/apiComponentUrl/334360b8-165e-4286-b4ad-f23f0efd2144", - "/apiComponentUrl/7f145b75-8324-45fa-9516-e9fdfb425066", - "/apiComponentUrl/9f0ffcb0-da61-42e2-85ae-71890ae2fc2c", - "/apiComponentUrl/17a8739a-5abc-4341-a04d-9959ebb5427f", - "/apiComponentUrl/d7529571-d0b8-4e86-93de-46cfa9d6f22f", - "/apiComponentUrl/b4f8619a-abed-43eb-9060-d4e0f2eea59e", - "/apiComponentUrl/8522cd72-1421-4a05-8d88-a752ad7a4c08", - "/apiComponentUrl/12362591-00ae-4eb0-b935-197ce7ca4528", - "/apiComponentUrl/42dc1a43-a76a-40e5-8a54-c74adaf1831f", - "/apiComponentUrl/5fed32cc-dfb1-4ba9-8e22-b4c8d8922f0d", - "/apiComponentUrl/45d5e1db-7ac7-4b92-9927-682dbb79c5ea", - "/apiComponentUrl/b9b4f81b-fac1-4bc0-bd64-0215049772e6", - "/apiComponentUrl/d2b04e0e-6687-45b3-817d-0880257a9c70", - "/apiComponentUrl/40757a99-3d9a-4aa0-8f3d-c6bee96159dd", - "/apiComponentUrl/324ae4d5-0a65-4088-aee6-97c7cf6bf291", - "/apiComponentUrl/3b876b23-2cd6-40aa-ba21-110c19434a04", - "/apiComponentUrl/2f57870d-7430-4059-8d66-2fea70da18a3", - "/apiComponentUrl/e405c369-a824-4448-8478-58b3a4ba014f", - "/apiComponentUrl/a881d3f5-cda5-44f4-9210-7fe30e05e9d6", - "/apiComponentUrl/0c20c344-6fd9-45c9-aac9-20de7ae06f12", - "/apiComponentUrl/d45aa85c-f578-4e90-ae30-0fed9b448021", - "/apiComponentUrl/b3ee5323-d13f-4a1d-89b7-1c56d6f96402", - "/apiComponentUrl/06b17e26-0528-4164-b6e9-2a281988b890", - "/apiComponentUrl/62e0ec45-da0e-40a9-a793-ab456a8be7b8", - "/apiComponentUrl/ccd6d231-a4c2-4605-8c03-97648d415bb7", - "/apiComponentUrl/8f8ea1d6-464f-4067-80d2-15a101df3c5e", - "/apiComponentUrl/b629e8f1-483b-459e-9a7e-56391a6094d9", - "/apiComponentUrl/877b4587-a236-4690-8ad5-7ba92a054efb", - "/apiComponentUrl/8674137a-8cb1-49c3-97d9-aa296cf9474c", - "/apiComponentUrl/7a3fc2cb-23de-48b8-80bd-9e55f849d710", - "/apiComponentUrl/1403fcf8-df9d-4d8e-a090-5f3855a0c9b2", - "/apiComponentUrl/ebd6d7c3-cf5a-47a3-8b7b-61e5f037949b", - "/apiComponentUrl/213fd563-d143-43e9-95fb-8ec90d369954", - "/apiComponentUrl/9e3ec017-9f34-4671-836c-f93314455569", - "/apiComponentUrl/8d8eaf80-3f32-4990-8343-ad0d965b02fe", - "/apiComponentUrl/ec3485e7-275b-4b15-b7cc-85800f8f708c", - "/apiComponentUrl/d10213c8-1d13-49a8-a0cb-c69dedcdb55b", - "/apiComponentUrl/a5f20392-7f94-4cf3-89e5-af4bfe284337", - "/apiComponentUrl/e49f38cb-1cd9-49d2-9d8b-feba4667698b", - "/apiComponentUrl/60959e37-11e0-49f4-9cc9-0fe3f62953a4", - "/apiComponentUrl/090a646c-6947-49cd-95ac-3f79ab0b218a", - "/apiComponentUrl/a2d025ec-0d51-4c9c-8196-5c5edf8154fa", - "/apiComponentUrl/bb04ef5b-89f4-4d8e-8edc-f9312f1ad497", - "/apiComponentUrl/4beeeb37-a365-4a75-9129-37c8770c3c6f", - "/apiComponentUrl/f1c3e1bc-b80f-4a57-b3d5-f2c9038bcbad", - "/apiComponentUrl/23fea120-8076-4e05-99f4-6edb7a72a30e", - "/apiComponentUrl/8384f303-9903-4168-90ae-0ceee08d5fde", - "/apiComponentUrl/a5dba249-78e1-49a8-b5d7-e6fd24311e82", - "/apiComponentUrl/e2aa72c9-4227-4aaf-b5a2-23effab3cca9", - "/apiComponentUrl/bc92e1e5-2cb5-42aa-a21b-cdf064e6c164", - "/apiComponentUrl/45a7a834-e99f-4cbb-bd09-e67dfe3c64c8", - "/apiComponentUrl/c2ca5d34-3256-4aea-8a72-0e3fb1626d88", - "/apiComponentUrl/24099152-eeea-4778-8853-7d5094e2161f", - "/apiComponentUrl/80aa72e5-0819-4923-9dec-5f40316f9c17", - "/apiComponentUrl/4d043ecf-7b40-421c-9590-71785793dfc7", - "/apiComponentUrl/f818a639-39b8-488e-839b-9ac2575736f4", - "/apiComponentUrl/870e4e32-382a-45a7-a1e9-ef2615d8bd9c", - "/apiComponentUrl/58e83e8c-2837-4478-92b0-47532fc4a699", - "/apiComponentUrl/233bd732-0b59-4f22-a509-179f788e11f8", - "/apiComponentUrl/72498c06-dc56-4580-9539-27f183ec0b27", - "/apiComponentUrl/7aeabd03-94d0-415a-be41-5f68c23c106c", - "/apiComponentUrl/946cd6cc-05ff-4699-a975-e0bb60e24fef", - "/apiComponentUrl/771bfde6-749a-4486-9520-9abb8796b1cd", - "/apiComponentUrl/db776d21-1c68-4f33-b695-4a0a700ec585", - "/apiComponentUrl/4c4c8622-31cb-4b2e-b3ec-0d38d559e8e3", - "/apiComponentUrl/5038b81c-99e2-4575-98fc-bca7bdceebe9", - "/apiComponentUrl/2d3d7f2d-3c61-4c4d-8d5f-0d26a945452e", - "/apiComponentUrl/cd5d9b68-4228-4a2f-b6bf-ee23143af201", - "/apiComponentUrl/b6a45829-097d-424d-b948-0b5636c0bb5e", - "/apiComponentUrl/d0643b38-c156-4c78-ab70-37a65dc01b12", - "/apiComponentUrl/1843d1e8-b381-4672-b675-43de0488f593", - "/apiComponentUrl/352c605f-3eac-4386-ba20-d03de88bd936", - "/apiComponentUrl/13353fe4-db21-4d2a-869e-62307dc2cdf8", - "/apiComponentUrl/cd6cddc8-82f0-4d8f-885b-054667f0dccf", - "/apiComponentUrl/87cbd4a7-9759-4485-9bd5-6a421a1c1d7e", - "/apiComponentUrl/8c54146f-a027-4a7a-9fee-3aa10b1a3953", - "/apiComponentUrl/0e9f43a5-1832-4c72-bf7a-6843ee9fd261", - "/apiComponentUrl/8f518a0b-b9ed-4c8d-8945-8ad3864dfe11", - "/apiComponentUrl/7b5bb30f-524d-44bd-a0e2-7aa8eca631e8", - "/apiComponentUrl/45e211d7-4555-4da3-a340-53c1c3092841", - "/apiComponentUrl/b95e056b-c58d-4895-9d4d-9375c85c65a1", - "/apiComponentUrl/6d183cc3-7f00-4a3b-b05f-74c8295a2c08", - "/apiComponentUrl/160faf65-fa4e-4d61-bd83-e07285a84d87", - "/apiComponentUrl/4eee3fed-2f95-42c7-9cbb-db9e1f3da7ec", - "/apiComponentUrl/fd9a039b-b63d-403d-8c67-fec3abc7e949", - "/apiComponentUrl/b2af39a0-f9b6-4032-835f-2cc3475a6bf8", - "/apiComponentUrl/6586c149-87df-4fbf-a86e-63d9fe7b2889", - "/apiComponentUrl/bd42652e-0908-47da-8dc3-6aa55ac1dbb0", - "/apiComponentUrl/644ff293-3593-4977-9964-95d4b37eb3c1", - "/apiComponentUrl/826ea719-f0b2-4596-be8e-da5e8760e8ea", - "/apiComponentUrl/f89cb407-6c64-42e2-bfdc-be56b2ce0b06", - "/apiComponentUrl/521416f7-e280-4464-9fb6-d049b8b34553", - "/apiComponentUrl/0b8e5f5f-3ae9-4793-ae23-9b979df66e17", - "/apiComponentUrl/4066b334-ff0a-49cf-90e7-c6de006bbc03", - "/apiComponentUrl/a3d218b5-c702-4f64-b7bc-46921082896f", - "/apiComponentUrl/886b59fc-147d-4b7d-bc54-01cf8e5d5172", - "/apiComponentUrl/09bf691a-83d0-4639-8c2e-ef23a8662586", - "/apiComponentUrl/932be6ec-4b28-4337-a497-bdbb667cfd23", - "/apiComponentUrl/a7aa2c29-ed3c-4884-8ed8-e0e79b8817e1", - "/apiComponentUrl/69a382a2-01e3-4b03-a388-4cab30c49a49", - "/apiComponentUrl/ebcfafcc-399f-40a0-809b-cb7d63f4e148", - "/apiComponentUrl/5157c1f4-10d6-4b99-9538-353b8cebb45e", - "/apiComponentUrl/a7cb7ca9-bf46-4aad-8dc0-7dd11f0e9b7e", - "/apiComponentUrl/bd46231a-bd35-4884-9d23-a7fc56d4292c", - "/apiComponentUrl/68da68ee-d620-45d6-b062-c36c273ed358", - ], - demoUrl: "https://openwebconcept.nl/nieuws/hoe-staat-het-met-de-openpdd/", - description: - "Met de OpenPDD maak je in een handomdraai alle digitale formulieren die je nodig hebt. Uiteraard helemaal Common Ground proof. Zo kun je de formulieren via de ZGW 2.0 API standaard via de NLx outway versturen naar je zaaksysteem zoals de NLx inway op OpenZaak. Maar ook het versturen van ingevulde formulieren via een beveiligde mail behoort tot de mogelijkheden. Daarnaast zijn al veel innovaties als concept beschikbaar binnen de OpenPDD zoals: IRMA attributen en Waardepapieren\nDe OpenPDD is al in productie bij de gemeenten Buren en Hoeksche Waard.", - detailPageImageUrl: "https://openwebconcept.nl/wp-content/uploads/2020/07/Demo-OpenPDD-team-Open-Webconcept.png", - documentationUrl: "https://openwebconcept.nl/nieuws/hoe-staat-het-met-de-openpdd/", - isPublished: true, - name: "Open Portal Digitale Diensten (PDD)", - owner: "/apiApplicationownerEntity/ef854273-33e7-421b-a6a3-e9fd6a84eca1", - shortDescription: "Tool voor opzetten digitale formulieren", - embedded: { - owner: { - id: "ef854273-33e7-421b-a6a3-e9fd6a84eca1", - email: "hpeters@buren.nl", - fullName: "Holger Peters", - pictureUrl: "https://account.pleio.nl/media/avatars/2018/12/01/9675/large.jpg", - }, - components: [ - { id: "f5bcb695-b111-41f4-accb-3b805af9b92a", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "1669cd26-ab2c-402e-b8e7-271e6c0b8133", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "956104a4-25f0-43fe-9e3d-421816d73f5a", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "f912a658-8ce5-4a1a-9193-1b2cfb71a908", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "7c70df70-b7fb-4c22-9556-6f6783fde1af", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "c8eaf270-063e-4830-8df3-d411df9545bb", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "0b9ddf8b-cb42-43f9-805b-564d375e850e", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "a7beae69-76bb-4a02-b21c-055d2fd754e3", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "ef04f3eb-eceb-46fd-b08f-0cc43015f1fc", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "b7113d67-8c7e-4f16-ada2-f0d0acc19ea6", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "32101ce6-8d4e-4587-9ddb-e2dfd7c90d27", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "cad9df04-db7a-4ac3-90a2-abec298cfb1a", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "ca3a8bde-fc3c-41f9-8cfc-4fe05fe0e217", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "37406204-521c-45b9-bfd9-8dd3e9f141c6", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "491e9cef-ce99-483a-9cdb-031b07558c6a", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "d376ee82-37a7-4497-ad9b-5d0b5fa73e24", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "901af477-4f80-4729-af1f-70348787adaf", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "88ee3c4e-36e3-497d-9b57-7dde19b439a2", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "b88a633c-9f24-491f-91ac-103741c895ff", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "044c0d4a-1e83-4a66-abb6-caa8e27a29b7", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "3f1341e9-cf08-4c62-b7a1-571374d5d4f3", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "741b84f1-2bcf-4ff5-b48c-3717f1769bed", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "d2b6bdbc-236f-46f6-af69-896585336719", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "39a1a8c0-7119-4698-8416-f17332eb3999", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "269d9af2-01b8-4a12-b3b2-bb5338292751", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "f12bfb16-eb3e-474e-96a0-91e43943432d", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "b4a280cc-a142-4563-af3a-8c6c28697b2e", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "e94d75e8-e15d-4dda-bea4-c95685827be4", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "9ba42b7b-d041-476f-adf7-80dd20a35329", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "e8a5bd60-df78-4ea5-a215-70348bc5e162", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "4e74c161-7d1c-4bab-b3ed-0d470585ad73", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "afe613d4-a599-404f-9a08-ae79bc9a94a8", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "cbf4dee6-4113-4ba3-829f-88716081d7e6", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "4bbc245a-afd6-4ed5-b312-9eab0915581f", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "ae029e2c-2042-4a4e-a8f7-c89860643c74", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "455f5dcb-4fa7-4a70-8faf-2f6ee5e94c1c", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "d75c8ef9-335b-46f4-a05a-f1e1710885e0", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "06ecaeae-5c9e-461e-9177-8dad44a75422", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "92e5f86b-79e7-4c7d-8727-bd6e5822e524", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "3ab4bc90-c100-4938-90d5-9a0410657fde", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "cee832b6-bf70-419f-be9a-1db160f78ba5", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "337734d5-8b7c-4f75-b670-996448425297", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "6026bae4-0a7d-449c-8134-6f18f4bf2496", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "1c46a837-fcc6-4e55-b650-36dfa111e3b6", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "a7707e6d-a7a4-4a14-90df-7ebdd058122a", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "0e3f2565-433c-407e-95dc-4926745e2427", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "a7b4d7e1-e2b1-45c8-8798-0b76e04a1c3b", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "f21e107b-0a97-41dd-969c-8ab9f375d4e8", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "fcfa45a1-b93f-4be0-b50d-d2ff96813184", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "17545738-29b9-4590-a065-be095a0e6581", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "de364b89-cc21-48cd-9554-7af9755132ae", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "a1377cf9-31a0-42fb-8dc5-a831a79d7ec8", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "07b84af3-c2e6-423c-9b05-46362b777fad", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "a6fa0d0f-cb4f-4b67-8ea1-54fd4ffb2d4e", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "16635d5c-f056-4744-ab13-e11f6bcb8120", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "8b15e8f8-6b40-41bd-a004-8f1a9c07d9fd", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "b63f33f8-582f-434d-ab5c-0cb4bbb455cf", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "3fce58e7-1ba6-49de-add5-59dc6a0bd9a5", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "d2b8572e-0d33-4ce4-80b4-fc1c17d2ff75", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "2f0fe7d7-4abd-4397-b54d-85d78a6a435b", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "6d99d534-75bc-46c2-a0a3-2057e2a139a4", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "d0a81389-c826-40fe-9989-4bebbfd92adb", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "e5371322-235d-4de6-8ec8-1bf98f83eedd", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "09f0f02c-9ee4-4c9f-b656-ed7e0705c015", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "725a8195-7e8e-48bb-8aa5-4786f0a2aca2", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "334360b8-165e-4286-b4ad-f23f0efd2144", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "7f145b75-8324-45fa-9516-e9fdfb425066", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "9f0ffcb0-da61-42e2-85ae-71890ae2fc2c", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "17a8739a-5abc-4341-a04d-9959ebb5427f", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "d7529571-d0b8-4e86-93de-46cfa9d6f22f", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "b4f8619a-abed-43eb-9060-d4e0f2eea59e", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "8522cd72-1421-4a05-8d88-a752ad7a4c08", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "12362591-00ae-4eb0-b935-197ce7ca4528", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "42dc1a43-a76a-40e5-8a54-c74adaf1831f", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "5fed32cc-dfb1-4ba9-8e22-b4c8d8922f0d", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "45d5e1db-7ac7-4b92-9927-682dbb79c5ea", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "b9b4f81b-fac1-4bc0-bd64-0215049772e6", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "d2b04e0e-6687-45b3-817d-0880257a9c70", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "40757a99-3d9a-4aa0-8f3d-c6bee96159dd", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "324ae4d5-0a65-4088-aee6-97c7cf6bf291", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "3b876b23-2cd6-40aa-ba21-110c19434a04", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "2f57870d-7430-4059-8d66-2fea70da18a3", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "e405c369-a824-4448-8478-58b3a4ba014f", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "a881d3f5-cda5-44f4-9210-7fe30e05e9d6", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "0c20c344-6fd9-45c9-aac9-20de7ae06f12", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "d45aa85c-f578-4e90-ae30-0fed9b448021", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "b3ee5323-d13f-4a1d-89b7-1c56d6f96402", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "06b17e26-0528-4164-b6e9-2a281988b890", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "62e0ec45-da0e-40a9-a793-ab456a8be7b8", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "ccd6d231-a4c2-4605-8c03-97648d415bb7", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "8f8ea1d6-464f-4067-80d2-15a101df3c5e", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "b629e8f1-483b-459e-9a7e-56391a6094d9", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "877b4587-a236-4690-8ad5-7ba92a054efb", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "8674137a-8cb1-49c3-97d9-aa296cf9474c", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "7a3fc2cb-23de-48b8-80bd-9e55f849d710", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "1403fcf8-df9d-4d8e-a090-5f3855a0c9b2", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "ebd6d7c3-cf5a-47a3-8b7b-61e5f037949b", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "213fd563-d143-43e9-95fb-8ec90d369954", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "9e3ec017-9f34-4671-836c-f93314455569", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "8d8eaf80-3f32-4990-8343-ad0d965b02fe", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "ec3485e7-275b-4b15-b7cc-85800f8f708c", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "d10213c8-1d13-49a8-a0cb-c69dedcdb55b", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "a5f20392-7f94-4cf3-89e5-af4bfe284337", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "e49f38cb-1cd9-49d2-9d8b-feba4667698b", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "60959e37-11e0-49f4-9cc9-0fe3f62953a4", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "090a646c-6947-49cd-95ac-3f79ab0b218a", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "a2d025ec-0d51-4c9c-8196-5c5edf8154fa", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "bb04ef5b-89f4-4d8e-8edc-f9312f1ad497", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "4beeeb37-a365-4a75-9129-37c8770c3c6f", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "f1c3e1bc-b80f-4a57-b3d5-f2c9038bcbad", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "23fea120-8076-4e05-99f4-6edb7a72a30e", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "8384f303-9903-4168-90ae-0ceee08d5fde", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "a5dba249-78e1-49a8-b5d7-e6fd24311e82", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "e2aa72c9-4227-4aaf-b5a2-23effab3cca9", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "bc92e1e5-2cb5-42aa-a21b-cdf064e6c164", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "45a7a834-e99f-4cbb-bd09-e67dfe3c64c8", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "c2ca5d34-3256-4aea-8a72-0e3fb1626d88", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "24099152-eeea-4778-8853-7d5094e2161f", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "80aa72e5-0819-4923-9dec-5f40316f9c17", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "4d043ecf-7b40-421c-9590-71785793dfc7", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "f818a639-39b8-488e-839b-9ac2575736f4", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "870e4e32-382a-45a7-a1e9-ef2615d8bd9c", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "58e83e8c-2837-4478-92b0-47532fc4a699", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "233bd732-0b59-4f22-a509-179f788e11f8", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "72498c06-dc56-4580-9539-27f183ec0b27", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "7aeabd03-94d0-415a-be41-5f68c23c106c", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "946cd6cc-05ff-4699-a975-e0bb60e24fef", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "771bfde6-749a-4486-9520-9abb8796b1cd", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "db776d21-1c68-4f33-b695-4a0a700ec585", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "4c4c8622-31cb-4b2e-b3ec-0d38d559e8e3", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "5038b81c-99e2-4575-98fc-bca7bdceebe9", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "2d3d7f2d-3c61-4c4d-8d5f-0d26a945452e", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "cd5d9b68-4228-4a2f-b6bf-ee23143af201", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "b6a45829-097d-424d-b948-0b5636c0bb5e", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "d0643b38-c156-4c78-ab70-37a65dc01b12", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "1843d1e8-b381-4672-b675-43de0488f593", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "352c605f-3eac-4386-ba20-d03de88bd936", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "13353fe4-db21-4d2a-869e-62307dc2cdf8", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "cd6cddc8-82f0-4d8f-885b-054667f0dccf", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "87cbd4a7-9759-4485-9bd5-6a421a1c1d7e", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "8c54146f-a027-4a7a-9fee-3aa10b1a3953", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "0e9f43a5-1832-4c72-bf7a-6843ee9fd261", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "8f518a0b-b9ed-4c8d-8945-8ad3864dfe11", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "7b5bb30f-524d-44bd-a0e2-7aa8eca631e8", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "45e211d7-4555-4da3-a340-53c1c3092841", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "b95e056b-c58d-4895-9d4d-9375c85c65a1", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "6d183cc3-7f00-4a3b-b05f-74c8295a2c08", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "160faf65-fa4e-4d61-bd83-e07285a84d87", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "4eee3fed-2f95-42c7-9cbb-db9e1f3da7ec", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "fd9a039b-b63d-403d-8c67-fec3abc7e949", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "b2af39a0-f9b6-4032-835f-2cc3475a6bf8", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "6586c149-87df-4fbf-a86e-63d9fe7b2889", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "bd42652e-0908-47da-8dc3-6aa55ac1dbb0", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "644ff293-3593-4977-9964-95d4b37eb3c1", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "826ea719-f0b2-4596-be8e-da5e8760e8ea", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "f89cb407-6c64-42e2-bfdc-be56b2ce0b06", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "521416f7-e280-4464-9fb6-d049b8b34553", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "0b8e5f5f-3ae9-4793-ae23-9b979df66e17", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "4066b334-ff0a-49cf-90e7-c6de006bbc03", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "a3d218b5-c702-4f64-b7bc-46921082896f", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - { id: "886b59fc-147d-4b7d-bc54-01cf8e5d5172", repositoryUrl: "https://www.digid.nl/inlogmethodes/digid-app/" }, - { id: "09bf691a-83d0-4639-8c2e-ef23a8662586", repositoryUrl: "https://dit-is-geen-open-source.nl" }, - { - id: "932be6ec-4b28-4337-a497-bdbb667cfd23", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "a7aa2c29-ed3c-4884-8ed8-e0e79b8817e1", repositoryUrl: "https://github.com/privacybydesign" }, - { id: "69a382a2-01e3-4b03-a388-4cab30c49a49", repositoryUrl: "https://gitlab.com/commonground/nlx/nlx" }, - { - id: "ebcfafcc-399f-40a0-809b-cb7d63f4e148", - repositoryUrl: "https://github.com/VNG-Realisatie/OpenWebConcept", - }, - { id: "5157c1f4-10d6-4b99-9538-353b8cebb45e", repositoryUrl: "https://github.com/open-zaak/open-zaak" }, - { - id: "a7cb7ca9-bf46-4aad-8dc0-7dd11f0e9b7e", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren_wordpress", - }, - { - id: "bd46231a-bd35-4884-9d23-a7fc56d4292c", - repositoryUrl: "https://github.com/ConductionNL/waardepapieren-service", - }, - { - id: "68da68ee-d620-45d6-b062-c36c273ed358", - repositoryUrl: "https://github.com/VNG-Realisatie/gemma-zaakregistratiecomponent/", - }, - ], - }, - }, - { - id: "84f31cf4-583d-4fce-be7e-40b0bb6dbcd8", - objectType: "application", - name: "Application", - shortDescription: "a short description about this Application", - description: - "this is a longer description about this application where i go indepth of what this application actually does", - detailPageImageUrl: null, - documentationUrl: "#", - demoUrl: "#", - bpmnProcessUrl: "#", - isPublished: true, - owner: { - fullName: "walter white", - email: "w.white@notadruggie.com", - pictureUrl: "#", - }, - }, - { - id: "00c57ead-b658-4bea-973b-f742f6d9eb5b", - objectType: "application", - name: "Application v2", - shortDescription: "a short description about this Application", - description: - "this is a longer description about this application where i go indepth of what this application actually does", - detailPageImageUrl: null, - documentationUrl: "#", - demoUrl: "#", - bpmnProcessUrl: "#", - isPublished: true, - owner: { - fullName: "skyler white", - email: "w.white@notadruggie.com", - pictureUrl: "#", - }, - }, - { - id: "af4fec62-2d5c-4ec2-906a-c57fa056be44", - objectType: "application", - name: "Application: remastered", - shortDescription: "a short description about this Application", - description: - "this is a longer description about this application where i go indepth of what this application actually does", - detailPageImageUrl: null, - documentationUrl: "#", - demoUrl: "#", - bpmnProcessUrl: "#", - isPublished: true, - owner: { - fullName: "john doe", - email: "w.white@notadruggie.com", - pictureUrl: "#", - }, - }, - { - id: "47188520-3a0c-4a8d-ae75-2f13324deb21", - objectType: "application", - - name: "Application trilogy", - shortDescription: "a short description about this Application", - description: - "this is a longer description about this application where i go indepth of what this application actually does", - detailPageImageUrl: null, - documentationUrl: "#", - demoUrl: "", - bpmnProcessUrl: "#", - isPublished: true, - owner: { - fullName: "Kevin", - email: "w.white@notadruggie.com", - pictureUrl: "#", - }, - }, - { - id: "5617fa9c-8a74-40d0-88cf-11bd2e5c01e5", - objectType: "application", - - name: "Application: the return of Application", - shortDescription: "a short description about this Application", - description: - "this is a longer description about this application where i go indepth of what this application actually does", - detailPageImageUrl: null, - documentationUrl: "#", - demoUrl: "", - bpmnProcessUrl: "#", - isPublished: true, - owner: { - fullName: "just average", - email: "w.white@notadruggie.com", - pictureUrl: "#", - }, - }, - { - id: "3b4a6f0d-afe3-4da3-8a41-c2f61bb7a76c", - objectType: "application", - - name: "Application: Revenge of Organization", - shortDescription: "a short description about this Application", - description: - "this is a longer description about this application where i go indepth of what this application actually does", - detailPageImageUrl: null, - documentationUrl: "#", - demoUrl: "#", - bpmnProcessUrl: "#", - isPublished: true, - owner: { - fullName: "Zombie Ace", - email: "w.white@notadruggie.com", - pictureUrl: "#", - }, - }, -]; diff --git a/pwa/src/data/components.ts b/pwa/src/data/components.ts deleted file mode 100644 index 68ab5ce53..000000000 --- a/pwa/src/data/components.ts +++ /dev/null @@ -1,46898 +0,0 @@ -// export const TEMPORARY_COMPONENTS = [ -// { -// id: "94541350-e796-4335-a866-4747e4c0a8ca", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: [], -// dependsOn: null, -// description: "/apiDescription/2bd83161-1d47-4e79-8d8a-538b9721fe8f", -// developmentStatus: "beta", -// inputTypes: [], -// intendedAudience: null, -// isBasedOn: null, -// landingURL: null, -// legal: "/apiComponentlegalEntity/dd1ae275-2b0e-477b-bc3e-7591ac946ea9", -// localisation: null, -// logo: null, -// maintenance: "/apiComponentmaintenanceEntity/0cbb1b51-50d8-4328-bf20-6ce0f19a1520", -// name: "Huwelijksplanner UI", -// nl: "/apiComponentnlEntity/d47410a2-f8c4-45f7-9ce2-e678d47471b2", -// outputTypes: [], -// platforms: [], -// rating: "/apiRating/3a2c55a0-949e-4153-bfd1-a18dd7d943bc", -// releaseDate: null, -// roadmap: null, -// softwareType: null, -// softwareVersion: null, -// url: "/apiRepository/23354cfb-deaf-4b2a-a61a-719d8a0142f3", -// usedBy: [], -// embedded: { -// url: { -// id: "23354cfb-deaf-4b2a-a61a-719d8a0142f3", -// avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", -// component: null, -// content: null, -// default_owner: null, -// fork_count: 0, -// issue_open_count: 7, -// last_change: "2020-09-10T06:19:36Z", -// merge_request_open_count: null, -// name: "huwelijksplanner-ui", -// organisation: "/api/oc/organizations/15b60e7c-e3ee-4a00-93ff-dc8032ae91fb", -// programming_languages: ["1796867", "630010", "262335", "196442", "140168", "12878", "9640", "3898", "3282"], -// publiccode_url: null, -// source: "github", -// stars: 0, -// topics: [], -// url: "https://github.com/ConductionNL/huwelijksplanner-ui", -// embedded: { -// organisation: { -// id: "15b60e7c-e3ee-4a00-93ff-dc8032ae91fb", -// catalogusAPI: "", -// description: -// "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", -// email: "info@conduction.nl", -// github: "https://github.com/ConductionNL", -// gitlab: null, -// logo: "https://avatars.githubusercontent.com/u/46676163?v=4", -// name: "ConductionNL", -// owns: [ -// "b0a9e408-9508-4e42-a19a-936b6b88c9bb", -// "ea1ba85c-fed9-417f-9a3c-6d7cf712ab71", -// "b6dd1e9d-bf63-4de0-9d56-b76a53e515b4", -// "f3c9fdf8-0ad3-4988-aaa9-eb384ba051a4", -// "003b5558-7c9b-4cb5-b130-cd1e72500b1a", -// "22cbbb2c-1356-4eeb-8475-ab8af3e0b252", -// "90b90578-6332-4873-8309-834abd861d84", -// "5cd4ee89-9dde-4d28-80c2-97a289b64483", -// "04a07596-97d5-4321-83e8-1083d0a1b0f8", -// "f4b5a68e-ad3b-4e8e-a255-a6a8b46c9d70", -// "0f0609a4-3da7-42de-bd0f-0c8cf2d4364e", -// "d6ade06e-45db-40fa-8527-2e75e5c998bf", -// "ea1b246d-858d-4bd7-a7d4-537d2bbdf89d", -// "ced0f835-3a23-499d-8ac2-415bcd632574", -// "83d75537-f691-46c3-8921-607f55af32cc", -// "e6110d81-b1ae-4d2e-acf5-e52c4bfa6de7", -// "d6342d11-f48c-4fc9-8420-5de4c5d4bbd4", -// "b7d0ec5c-6a34-4202-8b52-663b6f18de0c", -// "20ce6792-5642-44c1-9830-86c0693477e2", -// "1d343b42-3c37-44d8-a13a-d71faf09bcba", -// "4f01c0c4-5061-4f10-996b-f954a81baec7", -// "a5df58c7-10dc-4ed9-9d99-ee858c275e27", -// "37ad3a0d-d4f9-4bb3-b0a0-119e01b9ae56", -// "4f827d80-fc0a-4618-ae3a-d9805f086dd3", -// "1c09dee9-d9fd-4ea6-bfdd-b04ecee4346d", -// "b5dea1c9-fbf3-4103-977f-5872c9b0e8b3", -// "2b9b5024-71eb-487f-b7dc-85b4b8bdc422", -// "5f8d97a4-16f7-4a2f-b92e-5af24562f83b", -// "f5e43305-0acb-48ff-a26d-6a7af74f7991", -// "027b7fd7-27b7-4607-8ef9-3da4ca06e871", -// ], -// phone: null, -// supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], -// token: null, -// type: "public", -// uses: [], -// website: "https://conduction.nl", -// }, -// }, -// }, -// description: { -// id: "2bd83161-1d47-4e79-8d8a-538b9721fe8f", -// apiDocumentation: null, -// awards: [], -// documentation: null, -// features: [], -// localisedName: null, -// longDescription: "Huwelijksplanner UI,De user interface voor de trouwplanner applicatie", -// screenshots: [], -// shortDescription: null, -// videos: [], -// }, -// legal: { -// id: "dd1ae275-2b0e-477b-bc3e-7591ac946ea9", -// authorsFile: null, -// license: null, -// mainCopyrightOwner: null, -// repoOwner: "/api/oc/organizations/29d81138-c61b-46fb-9e27-523635f94f73", -// embedded: { -// repoOwner: { -// id: "29d81138-c61b-46fb-9e27-523635f94f73", -// catalogusAPI: null, -// description: null, -// email: "ruben@conduction.nl", -// github: null, -// gitlab: null, -// logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", -// name: "Ruben van der Linde", -// owns: [], -// phone: null, -// supports: [], -// token: null, -// type: null, -// uses: [], -// website: null, -// }, -// }, -// }, -// nl: { -// id: "d47410a2-f8c4-45f7-9ce2-e678d47471b2", -// apm: null, -// commonground: "/apiComponentnlEntitycommongroundEntity/408a31be-a9f3-424e-9dd6-8da5e01048ed", -// gemma: null, -// upl: [], -// embedded: { -// commonground: { -// id: "408a31be-a9f3-424e-9dd6-8da5e01048ed", -// installationType: "self", -// intendedOrganisations: [], -// layerType: null, -// }, -// }, -// }, -// maintenance: { -// id: "0cbb1b51-50d8-4328-bf20-6ce0f19a1520", -// contacts: [ -// "/apiContact/41294003-1873-4e17-a3fe-535fc01255a2", -// "/apiContact/acdfca1a-3e79-4e78-9bbf-eba50971c872", -// "/apiContact/542983c2-6e03-46f7-be74-a72f371a324c", -// "/apiContact/ffd7460e-a5a0-40d5-b1c6-fadfe82b7dec", -// "/apiContact/61fb9331-13ec-4006-8441-e005dc5044a6", -// "/apiContact/f5fcbe9e-9a75-4bee-892c-e4623fa20d20", -// "/apiContact/d0a98b9c-dfb8-468b-90d1-73da15f03c1b", -// "/apiContact/5634344f-b281-4dae-8bd3-1a8711025f5e", -// "/apiContact/99746314-4d60-4b24-a46d-426019e80993", -// "/apiContact/967edc86-3c3b-4d18-a16f-c645b9fb2db9", -// "/apiContact/154f079e-3cf2-4e09-b8c4-9516b785410e", -// "/apiContact/e6dff40c-48ca-4955-8a41-fb8a972334c8", -// "/apiContact/b019b6d7-5b5b-403f-beff-01a7ebad7cad", -// "/apiContact/0e4ef9d8-0712-4588-b872-3ba3340a2bf3", -// "/apiContact/35c93573-1c2b-44a3-bd34-8eafead3ed33", -// "/apiContact/ca40f8d5-a4a0-4789-9fd8-ca79513f66f5", -// "/apiContact/a2bfef4d-254f-4087-9974-78c41d7389a4", -// "/apiContact/62ac5dc7-cdf4-4551-a852-18f12880831c", -// "/apiContact/a7af1493-313f-4b20-b06e-69e2d7a0c93a", -// "/apiContact/909dbac4-ac0f-47cd-8441-f410f3b33111", -// "/apiContact/47779e88-0308-4802-b8b8-88bb5574734a", -// "/apiContact/7c326a11-7384-49f6-962b-66061a120746", -// "/apiContact/e36f88eb-5e65-4319-bb57-32ba870260f9", -// "/apiContact/4bf1b351-33ca-4b87-955c-9167c4b8fb78", -// "/apiContact/da71422b-1fd5-433a-90ce-2476fa020c01", -// "/apiContact/c91cc0e9-da29-414b-857f-8f54fd259896", -// "/apiContact/a503cb26-6e34-4299-9e2e-efeea6926157", -// "/apiContact/bcea6cbe-14a3-44ee-b31e-7add9d854cd0", -// "/apiContact/dd1958c5-b871-4a52-96f9-ba629b0d69cb", -// "/apiContact/b8e3aa02-eb7f-4587-87c7-fc58271ffc65", -// "/apiContact/40967fc4-60a2-4bc7-930a-6c21cd1f1615", -// "/apiContact/e376bb0d-97d8-4b84-8dc2-fa46b495efc1", -// "/apiContact/be84a66c-56de-4f0f-8a4f-62d3d95d952c", -// "/apiContact/68d9f294-8c60-4a1b-8366-41dcd54d707d", -// "/apiContact/66830f37-77fb-46fc-8fff-3f29a81f7e98", -// "/apiContact/71997e19-4513-45fe-9abb-f323da52709d", -// "/apiContact/195300d3-a072-4fc9-8b11-c48f18107a05", -// "/apiContact/5d9be214-0f2c-4c0e-8e15-c0c798ca0690", -// "/apiContact/85c35d13-90e3-4776-9387-dda1f31abfea", -// "/apiContact/a67a3a1c-52ba-46bc-a923-98dc0d41c2b1", -// "/apiContact/d6c15109-549b-4d5c-9f9a-6690442b212d", -// "/apiContact/9e6c8d49-30f3-4893-8f3a-4b29f6bde1e0", -// "/apiContact/4d785afc-6e4d-44f2-8c6d-49a4e76290b1", -// "/apiContact/a5b5b315-02a3-4764-a044-13884fac6e22", -// "/apiContact/2daffb6a-aae7-44f3-a864-5b09ef67821a", -// "/apiContact/4e765b94-cd99-4c48-8f4f-144f999906f9", -// ], -// contractors: [], -// type: "internal", -// embedded: { -// contacts: [ -// { -// id: "41294003-1873-4e17-a3fe-535fc01255a2", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "acdfca1a-3e79-4e78-9bbf-eba50971c872", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "542983c2-6e03-46f7-be74-a72f371a324c", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "ffd7460e-a5a0-40d5-b1c6-fadfe82b7dec", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "61fb9331-13ec-4006-8441-e005dc5044a6", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "f5fcbe9e-9a75-4bee-892c-e4623fa20d20", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "d0a98b9c-dfb8-468b-90d1-73da15f03c1b", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "5634344f-b281-4dae-8bd3-1a8711025f5e", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "99746314-4d60-4b24-a46d-426019e80993", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "967edc86-3c3b-4d18-a16f-c645b9fb2db9", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "154f079e-3cf2-4e09-b8c4-9516b785410e", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "e6dff40c-48ca-4955-8a41-fb8a972334c8", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "b019b6d7-5b5b-403f-beff-01a7ebad7cad", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "0e4ef9d8-0712-4588-b872-3ba3340a2bf3", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "35c93573-1c2b-44a3-bd34-8eafead3ed33", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "ca40f8d5-a4a0-4789-9fd8-ca79513f66f5", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "a2bfef4d-254f-4087-9974-78c41d7389a4", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "62ac5dc7-cdf4-4551-a852-18f12880831c", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "a7af1493-313f-4b20-b06e-69e2d7a0c93a", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "909dbac4-ac0f-47cd-8441-f410f3b33111", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "47779e88-0308-4802-b8b8-88bb5574734a", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "7c326a11-7384-49f6-962b-66061a120746", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "e36f88eb-5e65-4319-bb57-32ba870260f9", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "4bf1b351-33ca-4b87-955c-9167c4b8fb78", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "da71422b-1fd5-433a-90ce-2476fa020c01", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "c91cc0e9-da29-414b-857f-8f54fd259896", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "a503cb26-6e34-4299-9e2e-efeea6926157", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "bcea6cbe-14a3-44ee-b31e-7add9d854cd0", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "dd1958c5-b871-4a52-96f9-ba629b0d69cb", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "b8e3aa02-eb7f-4587-87c7-fc58271ffc65", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "40967fc4-60a2-4bc7-930a-6c21cd1f1615", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "e376bb0d-97d8-4b84-8dc2-fa46b495efc1", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "be84a66c-56de-4f0f-8a4f-62d3d95d952c", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "68d9f294-8c60-4a1b-8366-41dcd54d707d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "66830f37-77fb-46fc-8fff-3f29a81f7e98", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "71997e19-4513-45fe-9abb-f323da52709d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "195300d3-a072-4fc9-8b11-c48f18107a05", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "5d9be214-0f2c-4c0e-8e15-c0c798ca0690", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "85c35d13-90e3-4776-9387-dda1f31abfea", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "a67a3a1c-52ba-46bc-a923-98dc0d41c2b1", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "d6c15109-549b-4d5c-9f9a-6690442b212d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "9e6c8d49-30f3-4893-8f3a-4b29f6bde1e0", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "4d785afc-6e4d-44f2-8c6d-49a4e76290b1", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "a5b5b315-02a3-4764-a044-13884fac6e22", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "2daffb6a-aae7-44f3-a864-5b09ef67821a", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "4e765b94-cd99-4c48-8f4f-144f999906f9", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// ], -// }, -// }, -// rating: { -// id: "3a2c55a0-949e-4153-bfd1-a18dd7d943bc", -// maxRating: 27, -// rating: 8, -// results: [ -// "The name: Huwelijksplanner UI rated", -// "The url: https://github.com/ConductionNL/huwelijksplanner-ui rated", -// "Rated the repository because it is public", -// "Cannot rate the landingURL because it is not set", -// "Cannot rate the softwareVersion because it is not set", -// "Cannot rate the releaseDate because it is not set", -// "Cannot rate the logo because it is not set", -// "Cannot rate the roadmap because it is not set", -// "The developmentStatus: beta rated", -// "Cannot rate the softwareType because it is not set", -// "Cannot rate the platforms because it is not set", -// "Cannot rate the categories because it is not set", -// "Cannot rate the localisedName because it is not set", -// "Cannot rate the shortDescription because it is not set", -// "The longDescription: Huwelijksplanner UI", -// "De user interface voor de trouwplanner applicatie rated", -// "Cannot rate the apiDocumentation because it is not set", -// "Cannot rate the features because it is not set", -// "Cannot rate the screenshots because it is not set", -// "Cannot rate the videos because it is not set", -// "Cannot rate the license because it is not set", -// "The repoOwner is rated", -// "Cannot rate the authorsFile because it is not set", -// "The type: internal rated", -// "Cannot rate the contractors because it is not set", -// "The contacts are rated", -// ], -// }, -// }, -// }, -// { -// id: "aa78c93b-d57d-4d9a-b255-e8cfe26bde48", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: [], -// dependsOn: null, -// description: "/apiDescription/609aa9d6-69f2-4760-b368-442647ab8417", -// developmentStatus: "beta", -// inputTypes: [], -// intendedAudience: null, -// isBasedOn: null, -// landingURL: null, -// legal: "/apiComponentlegalEntity/041e7fa1-089e-4342-a745-7b4367a09dc0", -// localisation: null, -// logo: null, -// maintenance: "/apiComponentmaintenanceEntity/559a6354-d8c2-47c2-ae85-61523c7c0ff2", -// name: "Mijnapp frontend", -// nl: "/apiComponentnlEntity/a84c8305-0358-419e-8995-01d18b78be80", -// outputTypes: [], -// platforms: [], -// rating: "/apiRating/94052e94-15b0-42c3-a823-aa2596052803", -// releaseDate: null, -// roadmap: null, -// softwareType: null, -// softwareVersion: null, -// url: "/apiRepository/2eef941a-5f91-40b1-8498-becc15307db5", -// usedBy: [], -// embedded: { -// url: { -// id: "2eef941a-5f91-40b1-8498-becc15307db5", -// avatar_url: "https://avatars.githubusercontent.com/u/52666715?v=4", -// component: null, -// content: null, -// fork_count: 2, -// issue_open_count: 28, -// last_change: "2020-05-14T14:06:55Z", -// merge_request_open_count: null, -// name: "mijnapp-frontend", -// organisation: "/apiOrganisation/3203493a-468d-4ceb-9d56-84e36649d4c3", -// programming_languages: ["6025555", "106321", "72221", "64188", "1939"], -// publiccode_url: null, -// source: "github", -// stars: 0, -// topics: [], -// url: "https://github.com/mijnapp/mijnapp-frontend", -// embedded: { -// organisation: { -// id: "3203493a-468d-4ceb-9d56-84e36649d4c3", -// description: null, -// email: null, -// github: "https://github.com/mijnapp", -// gitlab: null, -// logo: "https://avatars.githubusercontent.com/u/52666715?v=4", -// name: "mijnapp", -// owns: [ -// "https://github.com/mijnapp/Contracten-api", -// "https://github.com/mijnapp/designsystem", -// "https://github.com/mijnapp/mijnapp-frontend", -// ], -// phone: null, -// supports: [], -// token: null, -// type: null, -// uses: [], -// website: null, -// }, -// }, -// }, -// description: { -// id: "609aa9d6-69f2-4760-b368-442647ab8417", -// apiDocumentation: null, -// awards: [], -// documentation: null, -// features: [], -// localisedName: null, -// longDescription: "Mijnapp frontend,De voorkant \u00e9n processs laag van mijn app", -// screenshots: [], -// shortDescription: null, -// videos: [], -// }, -// legal: { -// id: "041e7fa1-089e-4342-a745-7b4367a09dc0", -// authorsFile: null, -// license: null, -// mainCopyrightOwner: null, -// repoOwner: "/api/oc/organizations/448ab435-655a-41e8-9c0d-a851cf393b0a", -// embedded: { -// repoOwner: { -// id: "448ab435-655a-41e8-9c0d-a851cf393b0a", -// description: null, -// email: "ruben@conduction.nl", -// github: null, -// gitlab: null, -// logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", -// name: "Ruben van der Linde", -// owns: [], -// phone: null, -// supports: [], -// token: null, -// type: null, -// uses: [], -// website: null, -// }, -// }, -// }, -// maintenance: { -// id: "559a6354-d8c2-47c2-ae85-61523c7c0ff2", -// contacts: [ -// "/apiContact/3e9ecb64-4499-4844-88ba-67252d47af6c", -// "/apiContact/55af1f15-73c3-41d6-ba56-8dcb1d68f8ec", -// "/apiContact/974afdd9-564e-48e0-a2b1-00affc14df90", -// "/apiContact/d98b528e-6829-4d21-bdba-bcf5ad1a761c", -// "/apiContact/1c6e24bd-4bb2-4ac6-a123-997cf4ac1e10", -// "/apiContact/c6161c6b-2d9c-4838-96c0-d32f274fb9b5", -// "/apiContact/77b1dc7d-25a0-4233-84df-8d8c0050d5ad", -// "/apiContact/af98d7f9-07ff-4c28-bd4c-d183e7f8b9c8", -// "/apiContact/436c9243-0fb9-4a0a-a4a3-d4a4aaa1b09a", -// "/apiContact/f74086aa-3ac0-4ae2-9aa3-3b2a33833072", -// "/apiContact/a211d282-4fc7-4e29-9061-5178fbf8d847", -// "/apiContact/35ebcace-bea5-42e7-b56a-e871887fa868", -// "/apiContact/d8f1cdcb-9a1a-4572-be6e-998ba126a291", -// "/apiContact/7f0500df-e042-4c77-abc6-99aef20e1be5", -// "/apiContact/c0058a04-3406-4ded-abc3-6909a271315d", -// "/apiContact/f9d2c015-1183-49c1-9e91-bb7ffea7cc1d", -// "/apiContact/a2182b3e-13de-443e-857e-cfac955457ca", -// "/apiContact/86739d6c-b1eb-44a7-8f6b-c83426b26424", -// "/apiContact/02d5f727-08ae-4ece-ab89-cf7c2b6cffaf", -// "/apiContact/9b04c983-e18d-4b19-a9e1-b4ca7ae766df", -// "/apiContact/b3f8e2fd-7401-443f-813b-75bb0e4b94fe", -// "/apiContact/6373a53f-a5b3-487f-9c51-9551e1c94eef", -// "/apiContact/8ef611aa-f451-407b-952c-c68df692b68d", -// "/apiContact/822e15bc-928e-489e-9ab7-d7e6437c6486", -// "/apiContact/8c0610b3-9bcd-49ed-a2fd-3a7f90a232f5", -// "/apiContact/deeb55e7-1fc2-44d4-8e4f-f86b37f1365d", -// "/apiContact/1bd691e8-34be-4aa3-a8d8-afbcf9db6094", -// "/apiContact/c6d45dd0-24a5-4e4f-a852-3d9a9533cb0d", -// "/apiContact/879a4d58-9fb5-47bd-b0b3-03a1d559b41a", -// "/apiContact/2b9ecd47-9871-4915-8116-b070faca07ad", -// "/apiContact/09730968-3ecf-4bf0-8192-de4f41ae2ee2", -// "/apiContact/b731702f-1b51-43ae-9408-7a8375d912dd", -// "/apiContact/9b28532d-2826-47b3-b9fe-93f17a640152", -// "/apiContact/322366d4-410a-498c-b5f6-e6df5a0f4416", -// "/apiContact/ac9b4122-3e49-4819-b60b-fc3db8a665a9", -// "/apiContact/d8111290-7aa7-41dc-bd17-a25170bfd848", -// "/apiContact/b13f6d7b-af69-46c7-9a65-3cd0da814b55", -// "/apiContact/1e0cb0c7-2c80-403e-b09d-a7088dfa2664", -// "/apiContact/711e21fe-126a-4c15-9758-a092e872eb82", -// "/apiContact/5ed1eee3-3c78-4491-81b3-fe908f12eea6", -// "/apiContact/ee0e3de2-ed75-491d-89f8-3c92459f4bd4", -// "/apiContact/69943d60-ae09-425f-ae08-5814c78f81a9", -// "/apiContact/63a70d15-2aba-4301-be7d-2658faebc059", -// "/apiContact/22649e04-23bb-4f9b-8bb3-5e2528edaad3", -// "/apiContact/f9938cd8-6995-47be-9bc9-a33988c40013", -// "/apiContact/cfdd9c3c-58e2-441a-96e7-8e48614d0240", -// "/apiContact/8a2e5298-c0d5-42ff-a911-66fe736eefec", -// "/apiContact/d4868486-f02e-481e-b299-a34708f840ab", -// "/apiContact/06772941-e853-4e77-bef2-ebd13d6a8b11", -// "/apiContact/8d0996a8-6ca9-4a10-b9c1-564f1cd2245d", -// "/apiContact/741a683b-3ad7-4414-8970-692d8971eb9e", -// "/apiContact/b735d943-8162-472a-906e-0d3d72e550c1", -// "/apiContact/f48b24b1-df9f-426d-9b30-a0a70bf4dc9c", -// "/apiContact/020b8d8e-7c8c-4ad0-ae3e-0f59e380dfbb", -// "/apiContact/ab23627d-155c-4e8f-a9f4-5267be229506", -// "/apiContact/1b0e737a-653f-4154-bff0-06927c91e43e", -// "/apiContact/3c61a8f4-c76f-4d2d-980d-5775ba70df7a", -// "/apiContact/c7e62d99-a919-45db-93ff-4a520fdecb7d", -// "/apiContact/0e962728-8027-4285-9b8c-985fd61074e5", -// "/apiContact/fd5fb366-ae19-4494-9181-a42fbb578096", -// "/apiContact/d6078c1f-0a97-40ef-a506-26a40fb79479", -// "/apiContact/832de4b9-6c7f-42e3-af4f-6db07282da20", -// "/apiContact/f3c20fe1-d0c1-4c85-b124-2d1293491cdd", -// "/apiContact/29fccc3b-c2e1-4e6f-97bc-aa71a13c8139", -// "/apiContact/ee7cac63-eeba-4ee1-b144-77696d0023c5", -// "/apiContact/2b33f189-7b9b-4bea-8829-c8f861613c4b", -// "/apiContact/60a0941e-d12c-4a1c-a43a-e1d1298539c2", -// "/apiContact/a64f76c5-73e4-4c7c-80a9-3d323f5eed47", -// "/apiContact/c559b434-4b55-4d7f-896e-2a8983eb82ec", -// "/apiContact/14f7e343-577e-4847-af9b-0ef60d9e7dd7", -// "/apiContact/f1a31527-6ca3-4618-a20d-a1eeb50d09d4", -// "/apiContact/f76838e9-18ae-4631-99e8-1d68d965dec8", -// "/apiContact/303579f2-2aee-4397-bf77-2c27b54247d8", -// ], -// contractors: [], -// type: "internal", -// embedded: { -// contacts: [ -// { -// id: "3e9ecb64-4499-4844-88ba-67252d47af6c", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "55af1f15-73c3-41d6-ba56-8dcb1d68f8ec", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "974afdd9-564e-48e0-a2b1-00affc14df90", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "d98b528e-6829-4d21-bdba-bcf5ad1a761c", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "1c6e24bd-4bb2-4ac6-a123-997cf4ac1e10", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "c6161c6b-2d9c-4838-96c0-d32f274fb9b5", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "77b1dc7d-25a0-4233-84df-8d8c0050d5ad", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "af98d7f9-07ff-4c28-bd4c-d183e7f8b9c8", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "436c9243-0fb9-4a0a-a4a3-d4a4aaa1b09a", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "f74086aa-3ac0-4ae2-9aa3-3b2a33833072", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "a211d282-4fc7-4e29-9061-5178fbf8d847", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "35ebcace-bea5-42e7-b56a-e871887fa868", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "d8f1cdcb-9a1a-4572-be6e-998ba126a291", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "7f0500df-e042-4c77-abc6-99aef20e1be5", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "c0058a04-3406-4ded-abc3-6909a271315d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "f9d2c015-1183-49c1-9e91-bb7ffea7cc1d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "a2182b3e-13de-443e-857e-cfac955457ca", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "86739d6c-b1eb-44a7-8f6b-c83426b26424", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "02d5f727-08ae-4ece-ab89-cf7c2b6cffaf", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "9b04c983-e18d-4b19-a9e1-b4ca7ae766df", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "b3f8e2fd-7401-443f-813b-75bb0e4b94fe", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "6373a53f-a5b3-487f-9c51-9551e1c94eef", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "8ef611aa-f451-407b-952c-c68df692b68d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "822e15bc-928e-489e-9ab7-d7e6437c6486", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "8c0610b3-9bcd-49ed-a2fd-3a7f90a232f5", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "deeb55e7-1fc2-44d4-8e4f-f86b37f1365d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "1bd691e8-34be-4aa3-a8d8-afbcf9db6094", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "c6d45dd0-24a5-4e4f-a852-3d9a9533cb0d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "879a4d58-9fb5-47bd-b0b3-03a1d559b41a", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "2b9ecd47-9871-4915-8116-b070faca07ad", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "09730968-3ecf-4bf0-8192-de4f41ae2ee2", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "b731702f-1b51-43ae-9408-7a8375d912dd", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "9b28532d-2826-47b3-b9fe-93f17a640152", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "322366d4-410a-498c-b5f6-e6df5a0f4416", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "ac9b4122-3e49-4819-b60b-fc3db8a665a9", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "d8111290-7aa7-41dc-bd17-a25170bfd848", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "b13f6d7b-af69-46c7-9a65-3cd0da814b55", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "1e0cb0c7-2c80-403e-b09d-a7088dfa2664", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "711e21fe-126a-4c15-9758-a092e872eb82", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "5ed1eee3-3c78-4491-81b3-fe908f12eea6", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "ee0e3de2-ed75-491d-89f8-3c92459f4bd4", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "69943d60-ae09-425f-ae08-5814c78f81a9", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "63a70d15-2aba-4301-be7d-2658faebc059", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "22649e04-23bb-4f9b-8bb3-5e2528edaad3", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "f9938cd8-6995-47be-9bc9-a33988c40013", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "cfdd9c3c-58e2-441a-96e7-8e48614d0240", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "8a2e5298-c0d5-42ff-a911-66fe736eefec", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "d4868486-f02e-481e-b299-a34708f840ab", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "06772941-e853-4e77-bef2-ebd13d6a8b11", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "8d0996a8-6ca9-4a10-b9c1-564f1cd2245d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "741a683b-3ad7-4414-8970-692d8971eb9e", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "b735d943-8162-472a-906e-0d3d72e550c1", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "f48b24b1-df9f-426d-9b30-a0a70bf4dc9c", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "020b8d8e-7c8c-4ad0-ae3e-0f59e380dfbb", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "ab23627d-155c-4e8f-a9f4-5267be229506", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "1b0e737a-653f-4154-bff0-06927c91e43e", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "3c61a8f4-c76f-4d2d-980d-5775ba70df7a", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "c7e62d99-a919-45db-93ff-4a520fdecb7d", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "0e962728-8027-4285-9b8c-985fd61074e5", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "fd5fb366-ae19-4494-9181-a42fbb578096", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "d6078c1f-0a97-40ef-a506-26a40fb79479", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "832de4b9-6c7f-42e3-af4f-6db07282da20", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "f3c20fe1-d0c1-4c85-b124-2d1293491cdd", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "29fccc3b-c2e1-4e6f-97bc-aa71a13c8139", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "ee7cac63-eeba-4ee1-b144-77696d0023c5", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "2b33f189-7b9b-4bea-8829-c8f861613c4b", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "60a0941e-d12c-4a1c-a43a-e1d1298539c2", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "a64f76c5-73e4-4c7c-80a9-3d323f5eed47", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "c559b434-4b55-4d7f-896e-2a8983eb82ec", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "14f7e343-577e-4847-af9b-0ef60d9e7dd7", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "f1a31527-6ca3-4618-a20d-a1eeb50d09d4", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "f76838e9-18ae-4631-99e8-1d68d965dec8", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// { -// id: "303579f2-2aee-4397-bf77-2c27b54247d8", -// affiliation: null, -// email: "ruben@conduction.nl", -// name: "Ruben van der Linde", -// phone: null, -// }, -// ], -// }, -// }, -// nl: { -// id: "a84c8305-0358-419e-8995-01d18b78be80", -// apm: null, -// commonground: "/apiComponentnlEntitycommongroundEntity/baaf624a-1f58-4c24-8c38-182fe292e881", -// gemma: null, -// upl: [], -// embedded: { -// commonground: { -// id: "baaf624a-1f58-4c24-8c38-182fe292e881", -// installationType: "self", -// intendedOrganisations: [], -// layerType: "interface", -// }, -// }, -// }, -// rating: { -// id: "94052e94-15b0-42c3-a823-aa2596052803", -// maxRating: 27, -// rating: 8, -// results: [ -// "The name: Mijnapp frontend rated", -// "The url: https://github.com/mijnapp/mijnapp-frontend rated", -// "Rated the repository because it is public", -// "Cannot rate the landingURL because it is not set", -// "Cannot rate the softwareVersion because it is not set", -// "Cannot rate the releaseDate because it is not set", -// "Cannot rate the logo because it is not set", -// "Cannot rate the roadmap because it is not set", -// "The developmentStatus: beta rated", -// "Cannot rate the softwareType because it is not set", -// "Cannot rate the platforms because it is not set", -// "Cannot rate the categories because it is not set", -// "Cannot rate the localisedName because it is not set", -// "Cannot rate the shortDescription because it is not set", -// "The longDescription: Mijnapp frontend", -// "De voorkant \u00e9n processs laag van mijn app rated", -// "Cannot rate the apiDocumentation because it is not set", -// "Cannot rate the features because it is not set", -// "Cannot rate the screenshots because it is not set", -// "Cannot rate the videos because it is not set", -// "Cannot rate the license because it is not set", -// "The repoOwner is rated", -// "Cannot rate the authorsFile because it is not set", -// "The type: internal rated", -// "Cannot rate the contractors because it is not set", -// "The contacts are rated", -// ], -// }, -// }, -// }, -// { -// id: "1fd22041-9aaa-404d-b69f-e8d249f8dc02", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "beta", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Venenatis Lorem Cras", -// nl: null, -// outputTypes: ["string"], -// platforms: ["web", "ios", "mac", "linux"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/desktop", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "data", -// }, -// }, -// }, -// }, -// }, -// { -// id: "2dca1536-9d83-4ddf-90cb-eb50c96bb4d8", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "uitgefasseerd", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Nunc Sed Turpis", -// nl: null, -// outputTypes: ["string"], -// platforms: ["web"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "library", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "services", -// }, -// }, -// }, -// }, -// }, -// { -// id: "3d251988-4216-4ac8-82ce-f918b08dc985", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "beta", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Metus", -// nl: null, -// outputTypes: ["string"], -// platforms: ["web", "linux"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/desktop", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "data", -// }, -// }, -// }, -// }, -// }, -// { -// id: "43d49943-afd9-4ad4-a7f7-a6bd847c88ff", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "bruikbaar", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Lacus Ante Convallis Tellus Vitae Iaculis Lacus Elit Id Tortor", -// nl: null, -// outputTypes: ["string"], -// platforms: ["android"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/backend", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "services", -// }, -// }, -// }, -// }, -// }, -// { -// id: "68667e84-ebc0-47b7-a24f-9c1a6b207805", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "beta", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Ultricies Nec", -// nl: null, -// outputTypes: ["string"], -// platforms: ["android", "linux"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/desktop", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "data", -// }, -// }, -// }, -// }, -// }, -// { -// id: "6af3eab7-b9da-46cf-a4ee-d9848eb4a3d5", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "uitgefasseerd", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Convallis Metus Id", -// nl: null, -// outputTypes: ["string"], -// platforms: ["windows"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "configurationFiles", -// softwareVersion: "1.0", -// url: null, -// usedBy: ["Conduction"], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "interaction", -// }, -// }, -// }, -// }, -// }, -// { -// id: "71e0ea26-e25d-47a8-a78a-d226a5ebe48e", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "uitgefaseerd", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Lorem Cras", -// nl: null, -// outputTypes: ["string"], -// platforms: ["web", "android", "windows"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/mobile", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "data", -// }, -// }, -// }, -// }, -// }, -// { -// id: "7ebd259d-1260-4bb9-ad4f-20108d68b396", -// objectType: "component", -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "gepland", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Volutpat Molestie", -// nl: null, -// outputTypes: ["string"], -// platforms: ["web", "ios"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "library", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "interaction", -// }, -// }, -// }, -// }, -// }, -// { -// id: "7f48a278-7bb4-42a6-a190-6021663aadb3", -// objectType: "component", - -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "beta", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "OpenCatalogi", -// nl: null, -// outputTypes: ["string"], -// platforms: ["linux", "windows"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "softwareAddon", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "interaction", -// }, -// }, -// }, -// }, -// }, -// { -// id: "82e924b9-8c59-4403-bed9-434a459d3839", -// objectType: "component", - -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "beta", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Vivamus Aliquet Elit Ac Nisl", -// nl: null, -// outputTypes: ["string"], -// platforms: ["windows", "linux", "android", "ios"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/iot", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "process", -// }, -// }, -// }, -// }, -// }, -// { -// id: "bed7fced-f358-42a1-8b47-ed508de79030", -// objectType: "component", - -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "beta", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Vestibulum purus quam", -// nl: null, -// outputTypes: ["string"], -// platforms: ["windows", "linux", "android", "ios"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/iot", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "integration", -// }, -// }, -// }, -// }, -// }, -// { -// id: "c35fb28d-2a06-4ec4-b145-c7a789dfd2fb", -// objectType: "component", - -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "uitgefaseerd", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Donec mi odio", -// nl: null, -// outputTypes: ["string"], -// platforms: ["windows", "linux", "android", "ios"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/iot", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "integration", -// }, -// }, -// }, -// }, -// }, -// { -// id: "4adbbe88-e2bd-4675-b8cf-66e6e549c2b5", -// objectType: "component", - -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "Bruikbaar", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Orci luctus et ultrices posuere cubilia Curae", -// nl: null, -// outputTypes: ["string"], -// platforms: ["windows", "linux", "android", "ios"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/iot", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "services", -// }, -// }, -// }, -// }, -// }, -// { -// id: "1e4d30aa-2d5f-435c-ad60-d527cffbd2e5", -// objectType: "component", - -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "beta", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Vivamus", -// nl: null, -// outputTypes: ["string"], -// platforms: ["windows", "linux", "android", "ios"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/iot", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "process", -// }, -// }, -// }, -// }, -// }, -// { -// id: "41c502d9-3c4b-4b14-9928-1ab2b5b92f6a", -// objectType: "component", - -// applicationId: null, -// applicationSuite: null, -// categories: ["Acounting"], -// dependsOn: null, -// description: null, -// developmentStatus: "beta", -// inputTypes: ["string"], -// intendedAudience: null, -// isBasedOn: "https://github.com/ConductionNL/adresservice", -// landingURL: "https://github.com/ConductionNL/adresservice", -// legal: null, -// localisation: null, -// logo: "https://avatars0.githubusercontent.com/u/34739001?s=280&v=4", -// maintenance: null, -// name: "Pellentesque libero tortor", -// nl: null, -// outputTypes: ["string"], -// platforms: ["windows", "linux", "android", "ios"], -// releaseDate: "2020-02-18", -// roadmap: "https://vng.nl/agenda", -// softwareType: "standalone/iot", -// softwareVersion: "1.0", -// url: null, -// usedBy: [], -// embedded: { -// nl: { -// embedded: { -// commonground: { -// layerType: "process", -// }, -// }, -// }, -// }, -// }, -// ]; - -export const TEMPORARY_COMPONENTS = { - results: [ - { - _id: "09464c6a-6d6e-4138-83d4-84159b7be961", - _self: { - id: "09464c6a-6d6e-4138-83d4-84159b7be961", - self: "/api/oc/components/09464c6a-6d6e-4138-83d4-84159b7be961", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:20+00:00", - dateModified: "2022-12-13T14:33:40+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "22a5db22-62b5-4540-99ea-ab5ef84dae70", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "20", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "b7d7127b-f0e9-42b8-952d-0056d9e05e79", - self: "/apiRepository/b7d7127b-f0e9-42b8-952d-0056d9e05e79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "919fa409-e1c4-4c17-a4cb-19fc9b12761a", - self: "/api/oc/organizations/919fa409-e1c4-4c17-a4cb-19fc9b12761a", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:23:54+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "809e4655-520d-4daa-86a4-48adb432e2aa", - "d9b56dc7-b97d-48e0-950b-fceaacc496d2", - "9b951aa8-42be-4cb6-b733-ded41376d3fc", - "60644140-3c7a-4639-9e79-d0c9f3459843", - "31556d81-a86e-478b-b9d8-123e0f28fd29", - "86485a06-9bf1-4728-88e0-d0418defd1d9", - "55234422-27b0-4ea3-a603-3c0d6422430d", - "d6ae0415-977d-427a-953a-d2bbe83d9c7d", - "5a0d2f50-3a51-453c-b8a1-916a5b0737f1", - "48b8409d-f955-4fd9-9e48-4ee1930f5ed4", - "76bbd3a5-3852-403e-9a7a-56b0a9301d7b", - "f1a08af4-1e01-4d7d-9cd5-239b04f6d0a2", - "48f4d520-db44-4ada-8a59-32aca7fdb00a", - "634d2766-7b7a-4d35-875c-b60be3ca5e53", - "6ef48337-7ad5-443c-aa50-537ba58c42da", - "64df23b9-6a49-4a96-9380-0634ee1c4c50", - "07282e5b-5936-45fe-8eb1-471725c837c4", - "9a5c89a3-781b-404a-8c2a-7e5f864cc192", - "6a1f2090-a450-454f-b2e7-0a6514531757", - "246f9d06-8ad1-49e4-9c4d-483c35b688e5", - "967f2d76-6316-4652-b8fc-7a27098c27da", - "ddb91e68-8a88-4b51-8c62-a43baf3ecbbb", - "ba0b452a-ba65-4882-b8e3-de23968f053f", - "d717ced8-1e81-4904-8187-2c148c3ff404", - "9af49288-4ec5-4a42-8773-d17bba0e7a20", - "ebebe90b-b3cc-43b5-86f4-305a150ad1b3", - "0cbdaf71-c18c-46bf-9320-d873c43cbc69", - "8202e804-d1cc-4a7a-aa05-c4b98c73317c", - "6b2abfb9-22cb-4251-ac54-b0dc454d00b6", - "88dd41e0-b3e1-45aa-a406-805bd4f47448", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "agendaservice", - url: "https://github.com/ConductionNL/agendaservice", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2022-04-28T10:10:10Z", - stars: 0, - fork_count: 1, - issue_open_count: 6, - merge_request_open_count: null, - programming_languages: ["243371", "194184", "188296", "86064", "36513", "10278", "3898", "2383", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "919fa409-e1c4-4c17-a4cb-19fc9b12761a", - self: "/api/oc/organizations/919fa409-e1c4-4c17-a4cb-19fc9b12761a", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:23:54+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "809e4655-520d-4daa-86a4-48adb432e2aa", - "d9b56dc7-b97d-48e0-950b-fceaacc496d2", - "9b951aa8-42be-4cb6-b733-ded41376d3fc", - "60644140-3c7a-4639-9e79-d0c9f3459843", - "31556d81-a86e-478b-b9d8-123e0f28fd29", - "86485a06-9bf1-4728-88e0-d0418defd1d9", - "55234422-27b0-4ea3-a603-3c0d6422430d", - "d6ae0415-977d-427a-953a-d2bbe83d9c7d", - "5a0d2f50-3a51-453c-b8a1-916a5b0737f1", - "48b8409d-f955-4fd9-9e48-4ee1930f5ed4", - "76bbd3a5-3852-403e-9a7a-56b0a9301d7b", - "f1a08af4-1e01-4d7d-9cd5-239b04f6d0a2", - "48f4d520-db44-4ada-8a59-32aca7fdb00a", - "634d2766-7b7a-4d35-875c-b60be3ca5e53", - "6ef48337-7ad5-443c-aa50-537ba58c42da", - "64df23b9-6a49-4a96-9380-0634ee1c4c50", - "07282e5b-5936-45fe-8eb1-471725c837c4", - "9a5c89a3-781b-404a-8c2a-7e5f864cc192", - "6a1f2090-a450-454f-b2e7-0a6514531757", - "246f9d06-8ad1-49e4-9c4d-483c35b688e5", - "967f2d76-6316-4652-b8fc-7a27098c27da", - "ddb91e68-8a88-4b51-8c62-a43baf3ecbbb", - "ba0b452a-ba65-4882-b8e3-de23968f053f", - "d717ced8-1e81-4904-8187-2c148c3ff404", - "9af49288-4ec5-4a42-8773-d17bba0e7a20", - "ebebe90b-b3cc-43b5-86f4-305a150ad1b3", - "0cbdaf71-c18c-46bf-9320-d873c43cbc69", - "8202e804-d1cc-4a7a-aa05-c4b98c73317c", - "6b2abfb9-22cb-4251-ac54-b0dc454d00b6", - "88dd41e0-b3e1-45aa-a406-805bd4f47448", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "4b49efe1-e0e3-447e-bb43-89fc4114841d", - self: "/apiDescription/4b49efe1-e0e3-447e-bb43-89fc4114841d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - 'Agendaservice,Het "agenda" component is ontwikkeld voor de gemeente Utrecht en heeft als doel een agenda te koppelen aan objecten uit andere componenten uit commonground. Dit stelt je in staat om aan deze objecten, afspraken en beschikbaarheid te kunnen beheren.', - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "a61e34b5-5770-4b41-af4c-8d3e4168277e", - self: "/apiComponentlegalEntity/a61e34b5-5770-4b41-af4c-8d3e4168277e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "a5d4d221-e907-450a-a519-6ed8db960c3e", - self: "/api/oc/organizations/a5d4d221-e907-450a-a519-6ed8db960c3e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "a5d4d221-e907-450a-a519-6ed8db960c3e", - self: "/api/oc/organizations/a5d4d221-e907-450a-a519-6ed8db960c3e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "a958def9-9a67-40d6-a730-ccae2355466d", - self: "/apiComponentnlEntity/a958def9-9a67-40d6-a730-ccae2355466d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "f4b5c6d8-6c5e-43ed-a1c2-f02ab2d434d1", - self: "/apiComponentnlEntitycommongroundEntity/f4b5c6d8-6c5e-43ed-a1c2-f02ab2d434d1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - embedded: { - commonground: { - _self: { - id: "f4b5c6d8-6c5e-43ed-a1c2-f02ab2d434d1", - self: "/apiComponentnlEntitycommongroundEntity/f4b5c6d8-6c5e-43ed-a1c2-f02ab2d434d1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - }, - }, - maintenance: { - _self: { - id: "4d772caf-6859-4a4a-b739-a85bd6e07e0f", - self: "/apiComponentmaintenanceEntity/4d772caf-6859-4a4a-b739-a85bd6e07e0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-12-13T14:32:25+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "9f68cfa6-3001-4df5-9073-fd5f9ef149b6", - self: "/apiContact/9f68cfa6-3001-4df5-9073-fd5f9ef149b6", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f81a35b0-dd5c-4b07-a03d-e93d24ccbbe9", - self: "/apiContact/f81a35b0-dd5c-4b07-a03d-e93d24ccbbe9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:38+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "59a3682f-c104-4040-a116-a6bdc83d0c9f", - self: "/apiContact/59a3682f-c104-4040-a116-a6bdc83d0c9f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "41bc3a93-6357-49b0-a584-2315b3a82c12", - self: "/apiContact/41bc3a93-6357-49b0-a584-2315b3a82c12", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:44+00:00", - dateModified: "2022-10-28T15:14:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "672b948a-9860-43ea-882a-c4a5473f6769", - self: "/apiContact/672b948a-9860-43ea-882a-c4a5473f6769", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:45+00:00", - dateModified: "2022-10-28T15:14:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b828604b-0d16-4fed-bc29-99061dbdae2e", - self: "/apiContact/b828604b-0d16-4fed-bc29-99061dbdae2e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:02:04+00:00", - dateModified: "2022-10-29T00:02:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74a8fce3-1bbb-4e94-8c79-cf3216ca75b8", - self: "/apiContact/74a8fce3-1bbb-4e94-8c79-cf3216ca75b8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:06:03+00:00", - dateModified: "2022-10-30T00:06:03+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f26d9984-e879-47b8-9346-324ac08125d7", - self: "/apiContact/f26d9984-e879-47b8-9346-324ac08125d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:06:46+00:00", - dateModified: "2022-10-31T00:06:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "173333fc-0439-4a3b-aa76-00f4644e0a75", - self: "/apiContact/173333fc-0439-4a3b-aa76-00f4644e0a75", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:42:24+00:00", - dateModified: "2022-10-31T13:42:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f61126d4-54f5-4d9d-bd34-efe36bbab11b", - self: "/apiContact/f61126d4-54f5-4d9d-bd34-efe36bbab11b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:17:21+00:00", - dateModified: "2022-11-01T13:17:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65bb5149-8f18-4142-8a28-0bc5130e63b5", - self: "/apiContact/65bb5149-8f18-4142-8a28-0bc5130e63b5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T13:55:57+00:00", - dateModified: "2022-11-02T13:55:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4cbaed9b-4120-4d10-af2b-c49288b2f420", - self: "/apiContact/4cbaed9b-4120-4d10-af2b-c49288b2f420", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:53:42+00:00", - dateModified: "2022-11-03T13:53:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb077efe-a822-428e-b3b8-276eb6c70587", - self: "/apiContact/bb077efe-a822-428e-b3b8-276eb6c70587", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T14:51:58+00:00", - dateModified: "2022-11-04T14:51:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c0120c02-8be0-4e89-8398-9b8c76ebb5d0", - self: "/apiContact/c0120c02-8be0-4e89-8398-9b8c76ebb5d0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:13:50+00:00", - dateModified: "2022-11-10T10:13:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7272a4a8-45da-471f-badc-5b5c8d7eb4ed", - self: "/apiContact/7272a4a8-45da-471f-badc-5b5c8d7eb4ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:06:37+00:00", - dateModified: "2022-11-10T13:06:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0248d31d-e2c0-40ef-9b10-239cd992ffb0", - self: "/apiContact/0248d31d-e2c0-40ef-9b10-239cd992ffb0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:46:38+00:00", - dateModified: "2022-11-21T12:46:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9e2dfb2c-c3e9-4c32-866c-302aa45a434a", - self: "/apiContact/9e2dfb2c-c3e9-4c32-866c-302aa45a434a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:48:32+00:00", - dateModified: "2022-11-21T12:48:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "686fdab2-087b-4598-98ba-38a595c101df", - self: "/apiContact/686fdab2-087b-4598-98ba-38a595c101df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:59:01+00:00", - dateModified: "2022-11-21T12:59:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f2f5331-3137-4a98-b48e-387382b39fd6", - self: "/apiContact/4f2f5331-3137-4a98-b48e-387382b39fd6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:04:00+00:00", - dateModified: "2022-11-22T15:04:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5b5fab88-6535-4ab3-b6c1-11f120363929", - self: "/apiContact/5b5fab88-6535-4ab3-b6c1-11f120363929", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:58:40+00:00", - dateModified: "2022-11-22T15:58:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a09e40c-c8ac-4dc1-a98a-ea044f1f3eea", - self: "/apiContact/5a09e40c-c8ac-4dc1-a98a-ea044f1f3eea", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:08:50+00:00", - dateModified: "2022-11-22T16:08:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c47b3c31-cb05-4ac2-aff4-536dba38835f", - self: "/apiContact/c47b3c31-cb05-4ac2-aff4-536dba38835f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:09:23+00:00", - dateModified: "2022-11-22T17:09:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5531d568-375a-4c76-8d83-356146e23c1d", - self: "/apiContact/5531d568-375a-4c76-8d83-356146e23c1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:02:53+00:00", - dateModified: "2022-11-22T19:02:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f1e54c13-dd9a-4b32-b2e1-408340590b65", - self: "/apiContact/f1e54c13-dd9a-4b32-b2e1-408340590b65", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:03:42+00:00", - dateModified: "2022-11-22T21:03:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "76d2577b-2cbf-4790-8375-3f551efacc99", - self: "/apiContact/76d2577b-2cbf-4790-8375-3f551efacc99", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:03:11+00:00", - dateModified: "2022-11-22T23:03:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ec1ba0fe-6faa-4c9d-a22a-b9699c9087e8", - self: "/apiContact/ec1ba0fe-6faa-4c9d-a22a-b9699c9087e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:03:18+00:00", - dateModified: "2022-11-23T01:03:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64e777fc-a2fc-4003-a3e4-0bc76bcc900b", - self: "/apiContact/64e777fc-a2fc-4003-a3e4-0bc76bcc900b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:03:25+00:00", - dateModified: "2022-11-23T03:03:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64056e81-e004-4801-ae3a-244e3805dcdb", - self: "/apiContact/64056e81-e004-4801-ae3a-244e3805dcdb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:03:22+00:00", - dateModified: "2022-11-23T05:03:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0653d48c-e75a-4ca5-9731-8d2a0cbc428c", - self: "/apiContact/0653d48c-e75a-4ca5-9731-8d2a0cbc428c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:03:32+00:00", - dateModified: "2022-11-23T07:03:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e55a71ef-b86e-4156-ae9a-0dd1d0e13e57", - self: "/apiContact/e55a71ef-b86e-4156-ae9a-0dd1d0e13e57", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:17:58+00:00", - dateModified: "2022-11-23T08:17:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72fd4932-194d-418f-a94d-e019ed6183ac", - self: "/apiContact/72fd4932-194d-418f-a94d-e019ed6183ac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:05:57+00:00", - dateModified: "2022-11-23T09:05:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a858dce-80ec-4906-bd3e-196c9464721e", - self: "/apiContact/4a858dce-80ec-4906-bd3e-196c9464721e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:56:42+00:00", - dateModified: "2022-11-23T09:56:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "419d2077-493f-406e-8f82-c6147c288af4", - self: "/apiContact/419d2077-493f-406e-8f82-c6147c288af4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:12:06+00:00", - dateModified: "2022-11-23T11:12:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e7a91fab-a73e-48da-bc7b-2e2b30048cc5", - self: "/apiContact/e7a91fab-a73e-48da-bc7b-2e2b30048cc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:06:28+00:00", - dateModified: "2022-11-23T13:06:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ef3b230f-53dd-401f-b780-fb5dac0a240c", - self: "/apiContact/ef3b230f-53dd-401f-b780-fb5dac0a240c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:46:04+00:00", - dateModified: "2022-11-23T13:46:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "abcd42d8-2f23-4735-88ae-39b91c52488d", - self: "/apiContact/abcd42d8-2f23-4735-88ae-39b91c52488d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:09:22+00:00", - dateModified: "2022-11-23T15:09:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "48316a5f-8708-4323-89e8-091af98ead5e", - self: "/apiContact/48316a5f-8708-4323-89e8-091af98ead5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:05:50+00:00", - dateModified: "2022-11-23T17:05:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64dbc275-0cbc-4c18-a8fc-309dacb8343d", - self: "/apiContact/64dbc275-0cbc-4c18-a8fc-309dacb8343d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:06:00+00:00", - dateModified: "2022-11-23T19:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a193153-9b38-4da0-8acc-6fe0fff11703", - self: "/apiContact/4a193153-9b38-4da0-8acc-6fe0fff11703", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:07:27+00:00", - dateModified: "2022-11-23T21:07:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4a3a0f2-1e6a-4f51-aefe-e5eddf513055", - self: "/apiContact/e4a3a0f2-1e6a-4f51-aefe-e5eddf513055", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:03:37+00:00", - dateModified: "2022-11-23T23:03:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ba55d88a-8d57-4ab1-89bc-cf10d57d45d7", - self: "/apiContact/ba55d88a-8d57-4ab1-89bc-cf10d57d45d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:02:46+00:00", - dateModified: "2022-11-24T01:02:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9e25bf35-0432-422e-b134-24abb5a342ec", - self: "/apiContact/9e25bf35-0432-422e-b134-24abb5a342ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:02:55+00:00", - dateModified: "2022-11-24T03:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "63b50fb4-fd45-47e5-aea6-7c2013f6a08e", - self: "/apiContact/63b50fb4-fd45-47e5-aea6-7c2013f6a08e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:02:55+00:00", - dateModified: "2022-11-24T05:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0df3f24c-f8f1-445f-9ead-48ea4624424b", - self: "/apiContact/0df3f24c-f8f1-445f-9ead-48ea4624424b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:05:46+00:00", - dateModified: "2022-11-24T07:05:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb867e1a-2048-401d-b4d9-1883ae086068", - self: "/apiContact/bb867e1a-2048-401d-b4d9-1883ae086068", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:03:52+00:00", - dateModified: "2022-11-24T09:03:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "854b7aef-b4f5-4df8-94f4-588de0780f40", - self: "/apiContact/854b7aef-b4f5-4df8-94f4-588de0780f40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:03:31+00:00", - dateModified: "2022-11-24T11:03:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1b6941a9-2efc-4b88-89d7-605875331aaf", - self: "/apiContact/1b6941a9-2efc-4b88-89d7-605875331aaf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T10:44:42+00:00", - dateModified: "2022-12-09T10:44:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d67203c9-01ec-436e-b78e-b2a2c9a7996b", - self: "/apiContact/d67203c9-01ec-436e-b78e-b2a2c9a7996b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:38:18+00:00", - dateModified: "2022-12-09T12:38:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d1f18aa6-0a2e-4dcd-9608-ce7a19848f22", - self: "/apiContact/d1f18aa6-0a2e-4dcd-9608-ce7a19848f22", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:37:23+00:00", - dateModified: "2022-12-10T14:37:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ae8cb9d5-4304-4577-9089-757b05186122", - self: "/apiContact/ae8cb9d5-4304-4577-9089-757b05186122", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:40:39+00:00", - dateModified: "2022-12-11T14:40:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a2a914bd-1c33-4ce1-8eb5-3b7381dbba6d", - self: "/apiContact/a2a914bd-1c33-4ce1-8eb5-3b7381dbba6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:42:41+00:00", - dateModified: "2022-12-12T14:42:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e3f89381-8c25-433a-a312-e44532452cae", - self: "/apiContact/e3f89381-8c25-433a-a312-e44532452cae", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-13T14:31:56+00:00", - dateModified: "2022-12-13T14:31:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "9f68cfa6-3001-4df5-9073-fd5f9ef149b6", - self: "/apiContact/9f68cfa6-3001-4df5-9073-fd5f9ef149b6", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f81a35b0-dd5c-4b07-a03d-e93d24ccbbe9", - self: "/apiContact/f81a35b0-dd5c-4b07-a03d-e93d24ccbbe9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:38+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "59a3682f-c104-4040-a116-a6bdc83d0c9f", - self: "/apiContact/59a3682f-c104-4040-a116-a6bdc83d0c9f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "41bc3a93-6357-49b0-a584-2315b3a82c12", - self: "/apiContact/41bc3a93-6357-49b0-a584-2315b3a82c12", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:44+00:00", - dateModified: "2022-10-28T15:14:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "672b948a-9860-43ea-882a-c4a5473f6769", - self: "/apiContact/672b948a-9860-43ea-882a-c4a5473f6769", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:45+00:00", - dateModified: "2022-10-28T15:14:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b828604b-0d16-4fed-bc29-99061dbdae2e", - self: "/apiContact/b828604b-0d16-4fed-bc29-99061dbdae2e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:02:04+00:00", - dateModified: "2022-10-29T00:02:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74a8fce3-1bbb-4e94-8c79-cf3216ca75b8", - self: "/apiContact/74a8fce3-1bbb-4e94-8c79-cf3216ca75b8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:06:03+00:00", - dateModified: "2022-10-30T00:06:03+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f26d9984-e879-47b8-9346-324ac08125d7", - self: "/apiContact/f26d9984-e879-47b8-9346-324ac08125d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:06:46+00:00", - dateModified: "2022-10-31T00:06:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "173333fc-0439-4a3b-aa76-00f4644e0a75", - self: "/apiContact/173333fc-0439-4a3b-aa76-00f4644e0a75", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:42:24+00:00", - dateModified: "2022-10-31T13:42:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f61126d4-54f5-4d9d-bd34-efe36bbab11b", - self: "/apiContact/f61126d4-54f5-4d9d-bd34-efe36bbab11b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:17:21+00:00", - dateModified: "2022-11-01T13:17:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65bb5149-8f18-4142-8a28-0bc5130e63b5", - self: "/apiContact/65bb5149-8f18-4142-8a28-0bc5130e63b5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T13:55:57+00:00", - dateModified: "2022-11-02T13:55:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4cbaed9b-4120-4d10-af2b-c49288b2f420", - self: "/apiContact/4cbaed9b-4120-4d10-af2b-c49288b2f420", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:53:42+00:00", - dateModified: "2022-11-03T13:53:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb077efe-a822-428e-b3b8-276eb6c70587", - self: "/apiContact/bb077efe-a822-428e-b3b8-276eb6c70587", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T14:51:58+00:00", - dateModified: "2022-11-04T14:51:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c0120c02-8be0-4e89-8398-9b8c76ebb5d0", - self: "/apiContact/c0120c02-8be0-4e89-8398-9b8c76ebb5d0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:13:50+00:00", - dateModified: "2022-11-10T10:13:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7272a4a8-45da-471f-badc-5b5c8d7eb4ed", - self: "/apiContact/7272a4a8-45da-471f-badc-5b5c8d7eb4ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:06:37+00:00", - dateModified: "2022-11-10T13:06:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0248d31d-e2c0-40ef-9b10-239cd992ffb0", - self: "/apiContact/0248d31d-e2c0-40ef-9b10-239cd992ffb0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:46:38+00:00", - dateModified: "2022-11-21T12:46:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9e2dfb2c-c3e9-4c32-866c-302aa45a434a", - self: "/apiContact/9e2dfb2c-c3e9-4c32-866c-302aa45a434a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:48:32+00:00", - dateModified: "2022-11-21T12:48:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "686fdab2-087b-4598-98ba-38a595c101df", - self: "/apiContact/686fdab2-087b-4598-98ba-38a595c101df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:59:01+00:00", - dateModified: "2022-11-21T12:59:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f2f5331-3137-4a98-b48e-387382b39fd6", - self: "/apiContact/4f2f5331-3137-4a98-b48e-387382b39fd6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:04:00+00:00", - dateModified: "2022-11-22T15:04:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5b5fab88-6535-4ab3-b6c1-11f120363929", - self: "/apiContact/5b5fab88-6535-4ab3-b6c1-11f120363929", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:58:40+00:00", - dateModified: "2022-11-22T15:58:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a09e40c-c8ac-4dc1-a98a-ea044f1f3eea", - self: "/apiContact/5a09e40c-c8ac-4dc1-a98a-ea044f1f3eea", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:08:50+00:00", - dateModified: "2022-11-22T16:08:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c47b3c31-cb05-4ac2-aff4-536dba38835f", - self: "/apiContact/c47b3c31-cb05-4ac2-aff4-536dba38835f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:09:23+00:00", - dateModified: "2022-11-22T17:09:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5531d568-375a-4c76-8d83-356146e23c1d", - self: "/apiContact/5531d568-375a-4c76-8d83-356146e23c1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:02:53+00:00", - dateModified: "2022-11-22T19:02:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f1e54c13-dd9a-4b32-b2e1-408340590b65", - self: "/apiContact/f1e54c13-dd9a-4b32-b2e1-408340590b65", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:03:42+00:00", - dateModified: "2022-11-22T21:03:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "76d2577b-2cbf-4790-8375-3f551efacc99", - self: "/apiContact/76d2577b-2cbf-4790-8375-3f551efacc99", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:03:11+00:00", - dateModified: "2022-11-22T23:03:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ec1ba0fe-6faa-4c9d-a22a-b9699c9087e8", - self: "/apiContact/ec1ba0fe-6faa-4c9d-a22a-b9699c9087e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:03:18+00:00", - dateModified: "2022-11-23T01:03:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64e777fc-a2fc-4003-a3e4-0bc76bcc900b", - self: "/apiContact/64e777fc-a2fc-4003-a3e4-0bc76bcc900b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:03:25+00:00", - dateModified: "2022-11-23T03:03:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64056e81-e004-4801-ae3a-244e3805dcdb", - self: "/apiContact/64056e81-e004-4801-ae3a-244e3805dcdb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:03:22+00:00", - dateModified: "2022-11-23T05:03:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0653d48c-e75a-4ca5-9731-8d2a0cbc428c", - self: "/apiContact/0653d48c-e75a-4ca5-9731-8d2a0cbc428c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:03:32+00:00", - dateModified: "2022-11-23T07:03:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e55a71ef-b86e-4156-ae9a-0dd1d0e13e57", - self: "/apiContact/e55a71ef-b86e-4156-ae9a-0dd1d0e13e57", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:17:58+00:00", - dateModified: "2022-11-23T08:17:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72fd4932-194d-418f-a94d-e019ed6183ac", - self: "/apiContact/72fd4932-194d-418f-a94d-e019ed6183ac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:05:57+00:00", - dateModified: "2022-11-23T09:05:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a858dce-80ec-4906-bd3e-196c9464721e", - self: "/apiContact/4a858dce-80ec-4906-bd3e-196c9464721e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:56:42+00:00", - dateModified: "2022-11-23T09:56:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "419d2077-493f-406e-8f82-c6147c288af4", - self: "/apiContact/419d2077-493f-406e-8f82-c6147c288af4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:12:06+00:00", - dateModified: "2022-11-23T11:12:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e7a91fab-a73e-48da-bc7b-2e2b30048cc5", - self: "/apiContact/e7a91fab-a73e-48da-bc7b-2e2b30048cc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:06:28+00:00", - dateModified: "2022-11-23T13:06:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ef3b230f-53dd-401f-b780-fb5dac0a240c", - self: "/apiContact/ef3b230f-53dd-401f-b780-fb5dac0a240c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:46:04+00:00", - dateModified: "2022-11-23T13:46:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "abcd42d8-2f23-4735-88ae-39b91c52488d", - self: "/apiContact/abcd42d8-2f23-4735-88ae-39b91c52488d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:09:22+00:00", - dateModified: "2022-11-23T15:09:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "48316a5f-8708-4323-89e8-091af98ead5e", - self: "/apiContact/48316a5f-8708-4323-89e8-091af98ead5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:05:50+00:00", - dateModified: "2022-11-23T17:05:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64dbc275-0cbc-4c18-a8fc-309dacb8343d", - self: "/apiContact/64dbc275-0cbc-4c18-a8fc-309dacb8343d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:06:00+00:00", - dateModified: "2022-11-23T19:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a193153-9b38-4da0-8acc-6fe0fff11703", - self: "/apiContact/4a193153-9b38-4da0-8acc-6fe0fff11703", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:07:27+00:00", - dateModified: "2022-11-23T21:07:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4a3a0f2-1e6a-4f51-aefe-e5eddf513055", - self: "/apiContact/e4a3a0f2-1e6a-4f51-aefe-e5eddf513055", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:03:37+00:00", - dateModified: "2022-11-23T23:03:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ba55d88a-8d57-4ab1-89bc-cf10d57d45d7", - self: "/apiContact/ba55d88a-8d57-4ab1-89bc-cf10d57d45d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:02:46+00:00", - dateModified: "2022-11-24T01:02:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9e25bf35-0432-422e-b134-24abb5a342ec", - self: "/apiContact/9e25bf35-0432-422e-b134-24abb5a342ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:02:55+00:00", - dateModified: "2022-11-24T03:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "63b50fb4-fd45-47e5-aea6-7c2013f6a08e", - self: "/apiContact/63b50fb4-fd45-47e5-aea6-7c2013f6a08e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:02:55+00:00", - dateModified: "2022-11-24T05:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0df3f24c-f8f1-445f-9ead-48ea4624424b", - self: "/apiContact/0df3f24c-f8f1-445f-9ead-48ea4624424b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:05:46+00:00", - dateModified: "2022-11-24T07:05:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb867e1a-2048-401d-b4d9-1883ae086068", - self: "/apiContact/bb867e1a-2048-401d-b4d9-1883ae086068", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:03:52+00:00", - dateModified: "2022-11-24T09:03:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "854b7aef-b4f5-4df8-94f4-588de0780f40", - self: "/apiContact/854b7aef-b4f5-4df8-94f4-588de0780f40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:03:31+00:00", - dateModified: "2022-11-24T11:03:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1b6941a9-2efc-4b88-89d7-605875331aaf", - self: "/apiContact/1b6941a9-2efc-4b88-89d7-605875331aaf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T10:44:42+00:00", - dateModified: "2022-12-09T10:44:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d67203c9-01ec-436e-b78e-b2a2c9a7996b", - self: "/apiContact/d67203c9-01ec-436e-b78e-b2a2c9a7996b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:38:18+00:00", - dateModified: "2022-12-09T12:38:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d1f18aa6-0a2e-4dcd-9608-ce7a19848f22", - self: "/apiContact/d1f18aa6-0a2e-4dcd-9608-ce7a19848f22", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:37:23+00:00", - dateModified: "2022-12-10T14:37:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ae8cb9d5-4304-4577-9089-757b05186122", - self: "/apiContact/ae8cb9d5-4304-4577-9089-757b05186122", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:40:39+00:00", - dateModified: "2022-12-11T14:40:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a2a914bd-1c33-4ce1-8eb5-3b7381dbba6d", - self: "/apiContact/a2a914bd-1c33-4ce1-8eb5-3b7381dbba6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:42:41+00:00", - dateModified: "2022-12-12T14:42:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e3f89381-8c25-433a-a312-e44532452cae", - self: "/apiContact/e3f89381-8c25-433a-a312-e44532452cae", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-13T14:31:56+00:00", - dateModified: "2022-12-13T14:31:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "c6c04c91-027c-4041-8c19-1a7c084b4a97", - self: "/apiRating/c6c04c91-027c-4041-8c19-1a7c084b4a97", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:41:33+00:00", - dateModified: "2022-10-31T15:42:29+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Agendaservice rated", - "The url: https://github.com/ConductionNL/agendaservice rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Agendaservice", - 'Het "agenda" component is ontwikkeld voor de gemeente Utrecht en heeft als doel een agenda te koppelen aan objecten uit andere componenten uit commonground. Dit stelt je in staat om aan deze objecten', - " afspraken en beschikbaarheid te kunnen beheren. rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "Agendaservice", - embedded: { - url: { - _self: { - id: "b7d7127b-f0e9-42b8-952d-0056d9e05e79", - self: "/apiRepository/b7d7127b-f0e9-42b8-952d-0056d9e05e79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "919fa409-e1c4-4c17-a4cb-19fc9b12761a", - self: "/api/oc/organizations/919fa409-e1c4-4c17-a4cb-19fc9b12761a", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:23:54+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "809e4655-520d-4daa-86a4-48adb432e2aa", - "d9b56dc7-b97d-48e0-950b-fceaacc496d2", - "9b951aa8-42be-4cb6-b733-ded41376d3fc", - "60644140-3c7a-4639-9e79-d0c9f3459843", - "31556d81-a86e-478b-b9d8-123e0f28fd29", - "86485a06-9bf1-4728-88e0-d0418defd1d9", - "55234422-27b0-4ea3-a603-3c0d6422430d", - "d6ae0415-977d-427a-953a-d2bbe83d9c7d", - "5a0d2f50-3a51-453c-b8a1-916a5b0737f1", - "48b8409d-f955-4fd9-9e48-4ee1930f5ed4", - "76bbd3a5-3852-403e-9a7a-56b0a9301d7b", - "f1a08af4-1e01-4d7d-9cd5-239b04f6d0a2", - "48f4d520-db44-4ada-8a59-32aca7fdb00a", - "634d2766-7b7a-4d35-875c-b60be3ca5e53", - "6ef48337-7ad5-443c-aa50-537ba58c42da", - "64df23b9-6a49-4a96-9380-0634ee1c4c50", - "07282e5b-5936-45fe-8eb1-471725c837c4", - "9a5c89a3-781b-404a-8c2a-7e5f864cc192", - "6a1f2090-a450-454f-b2e7-0a6514531757", - "246f9d06-8ad1-49e4-9c4d-483c35b688e5", - "967f2d76-6316-4652-b8fc-7a27098c27da", - "ddb91e68-8a88-4b51-8c62-a43baf3ecbbb", - "ba0b452a-ba65-4882-b8e3-de23968f053f", - "d717ced8-1e81-4904-8187-2c148c3ff404", - "9af49288-4ec5-4a42-8773-d17bba0e7a20", - "ebebe90b-b3cc-43b5-86f4-305a150ad1b3", - "0cbdaf71-c18c-46bf-9320-d873c43cbc69", - "8202e804-d1cc-4a7a-aa05-c4b98c73317c", - "6b2abfb9-22cb-4251-ac54-b0dc454d00b6", - "88dd41e0-b3e1-45aa-a406-805bd4f47448", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "agendaservice", - url: "https://github.com/ConductionNL/agendaservice", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2022-04-28T10:10:10Z", - stars: 0, - fork_count: 1, - issue_open_count: 6, - merge_request_open_count: null, - programming_languages: ["243371", "194184", "188296", "86064", "36513", "10278", "3898", "2383", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "919fa409-e1c4-4c17-a4cb-19fc9b12761a", - self: "/api/oc/organizations/919fa409-e1c4-4c17-a4cb-19fc9b12761a", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:23:54+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "809e4655-520d-4daa-86a4-48adb432e2aa", - "d9b56dc7-b97d-48e0-950b-fceaacc496d2", - "9b951aa8-42be-4cb6-b733-ded41376d3fc", - "60644140-3c7a-4639-9e79-d0c9f3459843", - "31556d81-a86e-478b-b9d8-123e0f28fd29", - "86485a06-9bf1-4728-88e0-d0418defd1d9", - "55234422-27b0-4ea3-a603-3c0d6422430d", - "d6ae0415-977d-427a-953a-d2bbe83d9c7d", - "5a0d2f50-3a51-453c-b8a1-916a5b0737f1", - "48b8409d-f955-4fd9-9e48-4ee1930f5ed4", - "76bbd3a5-3852-403e-9a7a-56b0a9301d7b", - "f1a08af4-1e01-4d7d-9cd5-239b04f6d0a2", - "48f4d520-db44-4ada-8a59-32aca7fdb00a", - "634d2766-7b7a-4d35-875c-b60be3ca5e53", - "6ef48337-7ad5-443c-aa50-537ba58c42da", - "64df23b9-6a49-4a96-9380-0634ee1c4c50", - "07282e5b-5936-45fe-8eb1-471725c837c4", - "9a5c89a3-781b-404a-8c2a-7e5f864cc192", - "6a1f2090-a450-454f-b2e7-0a6514531757", - "246f9d06-8ad1-49e4-9c4d-483c35b688e5", - "967f2d76-6316-4652-b8fc-7a27098c27da", - "ddb91e68-8a88-4b51-8c62-a43baf3ecbbb", - "ba0b452a-ba65-4882-b8e3-de23968f053f", - "d717ced8-1e81-4904-8187-2c148c3ff404", - "9af49288-4ec5-4a42-8773-d17bba0e7a20", - "ebebe90b-b3cc-43b5-86f4-305a150ad1b3", - "0cbdaf71-c18c-46bf-9320-d873c43cbc69", - "8202e804-d1cc-4a7a-aa05-c4b98c73317c", - "6b2abfb9-22cb-4251-ac54-b0dc454d00b6", - "88dd41e0-b3e1-45aa-a406-805bd4f47448", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "4b49efe1-e0e3-447e-bb43-89fc4114841d", - self: "/apiDescription/4b49efe1-e0e3-447e-bb43-89fc4114841d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - 'Agendaservice,Het "agenda" component is ontwikkeld voor de gemeente Utrecht en heeft als doel een agenda te koppelen aan objecten uit andere componenten uit commonground. Dit stelt je in staat om aan deze objecten, afspraken en beschikbaarheid te kunnen beheren.', - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "a61e34b5-5770-4b41-af4c-8d3e4168277e", - self: "/apiComponentlegalEntity/a61e34b5-5770-4b41-af4c-8d3e4168277e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "a5d4d221-e907-450a-a519-6ed8db960c3e", - self: "/api/oc/organizations/a5d4d221-e907-450a-a519-6ed8db960c3e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "a5d4d221-e907-450a-a519-6ed8db960c3e", - self: "/api/oc/organizations/a5d4d221-e907-450a-a519-6ed8db960c3e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "a958def9-9a67-40d6-a730-ccae2355466d", - self: "/apiComponentnlEntity/a958def9-9a67-40d6-a730-ccae2355466d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "f4b5c6d8-6c5e-43ed-a1c2-f02ab2d434d1", - self: "/apiComponentnlEntitycommongroundEntity/f4b5c6d8-6c5e-43ed-a1c2-f02ab2d434d1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - embedded: { - commonground: { - _self: { - id: "f4b5c6d8-6c5e-43ed-a1c2-f02ab2d434d1", - self: "/apiComponentnlEntitycommongroundEntity/f4b5c6d8-6c5e-43ed-a1c2-f02ab2d434d1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - }, - }, - maintenance: { - _self: { - id: "4d772caf-6859-4a4a-b739-a85bd6e07e0f", - self: "/apiComponentmaintenanceEntity/4d772caf-6859-4a4a-b739-a85bd6e07e0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-12-13T14:32:25+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "9f68cfa6-3001-4df5-9073-fd5f9ef149b6", - self: "/apiContact/9f68cfa6-3001-4df5-9073-fd5f9ef149b6", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f81a35b0-dd5c-4b07-a03d-e93d24ccbbe9", - self: "/apiContact/f81a35b0-dd5c-4b07-a03d-e93d24ccbbe9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:38+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "59a3682f-c104-4040-a116-a6bdc83d0c9f", - self: "/apiContact/59a3682f-c104-4040-a116-a6bdc83d0c9f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "41bc3a93-6357-49b0-a584-2315b3a82c12", - self: "/apiContact/41bc3a93-6357-49b0-a584-2315b3a82c12", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:44+00:00", - dateModified: "2022-10-28T15:14:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "672b948a-9860-43ea-882a-c4a5473f6769", - self: "/apiContact/672b948a-9860-43ea-882a-c4a5473f6769", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:45+00:00", - dateModified: "2022-10-28T15:14:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b828604b-0d16-4fed-bc29-99061dbdae2e", - self: "/apiContact/b828604b-0d16-4fed-bc29-99061dbdae2e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:02:04+00:00", - dateModified: "2022-10-29T00:02:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74a8fce3-1bbb-4e94-8c79-cf3216ca75b8", - self: "/apiContact/74a8fce3-1bbb-4e94-8c79-cf3216ca75b8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:06:03+00:00", - dateModified: "2022-10-30T00:06:03+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f26d9984-e879-47b8-9346-324ac08125d7", - self: "/apiContact/f26d9984-e879-47b8-9346-324ac08125d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:06:46+00:00", - dateModified: "2022-10-31T00:06:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "173333fc-0439-4a3b-aa76-00f4644e0a75", - self: "/apiContact/173333fc-0439-4a3b-aa76-00f4644e0a75", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:42:24+00:00", - dateModified: "2022-10-31T13:42:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f61126d4-54f5-4d9d-bd34-efe36bbab11b", - self: "/apiContact/f61126d4-54f5-4d9d-bd34-efe36bbab11b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:17:21+00:00", - dateModified: "2022-11-01T13:17:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65bb5149-8f18-4142-8a28-0bc5130e63b5", - self: "/apiContact/65bb5149-8f18-4142-8a28-0bc5130e63b5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T13:55:57+00:00", - dateModified: "2022-11-02T13:55:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4cbaed9b-4120-4d10-af2b-c49288b2f420", - self: "/apiContact/4cbaed9b-4120-4d10-af2b-c49288b2f420", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:53:42+00:00", - dateModified: "2022-11-03T13:53:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb077efe-a822-428e-b3b8-276eb6c70587", - self: "/apiContact/bb077efe-a822-428e-b3b8-276eb6c70587", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T14:51:58+00:00", - dateModified: "2022-11-04T14:51:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c0120c02-8be0-4e89-8398-9b8c76ebb5d0", - self: "/apiContact/c0120c02-8be0-4e89-8398-9b8c76ebb5d0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:13:50+00:00", - dateModified: "2022-11-10T10:13:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7272a4a8-45da-471f-badc-5b5c8d7eb4ed", - self: "/apiContact/7272a4a8-45da-471f-badc-5b5c8d7eb4ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:06:37+00:00", - dateModified: "2022-11-10T13:06:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0248d31d-e2c0-40ef-9b10-239cd992ffb0", - self: "/apiContact/0248d31d-e2c0-40ef-9b10-239cd992ffb0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:46:38+00:00", - dateModified: "2022-11-21T12:46:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9e2dfb2c-c3e9-4c32-866c-302aa45a434a", - self: "/apiContact/9e2dfb2c-c3e9-4c32-866c-302aa45a434a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:48:32+00:00", - dateModified: "2022-11-21T12:48:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "686fdab2-087b-4598-98ba-38a595c101df", - self: "/apiContact/686fdab2-087b-4598-98ba-38a595c101df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:59:01+00:00", - dateModified: "2022-11-21T12:59:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f2f5331-3137-4a98-b48e-387382b39fd6", - self: "/apiContact/4f2f5331-3137-4a98-b48e-387382b39fd6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:04:00+00:00", - dateModified: "2022-11-22T15:04:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5b5fab88-6535-4ab3-b6c1-11f120363929", - self: "/apiContact/5b5fab88-6535-4ab3-b6c1-11f120363929", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:58:40+00:00", - dateModified: "2022-11-22T15:58:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a09e40c-c8ac-4dc1-a98a-ea044f1f3eea", - self: "/apiContact/5a09e40c-c8ac-4dc1-a98a-ea044f1f3eea", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:08:50+00:00", - dateModified: "2022-11-22T16:08:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c47b3c31-cb05-4ac2-aff4-536dba38835f", - self: "/apiContact/c47b3c31-cb05-4ac2-aff4-536dba38835f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:09:23+00:00", - dateModified: "2022-11-22T17:09:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5531d568-375a-4c76-8d83-356146e23c1d", - self: "/apiContact/5531d568-375a-4c76-8d83-356146e23c1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:02:53+00:00", - dateModified: "2022-11-22T19:02:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f1e54c13-dd9a-4b32-b2e1-408340590b65", - self: "/apiContact/f1e54c13-dd9a-4b32-b2e1-408340590b65", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:03:42+00:00", - dateModified: "2022-11-22T21:03:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "76d2577b-2cbf-4790-8375-3f551efacc99", - self: "/apiContact/76d2577b-2cbf-4790-8375-3f551efacc99", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:03:11+00:00", - dateModified: "2022-11-22T23:03:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ec1ba0fe-6faa-4c9d-a22a-b9699c9087e8", - self: "/apiContact/ec1ba0fe-6faa-4c9d-a22a-b9699c9087e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:03:18+00:00", - dateModified: "2022-11-23T01:03:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64e777fc-a2fc-4003-a3e4-0bc76bcc900b", - self: "/apiContact/64e777fc-a2fc-4003-a3e4-0bc76bcc900b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:03:25+00:00", - dateModified: "2022-11-23T03:03:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64056e81-e004-4801-ae3a-244e3805dcdb", - self: "/apiContact/64056e81-e004-4801-ae3a-244e3805dcdb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:03:22+00:00", - dateModified: "2022-11-23T05:03:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0653d48c-e75a-4ca5-9731-8d2a0cbc428c", - self: "/apiContact/0653d48c-e75a-4ca5-9731-8d2a0cbc428c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:03:32+00:00", - dateModified: "2022-11-23T07:03:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e55a71ef-b86e-4156-ae9a-0dd1d0e13e57", - self: "/apiContact/e55a71ef-b86e-4156-ae9a-0dd1d0e13e57", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:17:58+00:00", - dateModified: "2022-11-23T08:17:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72fd4932-194d-418f-a94d-e019ed6183ac", - self: "/apiContact/72fd4932-194d-418f-a94d-e019ed6183ac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:05:57+00:00", - dateModified: "2022-11-23T09:05:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a858dce-80ec-4906-bd3e-196c9464721e", - self: "/apiContact/4a858dce-80ec-4906-bd3e-196c9464721e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:56:42+00:00", - dateModified: "2022-11-23T09:56:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "419d2077-493f-406e-8f82-c6147c288af4", - self: "/apiContact/419d2077-493f-406e-8f82-c6147c288af4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:12:06+00:00", - dateModified: "2022-11-23T11:12:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e7a91fab-a73e-48da-bc7b-2e2b30048cc5", - self: "/apiContact/e7a91fab-a73e-48da-bc7b-2e2b30048cc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:06:28+00:00", - dateModified: "2022-11-23T13:06:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ef3b230f-53dd-401f-b780-fb5dac0a240c", - self: "/apiContact/ef3b230f-53dd-401f-b780-fb5dac0a240c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:46:04+00:00", - dateModified: "2022-11-23T13:46:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "abcd42d8-2f23-4735-88ae-39b91c52488d", - self: "/apiContact/abcd42d8-2f23-4735-88ae-39b91c52488d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:09:22+00:00", - dateModified: "2022-11-23T15:09:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "48316a5f-8708-4323-89e8-091af98ead5e", - self: "/apiContact/48316a5f-8708-4323-89e8-091af98ead5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:05:50+00:00", - dateModified: "2022-11-23T17:05:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64dbc275-0cbc-4c18-a8fc-309dacb8343d", - self: "/apiContact/64dbc275-0cbc-4c18-a8fc-309dacb8343d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:06:00+00:00", - dateModified: "2022-11-23T19:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a193153-9b38-4da0-8acc-6fe0fff11703", - self: "/apiContact/4a193153-9b38-4da0-8acc-6fe0fff11703", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:07:27+00:00", - dateModified: "2022-11-23T21:07:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4a3a0f2-1e6a-4f51-aefe-e5eddf513055", - self: "/apiContact/e4a3a0f2-1e6a-4f51-aefe-e5eddf513055", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:03:37+00:00", - dateModified: "2022-11-23T23:03:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ba55d88a-8d57-4ab1-89bc-cf10d57d45d7", - self: "/apiContact/ba55d88a-8d57-4ab1-89bc-cf10d57d45d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:02:46+00:00", - dateModified: "2022-11-24T01:02:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9e25bf35-0432-422e-b134-24abb5a342ec", - self: "/apiContact/9e25bf35-0432-422e-b134-24abb5a342ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:02:55+00:00", - dateModified: "2022-11-24T03:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "63b50fb4-fd45-47e5-aea6-7c2013f6a08e", - self: "/apiContact/63b50fb4-fd45-47e5-aea6-7c2013f6a08e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:02:55+00:00", - dateModified: "2022-11-24T05:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0df3f24c-f8f1-445f-9ead-48ea4624424b", - self: "/apiContact/0df3f24c-f8f1-445f-9ead-48ea4624424b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:05:46+00:00", - dateModified: "2022-11-24T07:05:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb867e1a-2048-401d-b4d9-1883ae086068", - self: "/apiContact/bb867e1a-2048-401d-b4d9-1883ae086068", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:03:52+00:00", - dateModified: "2022-11-24T09:03:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "854b7aef-b4f5-4df8-94f4-588de0780f40", - self: "/apiContact/854b7aef-b4f5-4df8-94f4-588de0780f40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:03:31+00:00", - dateModified: "2022-11-24T11:03:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1b6941a9-2efc-4b88-89d7-605875331aaf", - self: "/apiContact/1b6941a9-2efc-4b88-89d7-605875331aaf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T10:44:42+00:00", - dateModified: "2022-12-09T10:44:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d67203c9-01ec-436e-b78e-b2a2c9a7996b", - self: "/apiContact/d67203c9-01ec-436e-b78e-b2a2c9a7996b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:38:18+00:00", - dateModified: "2022-12-09T12:38:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d1f18aa6-0a2e-4dcd-9608-ce7a19848f22", - self: "/apiContact/d1f18aa6-0a2e-4dcd-9608-ce7a19848f22", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:37:23+00:00", - dateModified: "2022-12-10T14:37:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ae8cb9d5-4304-4577-9089-757b05186122", - self: "/apiContact/ae8cb9d5-4304-4577-9089-757b05186122", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:40:39+00:00", - dateModified: "2022-12-11T14:40:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a2a914bd-1c33-4ce1-8eb5-3b7381dbba6d", - self: "/apiContact/a2a914bd-1c33-4ce1-8eb5-3b7381dbba6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:42:41+00:00", - dateModified: "2022-12-12T14:42:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e3f89381-8c25-433a-a312-e44532452cae", - self: "/apiContact/e3f89381-8c25-433a-a312-e44532452cae", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-13T14:31:56+00:00", - dateModified: "2022-12-13T14:31:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "9f68cfa6-3001-4df5-9073-fd5f9ef149b6", - self: "/apiContact/9f68cfa6-3001-4df5-9073-fd5f9ef149b6", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:13:21+00:00", - dateModified: "2022-10-28T15:13:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f81a35b0-dd5c-4b07-a03d-e93d24ccbbe9", - self: "/apiContact/f81a35b0-dd5c-4b07-a03d-e93d24ccbbe9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:38+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "59a3682f-c104-4040-a116-a6bdc83d0c9f", - self: "/apiContact/59a3682f-c104-4040-a116-a6bdc83d0c9f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "41bc3a93-6357-49b0-a584-2315b3a82c12", - self: "/apiContact/41bc3a93-6357-49b0-a584-2315b3a82c12", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:44+00:00", - dateModified: "2022-10-28T15:14:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "672b948a-9860-43ea-882a-c4a5473f6769", - self: "/apiContact/672b948a-9860-43ea-882a-c4a5473f6769", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:45+00:00", - dateModified: "2022-10-28T15:14:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b828604b-0d16-4fed-bc29-99061dbdae2e", - self: "/apiContact/b828604b-0d16-4fed-bc29-99061dbdae2e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:02:04+00:00", - dateModified: "2022-10-29T00:02:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74a8fce3-1bbb-4e94-8c79-cf3216ca75b8", - self: "/apiContact/74a8fce3-1bbb-4e94-8c79-cf3216ca75b8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:06:03+00:00", - dateModified: "2022-10-30T00:06:03+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f26d9984-e879-47b8-9346-324ac08125d7", - self: "/apiContact/f26d9984-e879-47b8-9346-324ac08125d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:06:46+00:00", - dateModified: "2022-10-31T00:06:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "173333fc-0439-4a3b-aa76-00f4644e0a75", - self: "/apiContact/173333fc-0439-4a3b-aa76-00f4644e0a75", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:42:24+00:00", - dateModified: "2022-10-31T13:42:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f61126d4-54f5-4d9d-bd34-efe36bbab11b", - self: "/apiContact/f61126d4-54f5-4d9d-bd34-efe36bbab11b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:17:21+00:00", - dateModified: "2022-11-01T13:17:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65bb5149-8f18-4142-8a28-0bc5130e63b5", - self: "/apiContact/65bb5149-8f18-4142-8a28-0bc5130e63b5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T13:55:57+00:00", - dateModified: "2022-11-02T13:55:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4cbaed9b-4120-4d10-af2b-c49288b2f420", - self: "/apiContact/4cbaed9b-4120-4d10-af2b-c49288b2f420", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:53:42+00:00", - dateModified: "2022-11-03T13:53:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb077efe-a822-428e-b3b8-276eb6c70587", - self: "/apiContact/bb077efe-a822-428e-b3b8-276eb6c70587", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T14:51:58+00:00", - dateModified: "2022-11-04T14:51:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c0120c02-8be0-4e89-8398-9b8c76ebb5d0", - self: "/apiContact/c0120c02-8be0-4e89-8398-9b8c76ebb5d0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:13:50+00:00", - dateModified: "2022-11-10T10:13:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7272a4a8-45da-471f-badc-5b5c8d7eb4ed", - self: "/apiContact/7272a4a8-45da-471f-badc-5b5c8d7eb4ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:06:37+00:00", - dateModified: "2022-11-10T13:06:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0248d31d-e2c0-40ef-9b10-239cd992ffb0", - self: "/apiContact/0248d31d-e2c0-40ef-9b10-239cd992ffb0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:46:38+00:00", - dateModified: "2022-11-21T12:46:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9e2dfb2c-c3e9-4c32-866c-302aa45a434a", - self: "/apiContact/9e2dfb2c-c3e9-4c32-866c-302aa45a434a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:48:32+00:00", - dateModified: "2022-11-21T12:48:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "686fdab2-087b-4598-98ba-38a595c101df", - self: "/apiContact/686fdab2-087b-4598-98ba-38a595c101df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:59:01+00:00", - dateModified: "2022-11-21T12:59:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f2f5331-3137-4a98-b48e-387382b39fd6", - self: "/apiContact/4f2f5331-3137-4a98-b48e-387382b39fd6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:04:00+00:00", - dateModified: "2022-11-22T15:04:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5b5fab88-6535-4ab3-b6c1-11f120363929", - self: "/apiContact/5b5fab88-6535-4ab3-b6c1-11f120363929", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:58:40+00:00", - dateModified: "2022-11-22T15:58:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a09e40c-c8ac-4dc1-a98a-ea044f1f3eea", - self: "/apiContact/5a09e40c-c8ac-4dc1-a98a-ea044f1f3eea", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:08:50+00:00", - dateModified: "2022-11-22T16:08:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c47b3c31-cb05-4ac2-aff4-536dba38835f", - self: "/apiContact/c47b3c31-cb05-4ac2-aff4-536dba38835f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:09:23+00:00", - dateModified: "2022-11-22T17:09:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5531d568-375a-4c76-8d83-356146e23c1d", - self: "/apiContact/5531d568-375a-4c76-8d83-356146e23c1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:02:53+00:00", - dateModified: "2022-11-22T19:02:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f1e54c13-dd9a-4b32-b2e1-408340590b65", - self: "/apiContact/f1e54c13-dd9a-4b32-b2e1-408340590b65", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:03:42+00:00", - dateModified: "2022-11-22T21:03:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "76d2577b-2cbf-4790-8375-3f551efacc99", - self: "/apiContact/76d2577b-2cbf-4790-8375-3f551efacc99", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:03:11+00:00", - dateModified: "2022-11-22T23:03:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ec1ba0fe-6faa-4c9d-a22a-b9699c9087e8", - self: "/apiContact/ec1ba0fe-6faa-4c9d-a22a-b9699c9087e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:03:18+00:00", - dateModified: "2022-11-23T01:03:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64e777fc-a2fc-4003-a3e4-0bc76bcc900b", - self: "/apiContact/64e777fc-a2fc-4003-a3e4-0bc76bcc900b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:03:25+00:00", - dateModified: "2022-11-23T03:03:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64056e81-e004-4801-ae3a-244e3805dcdb", - self: "/apiContact/64056e81-e004-4801-ae3a-244e3805dcdb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:03:22+00:00", - dateModified: "2022-11-23T05:03:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0653d48c-e75a-4ca5-9731-8d2a0cbc428c", - self: "/apiContact/0653d48c-e75a-4ca5-9731-8d2a0cbc428c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:03:32+00:00", - dateModified: "2022-11-23T07:03:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e55a71ef-b86e-4156-ae9a-0dd1d0e13e57", - self: "/apiContact/e55a71ef-b86e-4156-ae9a-0dd1d0e13e57", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:17:58+00:00", - dateModified: "2022-11-23T08:17:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72fd4932-194d-418f-a94d-e019ed6183ac", - self: "/apiContact/72fd4932-194d-418f-a94d-e019ed6183ac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:05:57+00:00", - dateModified: "2022-11-23T09:05:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a858dce-80ec-4906-bd3e-196c9464721e", - self: "/apiContact/4a858dce-80ec-4906-bd3e-196c9464721e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:56:42+00:00", - dateModified: "2022-11-23T09:56:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "419d2077-493f-406e-8f82-c6147c288af4", - self: "/apiContact/419d2077-493f-406e-8f82-c6147c288af4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:12:06+00:00", - dateModified: "2022-11-23T11:12:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e7a91fab-a73e-48da-bc7b-2e2b30048cc5", - self: "/apiContact/e7a91fab-a73e-48da-bc7b-2e2b30048cc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:06:28+00:00", - dateModified: "2022-11-23T13:06:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ef3b230f-53dd-401f-b780-fb5dac0a240c", - self: "/apiContact/ef3b230f-53dd-401f-b780-fb5dac0a240c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:46:04+00:00", - dateModified: "2022-11-23T13:46:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "abcd42d8-2f23-4735-88ae-39b91c52488d", - self: "/apiContact/abcd42d8-2f23-4735-88ae-39b91c52488d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:09:22+00:00", - dateModified: "2022-11-23T15:09:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "48316a5f-8708-4323-89e8-091af98ead5e", - self: "/apiContact/48316a5f-8708-4323-89e8-091af98ead5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:05:50+00:00", - dateModified: "2022-11-23T17:05:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "64dbc275-0cbc-4c18-a8fc-309dacb8343d", - self: "/apiContact/64dbc275-0cbc-4c18-a8fc-309dacb8343d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:06:00+00:00", - dateModified: "2022-11-23T19:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a193153-9b38-4da0-8acc-6fe0fff11703", - self: "/apiContact/4a193153-9b38-4da0-8acc-6fe0fff11703", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:07:27+00:00", - dateModified: "2022-11-23T21:07:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4a3a0f2-1e6a-4f51-aefe-e5eddf513055", - self: "/apiContact/e4a3a0f2-1e6a-4f51-aefe-e5eddf513055", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:03:37+00:00", - dateModified: "2022-11-23T23:03:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ba55d88a-8d57-4ab1-89bc-cf10d57d45d7", - self: "/apiContact/ba55d88a-8d57-4ab1-89bc-cf10d57d45d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:02:46+00:00", - dateModified: "2022-11-24T01:02:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9e25bf35-0432-422e-b134-24abb5a342ec", - self: "/apiContact/9e25bf35-0432-422e-b134-24abb5a342ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:02:55+00:00", - dateModified: "2022-11-24T03:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "63b50fb4-fd45-47e5-aea6-7c2013f6a08e", - self: "/apiContact/63b50fb4-fd45-47e5-aea6-7c2013f6a08e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:02:55+00:00", - dateModified: "2022-11-24T05:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0df3f24c-f8f1-445f-9ead-48ea4624424b", - self: "/apiContact/0df3f24c-f8f1-445f-9ead-48ea4624424b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:05:46+00:00", - dateModified: "2022-11-24T07:05:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb867e1a-2048-401d-b4d9-1883ae086068", - self: "/apiContact/bb867e1a-2048-401d-b4d9-1883ae086068", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:03:52+00:00", - dateModified: "2022-11-24T09:03:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "854b7aef-b4f5-4df8-94f4-588de0780f40", - self: "/apiContact/854b7aef-b4f5-4df8-94f4-588de0780f40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:03:31+00:00", - dateModified: "2022-11-24T11:03:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1b6941a9-2efc-4b88-89d7-605875331aaf", - self: "/apiContact/1b6941a9-2efc-4b88-89d7-605875331aaf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T10:44:42+00:00", - dateModified: "2022-12-09T10:44:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d67203c9-01ec-436e-b78e-b2a2c9a7996b", - self: "/apiContact/d67203c9-01ec-436e-b78e-b2a2c9a7996b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:38:18+00:00", - dateModified: "2022-12-09T12:38:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d1f18aa6-0a2e-4dcd-9608-ce7a19848f22", - self: "/apiContact/d1f18aa6-0a2e-4dcd-9608-ce7a19848f22", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:37:23+00:00", - dateModified: "2022-12-10T14:37:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ae8cb9d5-4304-4577-9089-757b05186122", - self: "/apiContact/ae8cb9d5-4304-4577-9089-757b05186122", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:40:39+00:00", - dateModified: "2022-12-11T14:40:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a2a914bd-1c33-4ce1-8eb5-3b7381dbba6d", - self: "/apiContact/a2a914bd-1c33-4ce1-8eb5-3b7381dbba6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:42:41+00:00", - dateModified: "2022-12-12T14:42:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e3f89381-8c25-433a-a312-e44532452cae", - self: "/apiContact/e3f89381-8c25-433a-a312-e44532452cae", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-13T14:31:56+00:00", - dateModified: "2022-12-13T14:31:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "c6c04c91-027c-4041-8c19-1a7c084b4a97", - self: "/apiRating/c6c04c91-027c-4041-8c19-1a7c084b4a97", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:41:33+00:00", - dateModified: "2022-10-31T15:42:29+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Agendaservice rated", - "The url: https://github.com/ConductionNL/agendaservice rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Agendaservice", - 'Het "agenda" component is ontwikkeld voor de gemeente Utrecht en heeft als doel een agenda te koppelen aan objecten uit andere componenten uit commonground. Dit stelt je in staat om aan deze objecten', - " afspraken en beschikbaarheid te kunnen beheren. rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "09464c6a-6d6e-4138-83d4-84159b7be961", - }, - { - _id: "1971e280-af7f-4389-b71e-090f45d2cf6f", - _self: { - id: "1971e280-af7f-4389-b71e-090f45d2cf6f", - self: "/api/oc/components/1971e280-af7f-4389-b71e-090f45d2cf6f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:17+00:00", - dateModified: "2022-12-13T14:30:45+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "21d441a5-dda4-4009-9a4a-35d5a1aca949", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "19", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "1c1dee3f-eff5-4bdb-a156-f26fb132aa92", - self: "/apiRepository/1c1dee3f-eff5-4bdb-a156-f26fb132aa92", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:13:18+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "d52be6a0-e7dc-457f-8562-2292fe945f83", - self: "/api/oc/organizations/d52be6a0-e7dc-457f-8562-2292fe945f83", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:23:50+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "51688dad-144f-4aaf-8b25-5c8a6046fe14", - "5d323871-4a09-4722-a1eb-ee7954e3b302", - "819784ea-02ba-4a20-ab24-12f63f30e136", - "42b8bf3b-a193-45ec-be95-ba114179f6e6", - "be0b7b4f-55f1-4703-b767-014c637ffbde", - "3d01ad8a-6e54-4e44-91da-554ec6a69576", - "fc0d991a-2f77-48d8-a986-e038071bc483", - "863abf05-aa92-4f94-b1ad-283307264b35", - "effdf6dc-a6db-44b5-92db-1c155a2208f9", - "70b7506a-65c6-434c-8729-e1f7ffaf66cc", - "3d0a002b-46af-480b-bd3e-92e64665677f", - "3c6f941a-77b8-45e6-8496-29294a997ae2", - "9c80a7c0-973d-41b7-8f81-f9b68bcfce5f", - "148a03cb-abd2-4b86-b72f-7a758821f064", - "4dee92e9-5bbb-43c5-aeaf-4e635daaf4d1", - "e462d228-97e8-4134-bf6c-fdad81d7c711", - "acd20e11-d8c6-43cb-817c-28209c5be2d7", - "6878ff38-4d42-4b03-86cf-700cce2916d2", - "6481b4c2-59d1-4013-9a05-05f5251d3cf7", - "5876d220-5cf4-48a6-b453-236e9e8bc39c", - "c288b95d-107e-455a-85e2-ebf426767d89", - "fb36af49-81a2-4949-b97a-2e4b168efe29", - "e7cc6458-5a3c-4631-b88f-1deb50daba3a", - "4b57b5c2-4746-4dc3-9078-4ac1206d19d5", - "2d909d26-0a36-4585-8049-a7e3ea64ae5e", - "e6576875-3c67-4cc3-9847-08fc8ebc70a0", - "79ef02b0-9861-4d3e-91c4-d3b217cd4938", - "db9a22bf-7051-4b90-a677-0019c2639f7a", - "255e337d-8361-4210-80f0-a3725367cf5b", - "e4654128-4382-4719-b70f-e2e983656bee", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "adresservice", - url: "https://github.com/ConductionNL/adresservice", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-11-05T08:30:24Z", - stars: 0, - fork_count: 1, - issue_open_count: 6, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "86064", "70931", "35415", "11926", "3898", "2383", "2038"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "d52be6a0-e7dc-457f-8562-2292fe945f83", - self: "/api/oc/organizations/d52be6a0-e7dc-457f-8562-2292fe945f83", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:23:50+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "51688dad-144f-4aaf-8b25-5c8a6046fe14", - "5d323871-4a09-4722-a1eb-ee7954e3b302", - "819784ea-02ba-4a20-ab24-12f63f30e136", - "42b8bf3b-a193-45ec-be95-ba114179f6e6", - "be0b7b4f-55f1-4703-b767-014c637ffbde", - "3d01ad8a-6e54-4e44-91da-554ec6a69576", - "fc0d991a-2f77-48d8-a986-e038071bc483", - "863abf05-aa92-4f94-b1ad-283307264b35", - "effdf6dc-a6db-44b5-92db-1c155a2208f9", - "70b7506a-65c6-434c-8729-e1f7ffaf66cc", - "3d0a002b-46af-480b-bd3e-92e64665677f", - "3c6f941a-77b8-45e6-8496-29294a997ae2", - "9c80a7c0-973d-41b7-8f81-f9b68bcfce5f", - "148a03cb-abd2-4b86-b72f-7a758821f064", - "4dee92e9-5bbb-43c5-aeaf-4e635daaf4d1", - "e462d228-97e8-4134-bf6c-fdad81d7c711", - "acd20e11-d8c6-43cb-817c-28209c5be2d7", - "6878ff38-4d42-4b03-86cf-700cce2916d2", - "6481b4c2-59d1-4013-9a05-05f5251d3cf7", - "5876d220-5cf4-48a6-b453-236e9e8bc39c", - "c288b95d-107e-455a-85e2-ebf426767d89", - "fb36af49-81a2-4949-b97a-2e4b168efe29", - "e7cc6458-5a3c-4631-b88f-1deb50daba3a", - "4b57b5c2-4746-4dc3-9078-4ac1206d19d5", - "2d909d26-0a36-4585-8049-a7e3ea64ae5e", - "e6576875-3c67-4cc3-9847-08fc8ebc70a0", - "79ef02b0-9861-4d3e-91c4-d3b217cd4938", - "db9a22bf-7051-4b90-a677-0019c2639f7a", - "255e337d-8361-4210-80f0-a3725367cf5b", - "e4654128-4382-4719-b70f-e2e983656bee", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "1637acf4-7a37-4f21-a98a-9514624c87af", - self: "/apiDescription/1637acf4-7a37-4f21-a98a-9514624c87af", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:13:18+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: "Adresservice,Dit component verrijkt huisnummer en postcodes bevragingen met BAG gegevens.", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "b082fa16-d48f-4ac4-be52-dc174e4e2281", - self: "/apiComponentlegalEntity/b082fa16-d48f-4ac4-be52-dc174e4e2281", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:13:18+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "7fe7f8be-4cbe-478f-8052-d61c9f846d2b", - self: "/api/oc/organizations/7fe7f8be-4cbe-478f-8052-d61c9f846d2b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "7fe7f8be-4cbe-478f-8052-d61c9f846d2b", - self: "/api/oc/organizations/7fe7f8be-4cbe-478f-8052-d61c9f846d2b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "bbef1c9e-5744-45f2-a00f-ad2426490233", - self: "/apiComponentnlEntity/bbef1c9e-5744-45f2-a00f-ad2426490233", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:13:18+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "fe6c4b4a-7b85-4d11-964a-3e9ff7c56ee0", - self: "/apiComponentnlEntitycommongroundEntity/fe6c4b4a-7b85-4d11-964a-3e9ff7c56ee0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - embedded: { - commonground: { - _self: { - id: "fe6c4b4a-7b85-4d11-964a-3e9ff7c56ee0", - self: "/apiComponentnlEntitycommongroundEntity/fe6c4b4a-7b85-4d11-964a-3e9ff7c56ee0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - }, - }, - maintenance: { - _self: { - id: "e889ee4b-fecd-4cdd-a567-6532e32cc716", - self: "/apiComponentmaintenanceEntity/e889ee4b-fecd-4cdd-a567-6532e32cc716", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:19+00:00", - dateModified: "2022-12-13T14:29:28+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "a3d10da5-0b6a-4ab5-bc99-1b8f893884a5", - self: "/apiContact/a3d10da5-0b6a-4ab5-bc99-1b8f893884a5", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:13:19+00:00", - dateModified: "2022-10-28T15:13:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31be5240-68fb-493b-8c3f-af6fc839e3c7", - self: "/apiContact/31be5240-68fb-493b-8c3f-af6fc839e3c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:35+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5b72c1a-367a-47d2-8bef-df6a304337a1", - self: "/apiContact/b5b72c1a-367a-47d2-8bef-df6a304337a1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:38+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b190893-b1b9-4d39-859e-18f232206567", - self: "/apiContact/9b190893-b1b9-4d39-859e-18f232206567", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "825b0f51-47b9-4771-bd81-afca87ec9f1d", - self: "/apiContact/825b0f51-47b9-4771-bd81-afca87ec9f1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "99774808-6d46-4db1-bfab-95fe30aa2067", - self: "/apiContact/99774808-6d46-4db1-bfab-95fe30aa2067", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:02:01+00:00", - dateModified: "2022-10-29T00:02:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c79a6c0e-34b7-4275-9faa-096e3b51c6ec", - self: "/apiContact/c79a6c0e-34b7-4275-9faa-096e3b51c6ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:06:00+00:00", - dateModified: "2022-10-30T00:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bbba0df9-b8ea-4eb0-967e-222590ec6b9a", - self: "/apiContact/bbba0df9-b8ea-4eb0-967e-222590ec6b9a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:06:42+00:00", - dateModified: "2022-10-31T00:06:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eff66aa2-07c7-439f-af6a-1b5eadaf78cd", - self: "/apiContact/eff66aa2-07c7-439f-af6a-1b5eadaf78cd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:42:20+00:00", - dateModified: "2022-10-31T13:42:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aaaf7508-bc41-4be2-b457-a660134b303d", - self: "/apiContact/aaaf7508-bc41-4be2-b457-a660134b303d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:17:17+00:00", - dateModified: "2022-11-01T13:17:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cb5f310e-e7b9-4ba2-b98c-8c2a73eb075e", - self: "/apiContact/cb5f310e-e7b9-4ba2-b98c-8c2a73eb075e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T13:55:46+00:00", - dateModified: "2022-11-02T13:55:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ac82251c-26ac-4392-b6ac-d4073ccef9c5", - self: "/apiContact/ac82251c-26ac-4392-b6ac-d4073ccef9c5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:53:40+00:00", - dateModified: "2022-11-03T13:53:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c072dbfa-7148-4cbd-b40c-ce660f4bd4b7", - self: "/apiContact/c072dbfa-7148-4cbd-b40c-ce660f4bd4b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T14:51:43+00:00", - dateModified: "2022-11-04T14:51:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6ba15b4-e974-4d3a-a789-fb9af0ce95e2", - self: "/apiContact/f6ba15b4-e974-4d3a-a789-fb9af0ce95e2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:13:49+00:00", - dateModified: "2022-11-10T10:13:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9c63ef56-f155-4322-9568-198d2000ccc3", - self: "/apiContact/9c63ef56-f155-4322-9568-198d2000ccc3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:06:33+00:00", - dateModified: "2022-11-10T13:06:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00beac27-218c-49f8-9ea4-c1e82aac7327", - self: "/apiContact/00beac27-218c-49f8-9ea4-c1e82aac7327", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:46:30+00:00", - dateModified: "2022-11-21T12:46:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0b2c2bf5-2b90-4cad-bebd-6b0dda762b14", - self: "/apiContact/0b2c2bf5-2b90-4cad-bebd-6b0dda762b14", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:48:26+00:00", - dateModified: "2022-11-21T12:48:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88bf8019-254c-4e08-beb8-c25f6b4102cc", - self: "/apiContact/88bf8019-254c-4e08-beb8-c25f6b4102cc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:53+00:00", - dateModified: "2022-11-21T12:58:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "46aa378c-2bbb-4c54-9698-6101da445638", - self: "/apiContact/46aa378c-2bbb-4c54-9698-6101da445638", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:02:42+00:00", - dateModified: "2022-11-22T15:02:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72cd3ff9-aeca-4f62-96d2-5e102052aa25", - self: "/apiContact/72cd3ff9-aeca-4f62-96d2-5e102052aa25", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:56:17+00:00", - dateModified: "2022-11-22T15:56:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b77b1657-0484-4505-a73c-5ccc8b7b21bd", - self: "/apiContact/b77b1657-0484-4505-a73c-5ccc8b7b21bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:06:31+00:00", - dateModified: "2022-11-22T16:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7489fc68-5c7c-4b83-a1c1-a4c4d6e32f8d", - self: "/apiContact/7489fc68-5c7c-4b83-a1c1-a4c4d6e32f8d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:05:56+00:00", - dateModified: "2022-11-22T17:05:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a50e5555-88bc-431a-a752-13feec360d6d", - self: "/apiContact/a50e5555-88bc-431a-a752-13feec360d6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:01:20+00:00", - dateModified: "2022-11-22T19:01:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b57ca039-ab7e-47c8-b68a-ea108004d117", - self: "/apiContact/b57ca039-ab7e-47c8-b68a-ea108004d117", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:02:16+00:00", - dateModified: "2022-11-22T21:02:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4d6c194d-b473-4c55-8c98-b213aebb0715", - self: "/apiContact/4d6c194d-b473-4c55-8c98-b213aebb0715", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:01:50+00:00", - dateModified: "2022-11-22T23:01:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2f5bf741-745f-4ca8-af82-656ef622211a", - self: "/apiContact/2f5bf741-745f-4ca8-af82-656ef622211a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:01:46+00:00", - dateModified: "2022-11-23T01:01:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c2637001-acc5-4fd0-afd8-3b420082b1cf", - self: "/apiContact/c2637001-acc5-4fd0-afd8-3b420082b1cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:01:59+00:00", - dateModified: "2022-11-23T03:01:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d32ed268-12fd-4e52-8d90-df60d92652b4", - self: "/apiContact/d32ed268-12fd-4e52-8d90-df60d92652b4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:01:52+00:00", - dateModified: "2022-11-23T05:01:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ef194996-80bb-4aca-8928-3c95725eb064", - self: "/apiContact/ef194996-80bb-4aca-8928-3c95725eb064", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:02:08+00:00", - dateModified: "2022-11-23T07:02:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cd9ef279-31ec-4432-9c1c-a1c823785951", - self: "/apiContact/cd9ef279-31ec-4432-9c1c-a1c823785951", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:16:07+00:00", - dateModified: "2022-11-23T08:16:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a790082b-75fe-4358-aec9-412d720ce815", - self: "/apiContact/a790082b-75fe-4358-aec9-412d720ce815", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:04:10+00:00", - dateModified: "2022-11-23T09:04:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cff30753-d496-4133-b5cc-967019994207", - self: "/apiContact/cff30753-d496-4133-b5cc-967019994207", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:52:57+00:00", - dateModified: "2022-11-23T09:52:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc6e2932-5a5e-4eb1-937d-f4d7462b0689", - self: "/apiContact/cc6e2932-5a5e-4eb1-937d-f4d7462b0689", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:08:53+00:00", - dateModified: "2022-11-23T11:08:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "80fda071-9112-43a4-a414-e34a04ba9e4e", - self: "/apiContact/80fda071-9112-43a4-a414-e34a04ba9e4e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:04:38+00:00", - dateModified: "2022-11-23T13:04:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9631ba95-4094-4027-8114-60f23b1c1ea6", - self: "/apiContact/9631ba95-4094-4027-8114-60f23b1c1ea6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:43:45+00:00", - dateModified: "2022-11-23T13:43:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3f921a05-9427-4ddf-b1d5-cc5b09f158ff", - self: "/apiContact/3f921a05-9427-4ddf-b1d5-cc5b09f158ff", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:06:31+00:00", - dateModified: "2022-11-23T15:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7b3eda67-57bb-4f98-913c-c9e88dc1a3c0", - self: "/apiContact/7b3eda67-57bb-4f98-913c-c9e88dc1a3c0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:03:47+00:00", - dateModified: "2022-11-23T17:03:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "30ae6bb7-9cec-4f75-b582-81cee9e4c5f4", - self: "/apiContact/30ae6bb7-9cec-4f75-b582-81cee9e4c5f4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:04:11+00:00", - dateModified: "2022-11-23T19:04:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f123fa1-c13e-42d3-a329-e1133c6e0558", - self: "/apiContact/4f123fa1-c13e-42d3-a329-e1133c6e0558", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:05:36+00:00", - dateModified: "2022-11-23T21:05:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "24f16a7a-caf6-4e7f-838d-ebeb5c9caced", - self: "/apiContact/24f16a7a-caf6-4e7f-838d-ebeb5c9caced", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:02:05+00:00", - dateModified: "2022-11-23T23:02:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45f77606-d202-47ba-b29a-ee3a06c98cb9", - self: "/apiContact/45f77606-d202-47ba-b29a-ee3a06c98cb9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:01:24+00:00", - dateModified: "2022-11-24T01:01:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "695757f2-efbc-4327-a57e-8ffd879b1143", - self: "/apiContact/695757f2-efbc-4327-a57e-8ffd879b1143", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:01:14+00:00", - dateModified: "2022-11-24T03:01:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5aa15a5b-f775-46a1-a18d-5dfbf4bca878", - self: "/apiContact/5aa15a5b-f775-46a1-a18d-5dfbf4bca878", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:01:23+00:00", - dateModified: "2022-11-24T05:01:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9af37d73-604b-4f83-9afd-1c98d6aa9360", - self: "/apiContact/9af37d73-604b-4f83-9afd-1c98d6aa9360", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:03:52+00:00", - dateModified: "2022-11-24T07:03:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1e74d527-bd51-4a6c-84da-7dac7f090d12", - self: "/apiContact/1e74d527-bd51-4a6c-84da-7dac7f090d12", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:02:21+00:00", - dateModified: "2022-11-24T09:02:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a43a2ff5-2a69-49e3-8682-b5264c81623a", - self: "/apiContact/a43a2ff5-2a69-49e3-8682-b5264c81623a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:01:58+00:00", - dateModified: "2022-11-24T11:01:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a1bfc9d8-82fc-40f5-b3a3-df2e6f55adf7", - self: "/apiContact/a1bfc9d8-82fc-40f5-b3a3-df2e6f55adf7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T10:43:08+00:00", - dateModified: "2022-12-09T10:43:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7cf3286c-0e29-4abe-bae3-6571727dde51", - self: "/apiContact/7cf3286c-0e29-4abe-bae3-6571727dde51", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:37:28+00:00", - dateModified: "2022-12-09T12:37:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d686e652-f2c7-4cf8-85b2-347f75af0539", - self: "/apiContact/d686e652-f2c7-4cf8-85b2-347f75af0539", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:36:24+00:00", - dateModified: "2022-12-10T14:36:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b4e48c4a-7c75-4e6c-a351-919a092bc7d7", - self: "/apiContact/b4e48c4a-7c75-4e6c-a351-919a092bc7d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:39:51+00:00", - dateModified: "2022-12-11T14:39:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45023a49-e105-4b02-b69c-ec49512a32f5", - self: "/apiContact/45023a49-e105-4b02-b69c-ec49512a32f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:41:57+00:00", - dateModified: "2022-12-12T14:41:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4c453d03-798d-4ae2-b988-69a5bd44fd96", - self: "/apiContact/4c453d03-798d-4ae2-b988-69a5bd44fd96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-13T14:28:59+00:00", - dateModified: "2022-12-13T14:28:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "a3d10da5-0b6a-4ab5-bc99-1b8f893884a5", - self: "/apiContact/a3d10da5-0b6a-4ab5-bc99-1b8f893884a5", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:13:19+00:00", - dateModified: "2022-10-28T15:13:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31be5240-68fb-493b-8c3f-af6fc839e3c7", - self: "/apiContact/31be5240-68fb-493b-8c3f-af6fc839e3c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:35+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5b72c1a-367a-47d2-8bef-df6a304337a1", - self: "/apiContact/b5b72c1a-367a-47d2-8bef-df6a304337a1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:38+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b190893-b1b9-4d39-859e-18f232206567", - self: "/apiContact/9b190893-b1b9-4d39-859e-18f232206567", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "825b0f51-47b9-4771-bd81-afca87ec9f1d", - self: "/apiContact/825b0f51-47b9-4771-bd81-afca87ec9f1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "99774808-6d46-4db1-bfab-95fe30aa2067", - self: "/apiContact/99774808-6d46-4db1-bfab-95fe30aa2067", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:02:01+00:00", - dateModified: "2022-10-29T00:02:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c79a6c0e-34b7-4275-9faa-096e3b51c6ec", - self: "/apiContact/c79a6c0e-34b7-4275-9faa-096e3b51c6ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:06:00+00:00", - dateModified: "2022-10-30T00:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bbba0df9-b8ea-4eb0-967e-222590ec6b9a", - self: "/apiContact/bbba0df9-b8ea-4eb0-967e-222590ec6b9a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:06:42+00:00", - dateModified: "2022-10-31T00:06:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eff66aa2-07c7-439f-af6a-1b5eadaf78cd", - self: "/apiContact/eff66aa2-07c7-439f-af6a-1b5eadaf78cd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:42:20+00:00", - dateModified: "2022-10-31T13:42:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aaaf7508-bc41-4be2-b457-a660134b303d", - self: "/apiContact/aaaf7508-bc41-4be2-b457-a660134b303d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:17:17+00:00", - dateModified: "2022-11-01T13:17:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cb5f310e-e7b9-4ba2-b98c-8c2a73eb075e", - self: "/apiContact/cb5f310e-e7b9-4ba2-b98c-8c2a73eb075e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T13:55:46+00:00", - dateModified: "2022-11-02T13:55:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ac82251c-26ac-4392-b6ac-d4073ccef9c5", - self: "/apiContact/ac82251c-26ac-4392-b6ac-d4073ccef9c5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:53:40+00:00", - dateModified: "2022-11-03T13:53:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c072dbfa-7148-4cbd-b40c-ce660f4bd4b7", - self: "/apiContact/c072dbfa-7148-4cbd-b40c-ce660f4bd4b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T14:51:43+00:00", - dateModified: "2022-11-04T14:51:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6ba15b4-e974-4d3a-a789-fb9af0ce95e2", - self: "/apiContact/f6ba15b4-e974-4d3a-a789-fb9af0ce95e2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:13:49+00:00", - dateModified: "2022-11-10T10:13:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9c63ef56-f155-4322-9568-198d2000ccc3", - self: "/apiContact/9c63ef56-f155-4322-9568-198d2000ccc3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:06:33+00:00", - dateModified: "2022-11-10T13:06:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00beac27-218c-49f8-9ea4-c1e82aac7327", - self: "/apiContact/00beac27-218c-49f8-9ea4-c1e82aac7327", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:46:30+00:00", - dateModified: "2022-11-21T12:46:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0b2c2bf5-2b90-4cad-bebd-6b0dda762b14", - self: "/apiContact/0b2c2bf5-2b90-4cad-bebd-6b0dda762b14", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:48:26+00:00", - dateModified: "2022-11-21T12:48:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88bf8019-254c-4e08-beb8-c25f6b4102cc", - self: "/apiContact/88bf8019-254c-4e08-beb8-c25f6b4102cc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:53+00:00", - dateModified: "2022-11-21T12:58:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "46aa378c-2bbb-4c54-9698-6101da445638", - self: "/apiContact/46aa378c-2bbb-4c54-9698-6101da445638", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:02:42+00:00", - dateModified: "2022-11-22T15:02:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72cd3ff9-aeca-4f62-96d2-5e102052aa25", - self: "/apiContact/72cd3ff9-aeca-4f62-96d2-5e102052aa25", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:56:17+00:00", - dateModified: "2022-11-22T15:56:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b77b1657-0484-4505-a73c-5ccc8b7b21bd", - self: "/apiContact/b77b1657-0484-4505-a73c-5ccc8b7b21bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:06:31+00:00", - dateModified: "2022-11-22T16:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7489fc68-5c7c-4b83-a1c1-a4c4d6e32f8d", - self: "/apiContact/7489fc68-5c7c-4b83-a1c1-a4c4d6e32f8d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:05:56+00:00", - dateModified: "2022-11-22T17:05:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a50e5555-88bc-431a-a752-13feec360d6d", - self: "/apiContact/a50e5555-88bc-431a-a752-13feec360d6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:01:20+00:00", - dateModified: "2022-11-22T19:01:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b57ca039-ab7e-47c8-b68a-ea108004d117", - self: "/apiContact/b57ca039-ab7e-47c8-b68a-ea108004d117", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:02:16+00:00", - dateModified: "2022-11-22T21:02:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4d6c194d-b473-4c55-8c98-b213aebb0715", - self: "/apiContact/4d6c194d-b473-4c55-8c98-b213aebb0715", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:01:50+00:00", - dateModified: "2022-11-22T23:01:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2f5bf741-745f-4ca8-af82-656ef622211a", - self: "/apiContact/2f5bf741-745f-4ca8-af82-656ef622211a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:01:46+00:00", - dateModified: "2022-11-23T01:01:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c2637001-acc5-4fd0-afd8-3b420082b1cf", - self: "/apiContact/c2637001-acc5-4fd0-afd8-3b420082b1cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:01:59+00:00", - dateModified: "2022-11-23T03:01:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d32ed268-12fd-4e52-8d90-df60d92652b4", - self: "/apiContact/d32ed268-12fd-4e52-8d90-df60d92652b4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:01:52+00:00", - dateModified: "2022-11-23T05:01:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ef194996-80bb-4aca-8928-3c95725eb064", - self: "/apiContact/ef194996-80bb-4aca-8928-3c95725eb064", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:02:08+00:00", - dateModified: "2022-11-23T07:02:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cd9ef279-31ec-4432-9c1c-a1c823785951", - self: "/apiContact/cd9ef279-31ec-4432-9c1c-a1c823785951", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:16:07+00:00", - dateModified: "2022-11-23T08:16:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a790082b-75fe-4358-aec9-412d720ce815", - self: "/apiContact/a790082b-75fe-4358-aec9-412d720ce815", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:04:10+00:00", - dateModified: "2022-11-23T09:04:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cff30753-d496-4133-b5cc-967019994207", - self: "/apiContact/cff30753-d496-4133-b5cc-967019994207", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:52:57+00:00", - dateModified: "2022-11-23T09:52:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc6e2932-5a5e-4eb1-937d-f4d7462b0689", - self: "/apiContact/cc6e2932-5a5e-4eb1-937d-f4d7462b0689", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:08:53+00:00", - dateModified: "2022-11-23T11:08:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "80fda071-9112-43a4-a414-e34a04ba9e4e", - self: "/apiContact/80fda071-9112-43a4-a414-e34a04ba9e4e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:04:38+00:00", - dateModified: "2022-11-23T13:04:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9631ba95-4094-4027-8114-60f23b1c1ea6", - self: "/apiContact/9631ba95-4094-4027-8114-60f23b1c1ea6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:43:45+00:00", - dateModified: "2022-11-23T13:43:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3f921a05-9427-4ddf-b1d5-cc5b09f158ff", - self: "/apiContact/3f921a05-9427-4ddf-b1d5-cc5b09f158ff", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:06:31+00:00", - dateModified: "2022-11-23T15:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7b3eda67-57bb-4f98-913c-c9e88dc1a3c0", - self: "/apiContact/7b3eda67-57bb-4f98-913c-c9e88dc1a3c0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:03:47+00:00", - dateModified: "2022-11-23T17:03:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "30ae6bb7-9cec-4f75-b582-81cee9e4c5f4", - self: "/apiContact/30ae6bb7-9cec-4f75-b582-81cee9e4c5f4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:04:11+00:00", - dateModified: "2022-11-23T19:04:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f123fa1-c13e-42d3-a329-e1133c6e0558", - self: "/apiContact/4f123fa1-c13e-42d3-a329-e1133c6e0558", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:05:36+00:00", - dateModified: "2022-11-23T21:05:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "24f16a7a-caf6-4e7f-838d-ebeb5c9caced", - self: "/apiContact/24f16a7a-caf6-4e7f-838d-ebeb5c9caced", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:02:05+00:00", - dateModified: "2022-11-23T23:02:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45f77606-d202-47ba-b29a-ee3a06c98cb9", - self: "/apiContact/45f77606-d202-47ba-b29a-ee3a06c98cb9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:01:24+00:00", - dateModified: "2022-11-24T01:01:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "695757f2-efbc-4327-a57e-8ffd879b1143", - self: "/apiContact/695757f2-efbc-4327-a57e-8ffd879b1143", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:01:14+00:00", - dateModified: "2022-11-24T03:01:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5aa15a5b-f775-46a1-a18d-5dfbf4bca878", - self: "/apiContact/5aa15a5b-f775-46a1-a18d-5dfbf4bca878", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:01:23+00:00", - dateModified: "2022-11-24T05:01:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9af37d73-604b-4f83-9afd-1c98d6aa9360", - self: "/apiContact/9af37d73-604b-4f83-9afd-1c98d6aa9360", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:03:52+00:00", - dateModified: "2022-11-24T07:03:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1e74d527-bd51-4a6c-84da-7dac7f090d12", - self: "/apiContact/1e74d527-bd51-4a6c-84da-7dac7f090d12", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:02:21+00:00", - dateModified: "2022-11-24T09:02:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a43a2ff5-2a69-49e3-8682-b5264c81623a", - self: "/apiContact/a43a2ff5-2a69-49e3-8682-b5264c81623a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:01:58+00:00", - dateModified: "2022-11-24T11:01:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a1bfc9d8-82fc-40f5-b3a3-df2e6f55adf7", - self: "/apiContact/a1bfc9d8-82fc-40f5-b3a3-df2e6f55adf7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T10:43:08+00:00", - dateModified: "2022-12-09T10:43:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7cf3286c-0e29-4abe-bae3-6571727dde51", - self: "/apiContact/7cf3286c-0e29-4abe-bae3-6571727dde51", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:37:28+00:00", - dateModified: "2022-12-09T12:37:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d686e652-f2c7-4cf8-85b2-347f75af0539", - self: "/apiContact/d686e652-f2c7-4cf8-85b2-347f75af0539", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:36:24+00:00", - dateModified: "2022-12-10T14:36:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b4e48c4a-7c75-4e6c-a351-919a092bc7d7", - self: "/apiContact/b4e48c4a-7c75-4e6c-a351-919a092bc7d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:39:51+00:00", - dateModified: "2022-12-11T14:39:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45023a49-e105-4b02-b69c-ec49512a32f5", - self: "/apiContact/45023a49-e105-4b02-b69c-ec49512a32f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:41:57+00:00", - dateModified: "2022-12-12T14:41:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4c453d03-798d-4ae2-b988-69a5bd44fd96", - self: "/apiContact/4c453d03-798d-4ae2-b988-69a5bd44fd96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-13T14:28:59+00:00", - dateModified: "2022-12-13T14:28:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "f834458e-982f-41fb-92d7-717a365a383a", - self: "/apiRating/f834458e-982f-41fb-92d7-717a365a383a", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:41:31+00:00", - dateModified: "2022-10-31T15:42:29+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Adresservice rated", - "The url: https://github.com/ConductionNL/adresservice rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Adresservice", - "Dit component verrijkt huisnummer en postcodes bevragingen met BAG gegevens. rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "Adresservice", - embedded: { - url: { - _self: { - id: "1c1dee3f-eff5-4bdb-a156-f26fb132aa92", - self: "/apiRepository/1c1dee3f-eff5-4bdb-a156-f26fb132aa92", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:13:18+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "d52be6a0-e7dc-457f-8562-2292fe945f83", - self: "/api/oc/organizations/d52be6a0-e7dc-457f-8562-2292fe945f83", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:23:50+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "51688dad-144f-4aaf-8b25-5c8a6046fe14", - "5d323871-4a09-4722-a1eb-ee7954e3b302", - "819784ea-02ba-4a20-ab24-12f63f30e136", - "42b8bf3b-a193-45ec-be95-ba114179f6e6", - "be0b7b4f-55f1-4703-b767-014c637ffbde", - "3d01ad8a-6e54-4e44-91da-554ec6a69576", - "fc0d991a-2f77-48d8-a986-e038071bc483", - "863abf05-aa92-4f94-b1ad-283307264b35", - "effdf6dc-a6db-44b5-92db-1c155a2208f9", - "70b7506a-65c6-434c-8729-e1f7ffaf66cc", - "3d0a002b-46af-480b-bd3e-92e64665677f", - "3c6f941a-77b8-45e6-8496-29294a997ae2", - "9c80a7c0-973d-41b7-8f81-f9b68bcfce5f", - "148a03cb-abd2-4b86-b72f-7a758821f064", - "4dee92e9-5bbb-43c5-aeaf-4e635daaf4d1", - "e462d228-97e8-4134-bf6c-fdad81d7c711", - "acd20e11-d8c6-43cb-817c-28209c5be2d7", - "6878ff38-4d42-4b03-86cf-700cce2916d2", - "6481b4c2-59d1-4013-9a05-05f5251d3cf7", - "5876d220-5cf4-48a6-b453-236e9e8bc39c", - "c288b95d-107e-455a-85e2-ebf426767d89", - "fb36af49-81a2-4949-b97a-2e4b168efe29", - "e7cc6458-5a3c-4631-b88f-1deb50daba3a", - "4b57b5c2-4746-4dc3-9078-4ac1206d19d5", - "2d909d26-0a36-4585-8049-a7e3ea64ae5e", - "e6576875-3c67-4cc3-9847-08fc8ebc70a0", - "79ef02b0-9861-4d3e-91c4-d3b217cd4938", - "db9a22bf-7051-4b90-a677-0019c2639f7a", - "255e337d-8361-4210-80f0-a3725367cf5b", - "e4654128-4382-4719-b70f-e2e983656bee", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "adresservice", - url: "https://github.com/ConductionNL/adresservice", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-11-05T08:30:24Z", - stars: 0, - fork_count: 1, - issue_open_count: 6, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "86064", "70931", "35415", "11926", "3898", "2383", "2038"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "d52be6a0-e7dc-457f-8562-2292fe945f83", - self: "/api/oc/organizations/d52be6a0-e7dc-457f-8562-2292fe945f83", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:23:50+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "51688dad-144f-4aaf-8b25-5c8a6046fe14", - "5d323871-4a09-4722-a1eb-ee7954e3b302", - "819784ea-02ba-4a20-ab24-12f63f30e136", - "42b8bf3b-a193-45ec-be95-ba114179f6e6", - "be0b7b4f-55f1-4703-b767-014c637ffbde", - "3d01ad8a-6e54-4e44-91da-554ec6a69576", - "fc0d991a-2f77-48d8-a986-e038071bc483", - "863abf05-aa92-4f94-b1ad-283307264b35", - "effdf6dc-a6db-44b5-92db-1c155a2208f9", - "70b7506a-65c6-434c-8729-e1f7ffaf66cc", - "3d0a002b-46af-480b-bd3e-92e64665677f", - "3c6f941a-77b8-45e6-8496-29294a997ae2", - "9c80a7c0-973d-41b7-8f81-f9b68bcfce5f", - "148a03cb-abd2-4b86-b72f-7a758821f064", - "4dee92e9-5bbb-43c5-aeaf-4e635daaf4d1", - "e462d228-97e8-4134-bf6c-fdad81d7c711", - "acd20e11-d8c6-43cb-817c-28209c5be2d7", - "6878ff38-4d42-4b03-86cf-700cce2916d2", - "6481b4c2-59d1-4013-9a05-05f5251d3cf7", - "5876d220-5cf4-48a6-b453-236e9e8bc39c", - "c288b95d-107e-455a-85e2-ebf426767d89", - "fb36af49-81a2-4949-b97a-2e4b168efe29", - "e7cc6458-5a3c-4631-b88f-1deb50daba3a", - "4b57b5c2-4746-4dc3-9078-4ac1206d19d5", - "2d909d26-0a36-4585-8049-a7e3ea64ae5e", - "e6576875-3c67-4cc3-9847-08fc8ebc70a0", - "79ef02b0-9861-4d3e-91c4-d3b217cd4938", - "db9a22bf-7051-4b90-a677-0019c2639f7a", - "255e337d-8361-4210-80f0-a3725367cf5b", - "e4654128-4382-4719-b70f-e2e983656bee", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "1637acf4-7a37-4f21-a98a-9514624c87af", - self: "/apiDescription/1637acf4-7a37-4f21-a98a-9514624c87af", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:13:18+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: "Adresservice,Dit component verrijkt huisnummer en postcodes bevragingen met BAG gegevens.", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "b082fa16-d48f-4ac4-be52-dc174e4e2281", - self: "/apiComponentlegalEntity/b082fa16-d48f-4ac4-be52-dc174e4e2281", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:13:18+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "7fe7f8be-4cbe-478f-8052-d61c9f846d2b", - self: "/api/oc/organizations/7fe7f8be-4cbe-478f-8052-d61c9f846d2b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "7fe7f8be-4cbe-478f-8052-d61c9f846d2b", - self: "/api/oc/organizations/7fe7f8be-4cbe-478f-8052-d61c9f846d2b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "bbef1c9e-5744-45f2-a00f-ad2426490233", - self: "/apiComponentnlEntity/bbef1c9e-5744-45f2-a00f-ad2426490233", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:13:18+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "fe6c4b4a-7b85-4d11-964a-3e9ff7c56ee0", - self: "/apiComponentnlEntitycommongroundEntity/fe6c4b4a-7b85-4d11-964a-3e9ff7c56ee0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - embedded: { - commonground: { - _self: { - id: "fe6c4b4a-7b85-4d11-964a-3e9ff7c56ee0", - self: "/apiComponentnlEntitycommongroundEntity/fe6c4b4a-7b85-4d11-964a-3e9ff7c56ee0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:18+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - }, - }, - maintenance: { - _self: { - id: "e889ee4b-fecd-4cdd-a567-6532e32cc716", - self: "/apiComponentmaintenanceEntity/e889ee4b-fecd-4cdd-a567-6532e32cc716", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:13:19+00:00", - dateModified: "2022-12-13T14:29:28+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "a3d10da5-0b6a-4ab5-bc99-1b8f893884a5", - self: "/apiContact/a3d10da5-0b6a-4ab5-bc99-1b8f893884a5", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:13:19+00:00", - dateModified: "2022-10-28T15:13:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31be5240-68fb-493b-8c3f-af6fc839e3c7", - self: "/apiContact/31be5240-68fb-493b-8c3f-af6fc839e3c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:35+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5b72c1a-367a-47d2-8bef-df6a304337a1", - self: "/apiContact/b5b72c1a-367a-47d2-8bef-df6a304337a1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:38+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b190893-b1b9-4d39-859e-18f232206567", - self: "/apiContact/9b190893-b1b9-4d39-859e-18f232206567", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "825b0f51-47b9-4771-bd81-afca87ec9f1d", - self: "/apiContact/825b0f51-47b9-4771-bd81-afca87ec9f1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "99774808-6d46-4db1-bfab-95fe30aa2067", - self: "/apiContact/99774808-6d46-4db1-bfab-95fe30aa2067", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:02:01+00:00", - dateModified: "2022-10-29T00:02:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c79a6c0e-34b7-4275-9faa-096e3b51c6ec", - self: "/apiContact/c79a6c0e-34b7-4275-9faa-096e3b51c6ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:06:00+00:00", - dateModified: "2022-10-30T00:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bbba0df9-b8ea-4eb0-967e-222590ec6b9a", - self: "/apiContact/bbba0df9-b8ea-4eb0-967e-222590ec6b9a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:06:42+00:00", - dateModified: "2022-10-31T00:06:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eff66aa2-07c7-439f-af6a-1b5eadaf78cd", - self: "/apiContact/eff66aa2-07c7-439f-af6a-1b5eadaf78cd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:42:20+00:00", - dateModified: "2022-10-31T13:42:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aaaf7508-bc41-4be2-b457-a660134b303d", - self: "/apiContact/aaaf7508-bc41-4be2-b457-a660134b303d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:17:17+00:00", - dateModified: "2022-11-01T13:17:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cb5f310e-e7b9-4ba2-b98c-8c2a73eb075e", - self: "/apiContact/cb5f310e-e7b9-4ba2-b98c-8c2a73eb075e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T13:55:46+00:00", - dateModified: "2022-11-02T13:55:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ac82251c-26ac-4392-b6ac-d4073ccef9c5", - self: "/apiContact/ac82251c-26ac-4392-b6ac-d4073ccef9c5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:53:40+00:00", - dateModified: "2022-11-03T13:53:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c072dbfa-7148-4cbd-b40c-ce660f4bd4b7", - self: "/apiContact/c072dbfa-7148-4cbd-b40c-ce660f4bd4b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T14:51:43+00:00", - dateModified: "2022-11-04T14:51:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6ba15b4-e974-4d3a-a789-fb9af0ce95e2", - self: "/apiContact/f6ba15b4-e974-4d3a-a789-fb9af0ce95e2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:13:49+00:00", - dateModified: "2022-11-10T10:13:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9c63ef56-f155-4322-9568-198d2000ccc3", - self: "/apiContact/9c63ef56-f155-4322-9568-198d2000ccc3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:06:33+00:00", - dateModified: "2022-11-10T13:06:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00beac27-218c-49f8-9ea4-c1e82aac7327", - self: "/apiContact/00beac27-218c-49f8-9ea4-c1e82aac7327", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:46:30+00:00", - dateModified: "2022-11-21T12:46:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0b2c2bf5-2b90-4cad-bebd-6b0dda762b14", - self: "/apiContact/0b2c2bf5-2b90-4cad-bebd-6b0dda762b14", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:48:26+00:00", - dateModified: "2022-11-21T12:48:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88bf8019-254c-4e08-beb8-c25f6b4102cc", - self: "/apiContact/88bf8019-254c-4e08-beb8-c25f6b4102cc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:53+00:00", - dateModified: "2022-11-21T12:58:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "46aa378c-2bbb-4c54-9698-6101da445638", - self: "/apiContact/46aa378c-2bbb-4c54-9698-6101da445638", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:02:42+00:00", - dateModified: "2022-11-22T15:02:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72cd3ff9-aeca-4f62-96d2-5e102052aa25", - self: "/apiContact/72cd3ff9-aeca-4f62-96d2-5e102052aa25", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:56:17+00:00", - dateModified: "2022-11-22T15:56:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b77b1657-0484-4505-a73c-5ccc8b7b21bd", - self: "/apiContact/b77b1657-0484-4505-a73c-5ccc8b7b21bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:06:31+00:00", - dateModified: "2022-11-22T16:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7489fc68-5c7c-4b83-a1c1-a4c4d6e32f8d", - self: "/apiContact/7489fc68-5c7c-4b83-a1c1-a4c4d6e32f8d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:05:56+00:00", - dateModified: "2022-11-22T17:05:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a50e5555-88bc-431a-a752-13feec360d6d", - self: "/apiContact/a50e5555-88bc-431a-a752-13feec360d6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:01:20+00:00", - dateModified: "2022-11-22T19:01:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b57ca039-ab7e-47c8-b68a-ea108004d117", - self: "/apiContact/b57ca039-ab7e-47c8-b68a-ea108004d117", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:02:16+00:00", - dateModified: "2022-11-22T21:02:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4d6c194d-b473-4c55-8c98-b213aebb0715", - self: "/apiContact/4d6c194d-b473-4c55-8c98-b213aebb0715", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:01:50+00:00", - dateModified: "2022-11-22T23:01:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2f5bf741-745f-4ca8-af82-656ef622211a", - self: "/apiContact/2f5bf741-745f-4ca8-af82-656ef622211a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:01:46+00:00", - dateModified: "2022-11-23T01:01:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c2637001-acc5-4fd0-afd8-3b420082b1cf", - self: "/apiContact/c2637001-acc5-4fd0-afd8-3b420082b1cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:01:59+00:00", - dateModified: "2022-11-23T03:01:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d32ed268-12fd-4e52-8d90-df60d92652b4", - self: "/apiContact/d32ed268-12fd-4e52-8d90-df60d92652b4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:01:52+00:00", - dateModified: "2022-11-23T05:01:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ef194996-80bb-4aca-8928-3c95725eb064", - self: "/apiContact/ef194996-80bb-4aca-8928-3c95725eb064", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:02:08+00:00", - dateModified: "2022-11-23T07:02:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cd9ef279-31ec-4432-9c1c-a1c823785951", - self: "/apiContact/cd9ef279-31ec-4432-9c1c-a1c823785951", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:16:07+00:00", - dateModified: "2022-11-23T08:16:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a790082b-75fe-4358-aec9-412d720ce815", - self: "/apiContact/a790082b-75fe-4358-aec9-412d720ce815", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:04:10+00:00", - dateModified: "2022-11-23T09:04:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cff30753-d496-4133-b5cc-967019994207", - self: "/apiContact/cff30753-d496-4133-b5cc-967019994207", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:52:57+00:00", - dateModified: "2022-11-23T09:52:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc6e2932-5a5e-4eb1-937d-f4d7462b0689", - self: "/apiContact/cc6e2932-5a5e-4eb1-937d-f4d7462b0689", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:08:53+00:00", - dateModified: "2022-11-23T11:08:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "80fda071-9112-43a4-a414-e34a04ba9e4e", - self: "/apiContact/80fda071-9112-43a4-a414-e34a04ba9e4e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:04:38+00:00", - dateModified: "2022-11-23T13:04:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9631ba95-4094-4027-8114-60f23b1c1ea6", - self: "/apiContact/9631ba95-4094-4027-8114-60f23b1c1ea6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:43:45+00:00", - dateModified: "2022-11-23T13:43:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3f921a05-9427-4ddf-b1d5-cc5b09f158ff", - self: "/apiContact/3f921a05-9427-4ddf-b1d5-cc5b09f158ff", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:06:31+00:00", - dateModified: "2022-11-23T15:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7b3eda67-57bb-4f98-913c-c9e88dc1a3c0", - self: "/apiContact/7b3eda67-57bb-4f98-913c-c9e88dc1a3c0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:03:47+00:00", - dateModified: "2022-11-23T17:03:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "30ae6bb7-9cec-4f75-b582-81cee9e4c5f4", - self: "/apiContact/30ae6bb7-9cec-4f75-b582-81cee9e4c5f4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:04:11+00:00", - dateModified: "2022-11-23T19:04:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f123fa1-c13e-42d3-a329-e1133c6e0558", - self: "/apiContact/4f123fa1-c13e-42d3-a329-e1133c6e0558", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:05:36+00:00", - dateModified: "2022-11-23T21:05:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "24f16a7a-caf6-4e7f-838d-ebeb5c9caced", - self: "/apiContact/24f16a7a-caf6-4e7f-838d-ebeb5c9caced", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:02:05+00:00", - dateModified: "2022-11-23T23:02:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45f77606-d202-47ba-b29a-ee3a06c98cb9", - self: "/apiContact/45f77606-d202-47ba-b29a-ee3a06c98cb9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:01:24+00:00", - dateModified: "2022-11-24T01:01:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "695757f2-efbc-4327-a57e-8ffd879b1143", - self: "/apiContact/695757f2-efbc-4327-a57e-8ffd879b1143", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:01:14+00:00", - dateModified: "2022-11-24T03:01:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5aa15a5b-f775-46a1-a18d-5dfbf4bca878", - self: "/apiContact/5aa15a5b-f775-46a1-a18d-5dfbf4bca878", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:01:23+00:00", - dateModified: "2022-11-24T05:01:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9af37d73-604b-4f83-9afd-1c98d6aa9360", - self: "/apiContact/9af37d73-604b-4f83-9afd-1c98d6aa9360", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:03:52+00:00", - dateModified: "2022-11-24T07:03:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1e74d527-bd51-4a6c-84da-7dac7f090d12", - self: "/apiContact/1e74d527-bd51-4a6c-84da-7dac7f090d12", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:02:21+00:00", - dateModified: "2022-11-24T09:02:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a43a2ff5-2a69-49e3-8682-b5264c81623a", - self: "/apiContact/a43a2ff5-2a69-49e3-8682-b5264c81623a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:01:58+00:00", - dateModified: "2022-11-24T11:01:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a1bfc9d8-82fc-40f5-b3a3-df2e6f55adf7", - self: "/apiContact/a1bfc9d8-82fc-40f5-b3a3-df2e6f55adf7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T10:43:08+00:00", - dateModified: "2022-12-09T10:43:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7cf3286c-0e29-4abe-bae3-6571727dde51", - self: "/apiContact/7cf3286c-0e29-4abe-bae3-6571727dde51", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:37:28+00:00", - dateModified: "2022-12-09T12:37:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d686e652-f2c7-4cf8-85b2-347f75af0539", - self: "/apiContact/d686e652-f2c7-4cf8-85b2-347f75af0539", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:36:24+00:00", - dateModified: "2022-12-10T14:36:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b4e48c4a-7c75-4e6c-a351-919a092bc7d7", - self: "/apiContact/b4e48c4a-7c75-4e6c-a351-919a092bc7d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:39:51+00:00", - dateModified: "2022-12-11T14:39:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45023a49-e105-4b02-b69c-ec49512a32f5", - self: "/apiContact/45023a49-e105-4b02-b69c-ec49512a32f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:41:57+00:00", - dateModified: "2022-12-12T14:41:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4c453d03-798d-4ae2-b988-69a5bd44fd96", - self: "/apiContact/4c453d03-798d-4ae2-b988-69a5bd44fd96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-13T14:28:59+00:00", - dateModified: "2022-12-13T14:28:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "a3d10da5-0b6a-4ab5-bc99-1b8f893884a5", - self: "/apiContact/a3d10da5-0b6a-4ab5-bc99-1b8f893884a5", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:13:19+00:00", - dateModified: "2022-10-28T15:13:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31be5240-68fb-493b-8c3f-af6fc839e3c7", - self: "/apiContact/31be5240-68fb-493b-8c3f-af6fc839e3c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:35+00:00", - dateModified: "2022-10-28T15:14:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5b72c1a-367a-47d2-8bef-df6a304337a1", - self: "/apiContact/b5b72c1a-367a-47d2-8bef-df6a304337a1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:38+00:00", - dateModified: "2022-10-28T15:14:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b190893-b1b9-4d39-859e-18f232206567", - self: "/apiContact/9b190893-b1b9-4d39-859e-18f232206567", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "825b0f51-47b9-4771-bd81-afca87ec9f1d", - self: "/apiContact/825b0f51-47b9-4771-bd81-afca87ec9f1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:14:41+00:00", - dateModified: "2022-10-28T15:14:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "99774808-6d46-4db1-bfab-95fe30aa2067", - self: "/apiContact/99774808-6d46-4db1-bfab-95fe30aa2067", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:02:01+00:00", - dateModified: "2022-10-29T00:02:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c79a6c0e-34b7-4275-9faa-096e3b51c6ec", - self: "/apiContact/c79a6c0e-34b7-4275-9faa-096e3b51c6ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:06:00+00:00", - dateModified: "2022-10-30T00:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bbba0df9-b8ea-4eb0-967e-222590ec6b9a", - self: "/apiContact/bbba0df9-b8ea-4eb0-967e-222590ec6b9a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:06:42+00:00", - dateModified: "2022-10-31T00:06:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eff66aa2-07c7-439f-af6a-1b5eadaf78cd", - self: "/apiContact/eff66aa2-07c7-439f-af6a-1b5eadaf78cd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:42:20+00:00", - dateModified: "2022-10-31T13:42:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aaaf7508-bc41-4be2-b457-a660134b303d", - self: "/apiContact/aaaf7508-bc41-4be2-b457-a660134b303d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:17:17+00:00", - dateModified: "2022-11-01T13:17:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cb5f310e-e7b9-4ba2-b98c-8c2a73eb075e", - self: "/apiContact/cb5f310e-e7b9-4ba2-b98c-8c2a73eb075e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T13:55:46+00:00", - dateModified: "2022-11-02T13:55:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ac82251c-26ac-4392-b6ac-d4073ccef9c5", - self: "/apiContact/ac82251c-26ac-4392-b6ac-d4073ccef9c5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:53:40+00:00", - dateModified: "2022-11-03T13:53:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c072dbfa-7148-4cbd-b40c-ce660f4bd4b7", - self: "/apiContact/c072dbfa-7148-4cbd-b40c-ce660f4bd4b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T14:51:43+00:00", - dateModified: "2022-11-04T14:51:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6ba15b4-e974-4d3a-a789-fb9af0ce95e2", - self: "/apiContact/f6ba15b4-e974-4d3a-a789-fb9af0ce95e2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:13:49+00:00", - dateModified: "2022-11-10T10:13:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9c63ef56-f155-4322-9568-198d2000ccc3", - self: "/apiContact/9c63ef56-f155-4322-9568-198d2000ccc3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:06:33+00:00", - dateModified: "2022-11-10T13:06:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00beac27-218c-49f8-9ea4-c1e82aac7327", - self: "/apiContact/00beac27-218c-49f8-9ea4-c1e82aac7327", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:46:30+00:00", - dateModified: "2022-11-21T12:46:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0b2c2bf5-2b90-4cad-bebd-6b0dda762b14", - self: "/apiContact/0b2c2bf5-2b90-4cad-bebd-6b0dda762b14", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:48:26+00:00", - dateModified: "2022-11-21T12:48:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88bf8019-254c-4e08-beb8-c25f6b4102cc", - self: "/apiContact/88bf8019-254c-4e08-beb8-c25f6b4102cc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:53+00:00", - dateModified: "2022-11-21T12:58:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "46aa378c-2bbb-4c54-9698-6101da445638", - self: "/apiContact/46aa378c-2bbb-4c54-9698-6101da445638", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:02:42+00:00", - dateModified: "2022-11-22T15:02:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72cd3ff9-aeca-4f62-96d2-5e102052aa25", - self: "/apiContact/72cd3ff9-aeca-4f62-96d2-5e102052aa25", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:56:17+00:00", - dateModified: "2022-11-22T15:56:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b77b1657-0484-4505-a73c-5ccc8b7b21bd", - self: "/apiContact/b77b1657-0484-4505-a73c-5ccc8b7b21bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:06:31+00:00", - dateModified: "2022-11-22T16:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7489fc68-5c7c-4b83-a1c1-a4c4d6e32f8d", - self: "/apiContact/7489fc68-5c7c-4b83-a1c1-a4c4d6e32f8d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:05:56+00:00", - dateModified: "2022-11-22T17:05:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a50e5555-88bc-431a-a752-13feec360d6d", - self: "/apiContact/a50e5555-88bc-431a-a752-13feec360d6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:01:20+00:00", - dateModified: "2022-11-22T19:01:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b57ca039-ab7e-47c8-b68a-ea108004d117", - self: "/apiContact/b57ca039-ab7e-47c8-b68a-ea108004d117", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:02:16+00:00", - dateModified: "2022-11-22T21:02:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4d6c194d-b473-4c55-8c98-b213aebb0715", - self: "/apiContact/4d6c194d-b473-4c55-8c98-b213aebb0715", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:01:50+00:00", - dateModified: "2022-11-22T23:01:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2f5bf741-745f-4ca8-af82-656ef622211a", - self: "/apiContact/2f5bf741-745f-4ca8-af82-656ef622211a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:01:46+00:00", - dateModified: "2022-11-23T01:01:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c2637001-acc5-4fd0-afd8-3b420082b1cf", - self: "/apiContact/c2637001-acc5-4fd0-afd8-3b420082b1cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:01:59+00:00", - dateModified: "2022-11-23T03:01:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d32ed268-12fd-4e52-8d90-df60d92652b4", - self: "/apiContact/d32ed268-12fd-4e52-8d90-df60d92652b4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:01:52+00:00", - dateModified: "2022-11-23T05:01:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ef194996-80bb-4aca-8928-3c95725eb064", - self: "/apiContact/ef194996-80bb-4aca-8928-3c95725eb064", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:02:08+00:00", - dateModified: "2022-11-23T07:02:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cd9ef279-31ec-4432-9c1c-a1c823785951", - self: "/apiContact/cd9ef279-31ec-4432-9c1c-a1c823785951", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:16:07+00:00", - dateModified: "2022-11-23T08:16:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a790082b-75fe-4358-aec9-412d720ce815", - self: "/apiContact/a790082b-75fe-4358-aec9-412d720ce815", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:04:10+00:00", - dateModified: "2022-11-23T09:04:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cff30753-d496-4133-b5cc-967019994207", - self: "/apiContact/cff30753-d496-4133-b5cc-967019994207", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:52:57+00:00", - dateModified: "2022-11-23T09:52:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc6e2932-5a5e-4eb1-937d-f4d7462b0689", - self: "/apiContact/cc6e2932-5a5e-4eb1-937d-f4d7462b0689", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:08:53+00:00", - dateModified: "2022-11-23T11:08:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "80fda071-9112-43a4-a414-e34a04ba9e4e", - self: "/apiContact/80fda071-9112-43a4-a414-e34a04ba9e4e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:04:38+00:00", - dateModified: "2022-11-23T13:04:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9631ba95-4094-4027-8114-60f23b1c1ea6", - self: "/apiContact/9631ba95-4094-4027-8114-60f23b1c1ea6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:43:45+00:00", - dateModified: "2022-11-23T13:43:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3f921a05-9427-4ddf-b1d5-cc5b09f158ff", - self: "/apiContact/3f921a05-9427-4ddf-b1d5-cc5b09f158ff", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:06:31+00:00", - dateModified: "2022-11-23T15:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7b3eda67-57bb-4f98-913c-c9e88dc1a3c0", - self: "/apiContact/7b3eda67-57bb-4f98-913c-c9e88dc1a3c0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:03:47+00:00", - dateModified: "2022-11-23T17:03:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "30ae6bb7-9cec-4f75-b582-81cee9e4c5f4", - self: "/apiContact/30ae6bb7-9cec-4f75-b582-81cee9e4c5f4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:04:11+00:00", - dateModified: "2022-11-23T19:04:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f123fa1-c13e-42d3-a329-e1133c6e0558", - self: "/apiContact/4f123fa1-c13e-42d3-a329-e1133c6e0558", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:05:36+00:00", - dateModified: "2022-11-23T21:05:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "24f16a7a-caf6-4e7f-838d-ebeb5c9caced", - self: "/apiContact/24f16a7a-caf6-4e7f-838d-ebeb5c9caced", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:02:05+00:00", - dateModified: "2022-11-23T23:02:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45f77606-d202-47ba-b29a-ee3a06c98cb9", - self: "/apiContact/45f77606-d202-47ba-b29a-ee3a06c98cb9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:01:24+00:00", - dateModified: "2022-11-24T01:01:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "695757f2-efbc-4327-a57e-8ffd879b1143", - self: "/apiContact/695757f2-efbc-4327-a57e-8ffd879b1143", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:01:14+00:00", - dateModified: "2022-11-24T03:01:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5aa15a5b-f775-46a1-a18d-5dfbf4bca878", - self: "/apiContact/5aa15a5b-f775-46a1-a18d-5dfbf4bca878", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:01:23+00:00", - dateModified: "2022-11-24T05:01:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9af37d73-604b-4f83-9afd-1c98d6aa9360", - self: "/apiContact/9af37d73-604b-4f83-9afd-1c98d6aa9360", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:03:52+00:00", - dateModified: "2022-11-24T07:03:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1e74d527-bd51-4a6c-84da-7dac7f090d12", - self: "/apiContact/1e74d527-bd51-4a6c-84da-7dac7f090d12", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:02:21+00:00", - dateModified: "2022-11-24T09:02:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a43a2ff5-2a69-49e3-8682-b5264c81623a", - self: "/apiContact/a43a2ff5-2a69-49e3-8682-b5264c81623a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:01:58+00:00", - dateModified: "2022-11-24T11:01:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a1bfc9d8-82fc-40f5-b3a3-df2e6f55adf7", - self: "/apiContact/a1bfc9d8-82fc-40f5-b3a3-df2e6f55adf7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T10:43:08+00:00", - dateModified: "2022-12-09T10:43:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7cf3286c-0e29-4abe-bae3-6571727dde51", - self: "/apiContact/7cf3286c-0e29-4abe-bae3-6571727dde51", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:37:28+00:00", - dateModified: "2022-12-09T12:37:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d686e652-f2c7-4cf8-85b2-347f75af0539", - self: "/apiContact/d686e652-f2c7-4cf8-85b2-347f75af0539", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:36:24+00:00", - dateModified: "2022-12-10T14:36:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b4e48c4a-7c75-4e6c-a351-919a092bc7d7", - self: "/apiContact/b4e48c4a-7c75-4e6c-a351-919a092bc7d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:39:51+00:00", - dateModified: "2022-12-11T14:39:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45023a49-e105-4b02-b69c-ec49512a32f5", - self: "/apiContact/45023a49-e105-4b02-b69c-ec49512a32f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:41:57+00:00", - dateModified: "2022-12-12T14:41:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4c453d03-798d-4ae2-b988-69a5bd44fd96", - self: "/apiContact/4c453d03-798d-4ae2-b988-69a5bd44fd96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-13T14:28:59+00:00", - dateModified: "2022-12-13T14:28:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "f834458e-982f-41fb-92d7-717a365a383a", - self: "/apiRating/f834458e-982f-41fb-92d7-717a365a383a", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:41:31+00:00", - dateModified: "2022-10-31T15:42:29+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Adresservice rated", - "The url: https://github.com/ConductionNL/adresservice rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Adresservice", - "Dit component verrijkt huisnummer en postcodes bevragingen met BAG gegevens. rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "1971e280-af7f-4389-b71e-090f45d2cf6f", - }, - { - _id: "8ba900a6-ac7c-40f9-aec4-86c3fe89e4bb", - _self: { - id: "8ba900a6-ac7c-40f9-aec4-86c3fe89e4bb", - self: "/api/oc/components/8ba900a6-ac7c-40f9-aec4-86c3fe89e4bb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:53+00:00", - dateModified: "2022-12-12T15:02:09+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "0a57b8b8-e8a9-4943-a799-896b61b0b01e", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "121", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "76154a06-5650-4769-9538-9882acf41da6", - self: "/apiRepository/76154a06-5650-4769-9538-9882acf41da6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "72c3e901-268e-443a-b333-2a28862f9757", - self: "/api/oc/organizations/72c3e901-268e-443a-b333-2a28862f9757", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:25:16+00:00", - dateModified: "2022-11-14T13:53:48+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "5646011f-0d05-427c-8196-5ada8a8fa5b6", - "ee781bd5-7899-4c7e-b912-ca1979b21733", - "8de0027a-ea79-4c60-8f56-9099d752f3b8", - "e5ee3bb0-abe3-464d-bb71-2c863e1bf524", - "865ce5b9-0476-4ec3-8d3e-3e2660af5f6c", - "01c35562-7028-41b1-b073-26d787fc7494", - "97efba43-d79b-4980-844e-1856630805e5", - "b025d91e-87b8-4141-9f00-806af3a4c751", - "3c0acacb-4e02-4069-be87-dde11c471580", - "07d0a407-142d-46fb-beb2-2b854a8664af", - "2d361ce9-658b-44c1-8546-f48e656c7a29", - "74a902cc-d2b0-4b85-abf4-13aa7f1a0ba3", - "befec084-66a4-44a5-a8c4-5aae80afa955", - "4b495869-e006-45c9-8f93-240d3951ab4a", - "01c16918-4820-4344-ac94-c74847d6f568", - "470e4236-5764-4bfd-9570-91c3c8595ba0", - "eddf017b-4300-431f-be44-99e2f68af714", - "ef0ac788-834c-4cb7-a110-61076ea11d3d", - "f1a27c7f-4af9-467e-9e75-d75b7d9153d8", - "03883e45-bf25-438b-af46-75cc3a20d42e", - "df6dc7e9-55c6-437f-b86c-dc3a023652aa", - "641285e1-dba5-4e32-a13c-f498f46d5a1b", - "dd64d713-db46-4957-8005-1b44201118b9", - "e68b5c99-cb53-4321-9150-2f5dd6d80366", - "afd29a8a-b437-4f94-aa00-781ea9054a93", - "31640e4d-8f02-4514-9629-8d324471c69b", - "60c09212-e701-4aea-b9cf-8730fabbb8d8", - "9772d2ef-b077-48e0-afdc-fda75aa85a11", - "7f36af94-f79a-414c-b6bd-42e1216f65ed", - "cc8b1561-87c8-4bd2-992e-5f7f72bbc2ac", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "education-component", - url: "https://github.com/ConductionNL/education-component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2022-04-28T13:30:37Z", - stars: 0, - fork_count: 0, - issue_open_count: 4, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "126347", "86064", "36945", "10327", "3898", "2401", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "72c3e901-268e-443a-b333-2a28862f9757", - self: "/api/oc/organizations/72c3e901-268e-443a-b333-2a28862f9757", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:25:16+00:00", - dateModified: "2022-11-14T13:53:48+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "5646011f-0d05-427c-8196-5ada8a8fa5b6", - "ee781bd5-7899-4c7e-b912-ca1979b21733", - "8de0027a-ea79-4c60-8f56-9099d752f3b8", - "e5ee3bb0-abe3-464d-bb71-2c863e1bf524", - "865ce5b9-0476-4ec3-8d3e-3e2660af5f6c", - "01c35562-7028-41b1-b073-26d787fc7494", - "97efba43-d79b-4980-844e-1856630805e5", - "b025d91e-87b8-4141-9f00-806af3a4c751", - "3c0acacb-4e02-4069-be87-dde11c471580", - "07d0a407-142d-46fb-beb2-2b854a8664af", - "2d361ce9-658b-44c1-8546-f48e656c7a29", - "74a902cc-d2b0-4b85-abf4-13aa7f1a0ba3", - "befec084-66a4-44a5-a8c4-5aae80afa955", - "4b495869-e006-45c9-8f93-240d3951ab4a", - "01c16918-4820-4344-ac94-c74847d6f568", - "470e4236-5764-4bfd-9570-91c3c8595ba0", - "eddf017b-4300-431f-be44-99e2f68af714", - "ef0ac788-834c-4cb7-a110-61076ea11d3d", - "f1a27c7f-4af9-467e-9e75-d75b7d9153d8", - "03883e45-bf25-438b-af46-75cc3a20d42e", - "df6dc7e9-55c6-437f-b86c-dc3a023652aa", - "641285e1-dba5-4e32-a13c-f498f46d5a1b", - "dd64d713-db46-4957-8005-1b44201118b9", - "e68b5c99-cb53-4321-9150-2f5dd6d80366", - "afd29a8a-b437-4f94-aa00-781ea9054a93", - "31640e4d-8f02-4514-9629-8d324471c69b", - "60c09212-e701-4aea-b9cf-8730fabbb8d8", - "9772d2ef-b077-48e0-afdc-fda75aa85a11", - "7f36af94-f79a-414c-b6bd-42e1216f65ed", - "cc8b1561-87c8-4bd2-992e-5f7f72bbc2ac", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "3f69d63f-1a56-40f1-96a7-0b967869d305", - self: "/apiDescription/3f69d63f-1a56-40f1-96a7-0b967869d305", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "Educatie Component,Dit component ondersteund de internationale EDU standaard voor het opslaan van cursus/studie gegevens.", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "80a674ec-5d25-4871-b97b-aecc881a4a9c", - self: "/apiComponentlegalEntity/80a674ec-5d25-4871-b97b-aecc881a4a9c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "0a478181-fd93-4771-80bc-b3517fa2e9a8", - self: "/api/oc/organizations/0a478181-fd93-4771-80bc-b3517fa2e9a8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:18:28+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "0a478181-fd93-4771-80bc-b3517fa2e9a8", - self: "/api/oc/organizations/0a478181-fd93-4771-80bc-b3517fa2e9a8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:18:28+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "48390312-b60c-41a7-b026-e61a0b4e20a3", - self: "/apiComponentnlEntity/48390312-b60c-41a7-b026-e61a0b4e20a3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "c582f92c-b964-42ae-b321-c1c332a8dde5", - self: "/apiComponentnlEntitycommongroundEntity/c582f92c-b964-42ae-b321-c1c332a8dde5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:18:28+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "c582f92c-b964-42ae-b321-c1c332a8dde5", - self: "/apiComponentnlEntitycommongroundEntity/c582f92c-b964-42ae-b321-c1c332a8dde5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:18:28+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "6db24d2e-95ab-4448-84de-01d8fdf2237b", - self: "/apiComponentmaintenanceEntity/6db24d2e-95ab-4448-84de-01d8fdf2237b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "12ec12b4-1671-4eb5-a9d9-0aaeecdc57ff", - self: "/apiContact/12ec12b4-1671-4eb5-a9d9-0aaeecdc57ff", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c93343b-e3c1-44e0-ba1e-fdfddc8bb727", - self: "/apiContact/0c93343b-e3c1-44e0-ba1e-fdfddc8bb727", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:27+00:00", - dateModified: "2022-10-28T15:18:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ebab7311-756f-447d-a819-297e0662e71a", - self: "/apiContact/ebab7311-756f-447d-a819-297e0662e71a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:44+00:00", - dateModified: "2022-10-28T15:18:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d56189c1-ec22-4738-bc78-2df302f4500b", - self: "/apiContact/d56189c1-ec22-4738-bc78-2df302f4500b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:49+00:00", - dateModified: "2022-10-28T15:18:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f8e745b0-cc81-4c7b-942e-ba4073bdce52", - self: "/apiContact/f8e745b0-cc81-4c7b-942e-ba4073bdce52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:19:17+00:00", - dateModified: "2022-10-28T15:19:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "761b7815-72a9-4c09-bc13-9b10f115ae40", - self: "/apiContact/761b7815-72a9-4c09-bc13-9b10f115ae40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:05:02+00:00", - dateModified: "2022-10-29T00:05:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8e5c585a-abfa-429f-922e-6f2f6579e1d7", - self: "/apiContact/8e5c585a-abfa-429f-922e-6f2f6579e1d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:49+00:00", - dateModified: "2022-10-30T00:09:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cf76da6c-cf15-4531-99d3-e17b5db32255", - self: "/apiContact/cf76da6c-cf15-4531-99d3-e17b5db32255", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:11:07+00:00", - dateModified: "2022-10-31T00:11:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "98258bd3-1c80-475d-9c66-b4db3687f269", - self: "/apiContact/98258bd3-1c80-475d-9c66-b4db3687f269", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:52+00:00", - dateModified: "2022-10-31T13:46:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "962bd7df-ae6c-4953-8dc6-a1a9c4745bf1", - self: "/apiContact/962bd7df-ae6c-4953-8dc6-a1a9c4745bf1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:48+00:00", - dateModified: "2022-11-01T13:21:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "348e459c-48e5-4581-881e-5562babe5f85", - self: "/apiContact/348e459c-48e5-4581-881e-5562babe5f85", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:07:31+00:00", - dateModified: "2022-11-02T14:07:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b9b82187-8c94-4feb-a27a-f0d035db5834", - self: "/apiContact/b9b82187-8c94-4feb-a27a-f0d035db5834", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:33+00:00", - dateModified: "2022-11-03T13:55:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dfa689cb-5a91-4f2c-90e1-99b216c831d7", - self: "/apiContact/dfa689cb-5a91-4f2c-90e1-99b216c831d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:07:20+00:00", - dateModified: "2022-11-04T15:07:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d0e99a16-a08a-4127-8ea5-8e8cdcc8b2c7", - self: "/apiContact/d0e99a16-a08a-4127-8ea5-8e8cdcc8b2c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:15:07+00:00", - dateModified: "2022-11-10T10:15:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3bc4a1d7-e649-48c7-8a75-a86d34e9dcf8", - self: "/apiContact/3bc4a1d7-e649-48c7-8a75-a86d34e9dcf8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:51+00:00", - dateModified: "2022-11-10T13:10:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3db04b7c-9842-48c1-a807-8276406949ca", - self: "/apiContact/3db04b7c-9842-48c1-a807-8276406949ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:45+00:00", - dateModified: "2022-11-21T12:55:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "486a31c9-3caf-49c6-a640-6dd43555bf52", - self: "/apiContact/486a31c9-3caf-49c6-a640-6dd43555bf52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:32+00:00", - dateModified: "2022-11-21T12:58:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4bda2b80-3e52-4dc8-897a-81a1ab7b0607", - self: "/apiContact/4bda2b80-3e52-4dc8-897a-81a1ab7b0607", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:09:54+00:00", - dateModified: "2022-11-21T13:09:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfecaf17-6d34-448a-8541-53d20d14843f", - self: "/apiContact/bfecaf17-6d34-448a-8541-53d20d14843f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:42:51+00:00", - dateModified: "2022-11-22T15:42:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b449ff7f-81a4-4f84-8e82-c906bafa9a74", - self: "/apiContact/b449ff7f-81a4-4f84-8e82-c906bafa9a74", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:25:30+00:00", - dateModified: "2022-11-22T17:25:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "143931b9-bf47-442d-9e8c-71195fc49f0f", - self: "/apiContact/143931b9-bf47-442d-9e8c-71195fc49f0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:11:54+00:00", - dateModified: "2022-11-22T17:11:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "526917c1-96ea-4d51-9053-04e6d02b727e", - self: "/apiContact/526917c1-96ea-4d51-9053-04e6d02b727e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:10:53+00:00", - dateModified: "2022-11-22T18:10:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4871d68b-8900-4b11-b432-ceb14961d1ca", - self: "/apiContact/4871d68b-8900-4b11-b432-ceb14961d1ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:40:58+00:00", - dateModified: "2022-11-22T19:40:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb36f2a2-a016-4285-9d39-339211ce2fdc", - self: "/apiContact/bb36f2a2-a016-4285-9d39-339211ce2fdc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:43:27+00:00", - dateModified: "2022-11-22T21:43:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cf7fa83b-abf6-4ea7-99b8-3bcdb1ad1d96", - self: "/apiContact/cf7fa83b-abf6-4ea7-99b8-3bcdb1ad1d96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:41:05+00:00", - dateModified: "2022-11-22T23:41:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "28465724-e9fc-4bc6-a5e0-fd857f125482", - self: "/apiContact/28465724-e9fc-4bc6-a5e0-fd857f125482", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:41:28+00:00", - dateModified: "2022-11-23T01:41:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dbf05972-b74a-4b4f-aad6-36fbf7275429", - self: "/apiContact/dbf05972-b74a-4b4f-aad6-36fbf7275429", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:42:52+00:00", - dateModified: "2022-11-23T03:42:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ff3578a-ccb4-4bc5-a4cb-9ca8a115bb9a", - self: "/apiContact/3ff3578a-ccb4-4bc5-a4cb-9ca8a115bb9a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:42:56+00:00", - dateModified: "2022-11-23T05:42:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "977e548b-2a8e-4fd3-9b68-1bc83e3b39a7", - self: "/apiContact/977e548b-2a8e-4fd3-9b68-1bc83e3b39a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:42:07+00:00", - dateModified: "2022-11-23T07:42:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5db6bef-a8ea-4b34-b729-daf93b3f77d7", - self: "/apiContact/b5db6bef-a8ea-4b34-b729-daf93b3f77d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:13:59+00:00", - dateModified: "2022-11-23T09:13:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65d3bb84-3308-432c-91a9-84c96a53d888", - self: "/apiContact/65d3bb84-3308-432c-91a9-84c96a53d888", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:16:17+00:00", - dateModified: "2022-11-23T10:16:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2eb73e32-7aa6-406e-b71a-f2d6165a72e0", - self: "/apiContact/2eb73e32-7aa6-406e-b71a-f2d6165a72e0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:09:51+00:00", - dateModified: "2022-11-23T11:09:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f2730f21-4250-4d78-94dd-b49f757c6cac", - self: "/apiContact/f2730f21-4250-4d78-94dd-b49f757c6cac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T12:05:10+00:00", - dateModified: "2022-11-23T12:05:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ce3fac84-e0cf-4357-ad53-2aace41efe5c", - self: "/apiContact/ce3fac84-e0cf-4357-ad53-2aace41efe5c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:00:17+00:00", - dateModified: "2022-11-23T14:00:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7b491a74-6f50-41f3-97c0-8af25513f1d6", - self: "/apiContact/7b491a74-6f50-41f3-97c0-8af25513f1d6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:44:20+00:00", - dateModified: "2022-11-23T14:44:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "92da09d6-18d7-46e3-8298-e72be8865a3c", - self: "/apiContact/92da09d6-18d7-46e3-8298-e72be8865a3c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:55:43+00:00", - dateModified: "2022-11-23T15:55:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3cb82a63-cd07-4e3d-8eb9-3ebc09f80719", - self: "/apiContact/3cb82a63-cd07-4e3d-8eb9-3ebc09f80719", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:51:54+00:00", - dateModified: "2022-11-23T17:51:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dc5f0553-4766-45c8-82ab-80394764b188", - self: "/apiContact/dc5f0553-4766-45c8-82ab-80394764b188", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:50:07+00:00", - dateModified: "2022-11-23T19:50:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "156cbc23-f19e-4b4b-9a07-fe88b2b4c7fb", - self: "/apiContact/156cbc23-f19e-4b4b-9a07-fe88b2b4c7fb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:52:01+00:00", - dateModified: "2022-11-23T21:52:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "da5e0504-8fbf-49fa-ac0b-5debe5bb0db7", - self: "/apiContact/da5e0504-8fbf-49fa-ac0b-5debe5bb0db7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:45:46+00:00", - dateModified: "2022-11-23T23:45:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb894d59-6866-4b02-bd1a-8586b4aeb29d", - self: "/apiContact/bb894d59-6866-4b02-bd1a-8586b4aeb29d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:44:07+00:00", - dateModified: "2022-11-24T01:44:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78ede2f1-577a-46fc-b434-f0aca02e6cc5", - self: "/apiContact/78ede2f1-577a-46fc-b434-f0aca02e6cc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:42:49+00:00", - dateModified: "2022-11-24T03:42:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9bb4db3e-ff37-407b-bf6f-5428035e93f3", - self: "/apiContact/9bb4db3e-ff37-407b-bf6f-5428035e93f3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:42:58+00:00", - dateModified: "2022-11-24T05:42:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0e2fcccd-f25c-4a57-a035-6b61214bc682", - self: "/apiContact/0e2fcccd-f25c-4a57-a035-6b61214bc682", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:50:47+00:00", - dateModified: "2022-11-24T07:50:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f77eaa72-b9f8-4666-8a84-394408b7b6b0", - self: "/apiContact/f77eaa72-b9f8-4666-8a84-394408b7b6b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:48:45+00:00", - dateModified: "2022-11-24T09:48:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "84d7b103-e3da-415b-babf-abd49955fc51", - self: "/apiContact/84d7b103-e3da-415b-babf-abd49955fc51", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:47:24+00:00", - dateModified: "2022-11-24T11:47:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ecdf91a1-0877-498c-b881-12219ad25d5a", - self: "/apiContact/ecdf91a1-0877-498c-b881-12219ad25d5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:19:42+00:00", - dateModified: "2022-12-09T11:19:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d23b3fed-b7b7-41a8-8719-bbb45c546a29", - self: "/apiContact/d23b3fed-b7b7-41a8-8719-bbb45c546a29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:58:01+00:00", - dateModified: "2022-12-09T12:58:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "22ee9375-f7f4-477f-b352-e567e8043f14", - self: "/apiContact/22ee9375-f7f4-477f-b352-e567e8043f14", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:57:59+00:00", - dateModified: "2022-12-10T14:57:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "213b792a-8550-46ec-9544-205be5a1a326", - self: "/apiContact/213b792a-8550-46ec-9544-205be5a1a326", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:03:09+00:00", - dateModified: "2022-12-11T15:03:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5189063a-9f1d-4c87-bcc0-974e7a21a611", - self: "/apiContact/5189063a-9f1d-4c87-bcc0-974e7a21a611", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T15:01:53+00:00", - dateModified: "2022-12-12T15:01:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "12ec12b4-1671-4eb5-a9d9-0aaeecdc57ff", - self: "/apiContact/12ec12b4-1671-4eb5-a9d9-0aaeecdc57ff", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c93343b-e3c1-44e0-ba1e-fdfddc8bb727", - self: "/apiContact/0c93343b-e3c1-44e0-ba1e-fdfddc8bb727", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:27+00:00", - dateModified: "2022-10-28T15:18:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ebab7311-756f-447d-a819-297e0662e71a", - self: "/apiContact/ebab7311-756f-447d-a819-297e0662e71a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:44+00:00", - dateModified: "2022-10-28T15:18:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d56189c1-ec22-4738-bc78-2df302f4500b", - self: "/apiContact/d56189c1-ec22-4738-bc78-2df302f4500b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:49+00:00", - dateModified: "2022-10-28T15:18:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f8e745b0-cc81-4c7b-942e-ba4073bdce52", - self: "/apiContact/f8e745b0-cc81-4c7b-942e-ba4073bdce52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:19:17+00:00", - dateModified: "2022-10-28T15:19:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "761b7815-72a9-4c09-bc13-9b10f115ae40", - self: "/apiContact/761b7815-72a9-4c09-bc13-9b10f115ae40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:05:02+00:00", - dateModified: "2022-10-29T00:05:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8e5c585a-abfa-429f-922e-6f2f6579e1d7", - self: "/apiContact/8e5c585a-abfa-429f-922e-6f2f6579e1d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:49+00:00", - dateModified: "2022-10-30T00:09:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cf76da6c-cf15-4531-99d3-e17b5db32255", - self: "/apiContact/cf76da6c-cf15-4531-99d3-e17b5db32255", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:11:07+00:00", - dateModified: "2022-10-31T00:11:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "98258bd3-1c80-475d-9c66-b4db3687f269", - self: "/apiContact/98258bd3-1c80-475d-9c66-b4db3687f269", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:52+00:00", - dateModified: "2022-10-31T13:46:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "962bd7df-ae6c-4953-8dc6-a1a9c4745bf1", - self: "/apiContact/962bd7df-ae6c-4953-8dc6-a1a9c4745bf1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:48+00:00", - dateModified: "2022-11-01T13:21:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "348e459c-48e5-4581-881e-5562babe5f85", - self: "/apiContact/348e459c-48e5-4581-881e-5562babe5f85", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:07:31+00:00", - dateModified: "2022-11-02T14:07:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b9b82187-8c94-4feb-a27a-f0d035db5834", - self: "/apiContact/b9b82187-8c94-4feb-a27a-f0d035db5834", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:33+00:00", - dateModified: "2022-11-03T13:55:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dfa689cb-5a91-4f2c-90e1-99b216c831d7", - self: "/apiContact/dfa689cb-5a91-4f2c-90e1-99b216c831d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:07:20+00:00", - dateModified: "2022-11-04T15:07:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d0e99a16-a08a-4127-8ea5-8e8cdcc8b2c7", - self: "/apiContact/d0e99a16-a08a-4127-8ea5-8e8cdcc8b2c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:15:07+00:00", - dateModified: "2022-11-10T10:15:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3bc4a1d7-e649-48c7-8a75-a86d34e9dcf8", - self: "/apiContact/3bc4a1d7-e649-48c7-8a75-a86d34e9dcf8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:51+00:00", - dateModified: "2022-11-10T13:10:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3db04b7c-9842-48c1-a807-8276406949ca", - self: "/apiContact/3db04b7c-9842-48c1-a807-8276406949ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:45+00:00", - dateModified: "2022-11-21T12:55:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "486a31c9-3caf-49c6-a640-6dd43555bf52", - self: "/apiContact/486a31c9-3caf-49c6-a640-6dd43555bf52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:32+00:00", - dateModified: "2022-11-21T12:58:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4bda2b80-3e52-4dc8-897a-81a1ab7b0607", - self: "/apiContact/4bda2b80-3e52-4dc8-897a-81a1ab7b0607", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:09:54+00:00", - dateModified: "2022-11-21T13:09:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfecaf17-6d34-448a-8541-53d20d14843f", - self: "/apiContact/bfecaf17-6d34-448a-8541-53d20d14843f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:42:51+00:00", - dateModified: "2022-11-22T15:42:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b449ff7f-81a4-4f84-8e82-c906bafa9a74", - self: "/apiContact/b449ff7f-81a4-4f84-8e82-c906bafa9a74", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:25:30+00:00", - dateModified: "2022-11-22T17:25:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "143931b9-bf47-442d-9e8c-71195fc49f0f", - self: "/apiContact/143931b9-bf47-442d-9e8c-71195fc49f0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:11:54+00:00", - dateModified: "2022-11-22T17:11:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "526917c1-96ea-4d51-9053-04e6d02b727e", - self: "/apiContact/526917c1-96ea-4d51-9053-04e6d02b727e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:10:53+00:00", - dateModified: "2022-11-22T18:10:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4871d68b-8900-4b11-b432-ceb14961d1ca", - self: "/apiContact/4871d68b-8900-4b11-b432-ceb14961d1ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:40:58+00:00", - dateModified: "2022-11-22T19:40:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb36f2a2-a016-4285-9d39-339211ce2fdc", - self: "/apiContact/bb36f2a2-a016-4285-9d39-339211ce2fdc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:43:27+00:00", - dateModified: "2022-11-22T21:43:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cf7fa83b-abf6-4ea7-99b8-3bcdb1ad1d96", - self: "/apiContact/cf7fa83b-abf6-4ea7-99b8-3bcdb1ad1d96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:41:05+00:00", - dateModified: "2022-11-22T23:41:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "28465724-e9fc-4bc6-a5e0-fd857f125482", - self: "/apiContact/28465724-e9fc-4bc6-a5e0-fd857f125482", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:41:28+00:00", - dateModified: "2022-11-23T01:41:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dbf05972-b74a-4b4f-aad6-36fbf7275429", - self: "/apiContact/dbf05972-b74a-4b4f-aad6-36fbf7275429", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:42:52+00:00", - dateModified: "2022-11-23T03:42:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ff3578a-ccb4-4bc5-a4cb-9ca8a115bb9a", - self: "/apiContact/3ff3578a-ccb4-4bc5-a4cb-9ca8a115bb9a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:42:56+00:00", - dateModified: "2022-11-23T05:42:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "977e548b-2a8e-4fd3-9b68-1bc83e3b39a7", - self: "/apiContact/977e548b-2a8e-4fd3-9b68-1bc83e3b39a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:42:07+00:00", - dateModified: "2022-11-23T07:42:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5db6bef-a8ea-4b34-b729-daf93b3f77d7", - self: "/apiContact/b5db6bef-a8ea-4b34-b729-daf93b3f77d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:13:59+00:00", - dateModified: "2022-11-23T09:13:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65d3bb84-3308-432c-91a9-84c96a53d888", - self: "/apiContact/65d3bb84-3308-432c-91a9-84c96a53d888", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:16:17+00:00", - dateModified: "2022-11-23T10:16:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2eb73e32-7aa6-406e-b71a-f2d6165a72e0", - self: "/apiContact/2eb73e32-7aa6-406e-b71a-f2d6165a72e0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:09:51+00:00", - dateModified: "2022-11-23T11:09:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f2730f21-4250-4d78-94dd-b49f757c6cac", - self: "/apiContact/f2730f21-4250-4d78-94dd-b49f757c6cac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T12:05:10+00:00", - dateModified: "2022-11-23T12:05:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ce3fac84-e0cf-4357-ad53-2aace41efe5c", - self: "/apiContact/ce3fac84-e0cf-4357-ad53-2aace41efe5c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:00:17+00:00", - dateModified: "2022-11-23T14:00:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7b491a74-6f50-41f3-97c0-8af25513f1d6", - self: "/apiContact/7b491a74-6f50-41f3-97c0-8af25513f1d6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:44:20+00:00", - dateModified: "2022-11-23T14:44:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "92da09d6-18d7-46e3-8298-e72be8865a3c", - self: "/apiContact/92da09d6-18d7-46e3-8298-e72be8865a3c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:55:43+00:00", - dateModified: "2022-11-23T15:55:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3cb82a63-cd07-4e3d-8eb9-3ebc09f80719", - self: "/apiContact/3cb82a63-cd07-4e3d-8eb9-3ebc09f80719", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:51:54+00:00", - dateModified: "2022-11-23T17:51:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dc5f0553-4766-45c8-82ab-80394764b188", - self: "/apiContact/dc5f0553-4766-45c8-82ab-80394764b188", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:50:07+00:00", - dateModified: "2022-11-23T19:50:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "156cbc23-f19e-4b4b-9a07-fe88b2b4c7fb", - self: "/apiContact/156cbc23-f19e-4b4b-9a07-fe88b2b4c7fb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:52:01+00:00", - dateModified: "2022-11-23T21:52:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "da5e0504-8fbf-49fa-ac0b-5debe5bb0db7", - self: "/apiContact/da5e0504-8fbf-49fa-ac0b-5debe5bb0db7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:45:46+00:00", - dateModified: "2022-11-23T23:45:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb894d59-6866-4b02-bd1a-8586b4aeb29d", - self: "/apiContact/bb894d59-6866-4b02-bd1a-8586b4aeb29d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:44:07+00:00", - dateModified: "2022-11-24T01:44:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78ede2f1-577a-46fc-b434-f0aca02e6cc5", - self: "/apiContact/78ede2f1-577a-46fc-b434-f0aca02e6cc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:42:49+00:00", - dateModified: "2022-11-24T03:42:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9bb4db3e-ff37-407b-bf6f-5428035e93f3", - self: "/apiContact/9bb4db3e-ff37-407b-bf6f-5428035e93f3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:42:58+00:00", - dateModified: "2022-11-24T05:42:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0e2fcccd-f25c-4a57-a035-6b61214bc682", - self: "/apiContact/0e2fcccd-f25c-4a57-a035-6b61214bc682", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:50:47+00:00", - dateModified: "2022-11-24T07:50:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f77eaa72-b9f8-4666-8a84-394408b7b6b0", - self: "/apiContact/f77eaa72-b9f8-4666-8a84-394408b7b6b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:48:45+00:00", - dateModified: "2022-11-24T09:48:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "84d7b103-e3da-415b-babf-abd49955fc51", - self: "/apiContact/84d7b103-e3da-415b-babf-abd49955fc51", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:47:24+00:00", - dateModified: "2022-11-24T11:47:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ecdf91a1-0877-498c-b881-12219ad25d5a", - self: "/apiContact/ecdf91a1-0877-498c-b881-12219ad25d5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:19:42+00:00", - dateModified: "2022-12-09T11:19:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d23b3fed-b7b7-41a8-8719-bbb45c546a29", - self: "/apiContact/d23b3fed-b7b7-41a8-8719-bbb45c546a29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:58:01+00:00", - dateModified: "2022-12-09T12:58:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "22ee9375-f7f4-477f-b352-e567e8043f14", - self: "/apiContact/22ee9375-f7f4-477f-b352-e567e8043f14", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:57:59+00:00", - dateModified: "2022-12-10T14:57:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "213b792a-8550-46ec-9544-205be5a1a326", - self: "/apiContact/213b792a-8550-46ec-9544-205be5a1a326", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:03:09+00:00", - dateModified: "2022-12-11T15:03:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5189063a-9f1d-4c87-bcc0-974e7a21a611", - self: "/apiContact/5189063a-9f1d-4c87-bcc0-974e7a21a611", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T15:01:53+00:00", - dateModified: "2022-12-12T15:01:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "ae24630b-3967-402b-86b6-d2b211942420", - self: "/apiRating/ae24630b-3967-402b-86b6-d2b211942420", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:57+00:00", - dateModified: "2022-11-14T13:53:48+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Educatie Component rated", - "The url: https://github.com/ConductionNL/education-component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Educatie Component", - "Dit component ondersteund de internationale EDU standaard voor het opslaan van cursus/studie gegevens. rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "Educatie Component", - embedded: { - url: { - _self: { - id: "76154a06-5650-4769-9538-9882acf41da6", - self: "/apiRepository/76154a06-5650-4769-9538-9882acf41da6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "72c3e901-268e-443a-b333-2a28862f9757", - self: "/api/oc/organizations/72c3e901-268e-443a-b333-2a28862f9757", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:25:16+00:00", - dateModified: "2022-11-14T13:53:48+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "5646011f-0d05-427c-8196-5ada8a8fa5b6", - "ee781bd5-7899-4c7e-b912-ca1979b21733", - "8de0027a-ea79-4c60-8f56-9099d752f3b8", - "e5ee3bb0-abe3-464d-bb71-2c863e1bf524", - "865ce5b9-0476-4ec3-8d3e-3e2660af5f6c", - "01c35562-7028-41b1-b073-26d787fc7494", - "97efba43-d79b-4980-844e-1856630805e5", - "b025d91e-87b8-4141-9f00-806af3a4c751", - "3c0acacb-4e02-4069-be87-dde11c471580", - "07d0a407-142d-46fb-beb2-2b854a8664af", - "2d361ce9-658b-44c1-8546-f48e656c7a29", - "74a902cc-d2b0-4b85-abf4-13aa7f1a0ba3", - "befec084-66a4-44a5-a8c4-5aae80afa955", - "4b495869-e006-45c9-8f93-240d3951ab4a", - "01c16918-4820-4344-ac94-c74847d6f568", - "470e4236-5764-4bfd-9570-91c3c8595ba0", - "eddf017b-4300-431f-be44-99e2f68af714", - "ef0ac788-834c-4cb7-a110-61076ea11d3d", - "f1a27c7f-4af9-467e-9e75-d75b7d9153d8", - "03883e45-bf25-438b-af46-75cc3a20d42e", - "df6dc7e9-55c6-437f-b86c-dc3a023652aa", - "641285e1-dba5-4e32-a13c-f498f46d5a1b", - "dd64d713-db46-4957-8005-1b44201118b9", - "e68b5c99-cb53-4321-9150-2f5dd6d80366", - "afd29a8a-b437-4f94-aa00-781ea9054a93", - "31640e4d-8f02-4514-9629-8d324471c69b", - "60c09212-e701-4aea-b9cf-8730fabbb8d8", - "9772d2ef-b077-48e0-afdc-fda75aa85a11", - "7f36af94-f79a-414c-b6bd-42e1216f65ed", - "cc8b1561-87c8-4bd2-992e-5f7f72bbc2ac", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "education-component", - url: "https://github.com/ConductionNL/education-component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2022-04-28T13:30:37Z", - stars: 0, - fork_count: 0, - issue_open_count: 4, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "126347", "86064", "36945", "10327", "3898", "2401", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "72c3e901-268e-443a-b333-2a28862f9757", - self: "/api/oc/organizations/72c3e901-268e-443a-b333-2a28862f9757", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:25:16+00:00", - dateModified: "2022-11-14T13:53:48+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "5646011f-0d05-427c-8196-5ada8a8fa5b6", - "ee781bd5-7899-4c7e-b912-ca1979b21733", - "8de0027a-ea79-4c60-8f56-9099d752f3b8", - "e5ee3bb0-abe3-464d-bb71-2c863e1bf524", - "865ce5b9-0476-4ec3-8d3e-3e2660af5f6c", - "01c35562-7028-41b1-b073-26d787fc7494", - "97efba43-d79b-4980-844e-1856630805e5", - "b025d91e-87b8-4141-9f00-806af3a4c751", - "3c0acacb-4e02-4069-be87-dde11c471580", - "07d0a407-142d-46fb-beb2-2b854a8664af", - "2d361ce9-658b-44c1-8546-f48e656c7a29", - "74a902cc-d2b0-4b85-abf4-13aa7f1a0ba3", - "befec084-66a4-44a5-a8c4-5aae80afa955", - "4b495869-e006-45c9-8f93-240d3951ab4a", - "01c16918-4820-4344-ac94-c74847d6f568", - "470e4236-5764-4bfd-9570-91c3c8595ba0", - "eddf017b-4300-431f-be44-99e2f68af714", - "ef0ac788-834c-4cb7-a110-61076ea11d3d", - "f1a27c7f-4af9-467e-9e75-d75b7d9153d8", - "03883e45-bf25-438b-af46-75cc3a20d42e", - "df6dc7e9-55c6-437f-b86c-dc3a023652aa", - "641285e1-dba5-4e32-a13c-f498f46d5a1b", - "dd64d713-db46-4957-8005-1b44201118b9", - "e68b5c99-cb53-4321-9150-2f5dd6d80366", - "afd29a8a-b437-4f94-aa00-781ea9054a93", - "31640e4d-8f02-4514-9629-8d324471c69b", - "60c09212-e701-4aea-b9cf-8730fabbb8d8", - "9772d2ef-b077-48e0-afdc-fda75aa85a11", - "7f36af94-f79a-414c-b6bd-42e1216f65ed", - "cc8b1561-87c8-4bd2-992e-5f7f72bbc2ac", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "3f69d63f-1a56-40f1-96a7-0b967869d305", - self: "/apiDescription/3f69d63f-1a56-40f1-96a7-0b967869d305", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "Educatie Component,Dit component ondersteund de internationale EDU standaard voor het opslaan van cursus/studie gegevens.", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "80a674ec-5d25-4871-b97b-aecc881a4a9c", - self: "/apiComponentlegalEntity/80a674ec-5d25-4871-b97b-aecc881a4a9c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "0a478181-fd93-4771-80bc-b3517fa2e9a8", - self: "/api/oc/organizations/0a478181-fd93-4771-80bc-b3517fa2e9a8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:18:28+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "0a478181-fd93-4771-80bc-b3517fa2e9a8", - self: "/api/oc/organizations/0a478181-fd93-4771-80bc-b3517fa2e9a8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:18:28+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "48390312-b60c-41a7-b026-e61a0b4e20a3", - self: "/apiComponentnlEntity/48390312-b60c-41a7-b026-e61a0b4e20a3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "c582f92c-b964-42ae-b321-c1c332a8dde5", - self: "/apiComponentnlEntitycommongroundEntity/c582f92c-b964-42ae-b321-c1c332a8dde5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:18:28+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "c582f92c-b964-42ae-b321-c1c332a8dde5", - self: "/apiComponentnlEntitycommongroundEntity/c582f92c-b964-42ae-b321-c1c332a8dde5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:18:28+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "6db24d2e-95ab-4448-84de-01d8fdf2237b", - self: "/apiComponentmaintenanceEntity/6db24d2e-95ab-4448-84de-01d8fdf2237b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "12ec12b4-1671-4eb5-a9d9-0aaeecdc57ff", - self: "/apiContact/12ec12b4-1671-4eb5-a9d9-0aaeecdc57ff", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c93343b-e3c1-44e0-ba1e-fdfddc8bb727", - self: "/apiContact/0c93343b-e3c1-44e0-ba1e-fdfddc8bb727", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:27+00:00", - dateModified: "2022-10-28T15:18:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ebab7311-756f-447d-a819-297e0662e71a", - self: "/apiContact/ebab7311-756f-447d-a819-297e0662e71a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:44+00:00", - dateModified: "2022-10-28T15:18:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d56189c1-ec22-4738-bc78-2df302f4500b", - self: "/apiContact/d56189c1-ec22-4738-bc78-2df302f4500b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:49+00:00", - dateModified: "2022-10-28T15:18:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f8e745b0-cc81-4c7b-942e-ba4073bdce52", - self: "/apiContact/f8e745b0-cc81-4c7b-942e-ba4073bdce52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:19:17+00:00", - dateModified: "2022-10-28T15:19:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "761b7815-72a9-4c09-bc13-9b10f115ae40", - self: "/apiContact/761b7815-72a9-4c09-bc13-9b10f115ae40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:05:02+00:00", - dateModified: "2022-10-29T00:05:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8e5c585a-abfa-429f-922e-6f2f6579e1d7", - self: "/apiContact/8e5c585a-abfa-429f-922e-6f2f6579e1d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:49+00:00", - dateModified: "2022-10-30T00:09:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cf76da6c-cf15-4531-99d3-e17b5db32255", - self: "/apiContact/cf76da6c-cf15-4531-99d3-e17b5db32255", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:11:07+00:00", - dateModified: "2022-10-31T00:11:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "98258bd3-1c80-475d-9c66-b4db3687f269", - self: "/apiContact/98258bd3-1c80-475d-9c66-b4db3687f269", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:52+00:00", - dateModified: "2022-10-31T13:46:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "962bd7df-ae6c-4953-8dc6-a1a9c4745bf1", - self: "/apiContact/962bd7df-ae6c-4953-8dc6-a1a9c4745bf1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:48+00:00", - dateModified: "2022-11-01T13:21:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "348e459c-48e5-4581-881e-5562babe5f85", - self: "/apiContact/348e459c-48e5-4581-881e-5562babe5f85", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:07:31+00:00", - dateModified: "2022-11-02T14:07:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b9b82187-8c94-4feb-a27a-f0d035db5834", - self: "/apiContact/b9b82187-8c94-4feb-a27a-f0d035db5834", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:33+00:00", - dateModified: "2022-11-03T13:55:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dfa689cb-5a91-4f2c-90e1-99b216c831d7", - self: "/apiContact/dfa689cb-5a91-4f2c-90e1-99b216c831d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:07:20+00:00", - dateModified: "2022-11-04T15:07:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d0e99a16-a08a-4127-8ea5-8e8cdcc8b2c7", - self: "/apiContact/d0e99a16-a08a-4127-8ea5-8e8cdcc8b2c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:15:07+00:00", - dateModified: "2022-11-10T10:15:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3bc4a1d7-e649-48c7-8a75-a86d34e9dcf8", - self: "/apiContact/3bc4a1d7-e649-48c7-8a75-a86d34e9dcf8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:51+00:00", - dateModified: "2022-11-10T13:10:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3db04b7c-9842-48c1-a807-8276406949ca", - self: "/apiContact/3db04b7c-9842-48c1-a807-8276406949ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:45+00:00", - dateModified: "2022-11-21T12:55:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "486a31c9-3caf-49c6-a640-6dd43555bf52", - self: "/apiContact/486a31c9-3caf-49c6-a640-6dd43555bf52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:32+00:00", - dateModified: "2022-11-21T12:58:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4bda2b80-3e52-4dc8-897a-81a1ab7b0607", - self: "/apiContact/4bda2b80-3e52-4dc8-897a-81a1ab7b0607", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:09:54+00:00", - dateModified: "2022-11-21T13:09:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfecaf17-6d34-448a-8541-53d20d14843f", - self: "/apiContact/bfecaf17-6d34-448a-8541-53d20d14843f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:42:51+00:00", - dateModified: "2022-11-22T15:42:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b449ff7f-81a4-4f84-8e82-c906bafa9a74", - self: "/apiContact/b449ff7f-81a4-4f84-8e82-c906bafa9a74", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:25:30+00:00", - dateModified: "2022-11-22T17:25:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "143931b9-bf47-442d-9e8c-71195fc49f0f", - self: "/apiContact/143931b9-bf47-442d-9e8c-71195fc49f0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:11:54+00:00", - dateModified: "2022-11-22T17:11:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "526917c1-96ea-4d51-9053-04e6d02b727e", - self: "/apiContact/526917c1-96ea-4d51-9053-04e6d02b727e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:10:53+00:00", - dateModified: "2022-11-22T18:10:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4871d68b-8900-4b11-b432-ceb14961d1ca", - self: "/apiContact/4871d68b-8900-4b11-b432-ceb14961d1ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:40:58+00:00", - dateModified: "2022-11-22T19:40:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb36f2a2-a016-4285-9d39-339211ce2fdc", - self: "/apiContact/bb36f2a2-a016-4285-9d39-339211ce2fdc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:43:27+00:00", - dateModified: "2022-11-22T21:43:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cf7fa83b-abf6-4ea7-99b8-3bcdb1ad1d96", - self: "/apiContact/cf7fa83b-abf6-4ea7-99b8-3bcdb1ad1d96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:41:05+00:00", - dateModified: "2022-11-22T23:41:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "28465724-e9fc-4bc6-a5e0-fd857f125482", - self: "/apiContact/28465724-e9fc-4bc6-a5e0-fd857f125482", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:41:28+00:00", - dateModified: "2022-11-23T01:41:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dbf05972-b74a-4b4f-aad6-36fbf7275429", - self: "/apiContact/dbf05972-b74a-4b4f-aad6-36fbf7275429", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:42:52+00:00", - dateModified: "2022-11-23T03:42:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ff3578a-ccb4-4bc5-a4cb-9ca8a115bb9a", - self: "/apiContact/3ff3578a-ccb4-4bc5-a4cb-9ca8a115bb9a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:42:56+00:00", - dateModified: "2022-11-23T05:42:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "977e548b-2a8e-4fd3-9b68-1bc83e3b39a7", - self: "/apiContact/977e548b-2a8e-4fd3-9b68-1bc83e3b39a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:42:07+00:00", - dateModified: "2022-11-23T07:42:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5db6bef-a8ea-4b34-b729-daf93b3f77d7", - self: "/apiContact/b5db6bef-a8ea-4b34-b729-daf93b3f77d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:13:59+00:00", - dateModified: "2022-11-23T09:13:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65d3bb84-3308-432c-91a9-84c96a53d888", - self: "/apiContact/65d3bb84-3308-432c-91a9-84c96a53d888", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:16:17+00:00", - dateModified: "2022-11-23T10:16:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2eb73e32-7aa6-406e-b71a-f2d6165a72e0", - self: "/apiContact/2eb73e32-7aa6-406e-b71a-f2d6165a72e0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:09:51+00:00", - dateModified: "2022-11-23T11:09:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f2730f21-4250-4d78-94dd-b49f757c6cac", - self: "/apiContact/f2730f21-4250-4d78-94dd-b49f757c6cac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T12:05:10+00:00", - dateModified: "2022-11-23T12:05:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ce3fac84-e0cf-4357-ad53-2aace41efe5c", - self: "/apiContact/ce3fac84-e0cf-4357-ad53-2aace41efe5c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:00:17+00:00", - dateModified: "2022-11-23T14:00:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7b491a74-6f50-41f3-97c0-8af25513f1d6", - self: "/apiContact/7b491a74-6f50-41f3-97c0-8af25513f1d6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:44:20+00:00", - dateModified: "2022-11-23T14:44:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "92da09d6-18d7-46e3-8298-e72be8865a3c", - self: "/apiContact/92da09d6-18d7-46e3-8298-e72be8865a3c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:55:43+00:00", - dateModified: "2022-11-23T15:55:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3cb82a63-cd07-4e3d-8eb9-3ebc09f80719", - self: "/apiContact/3cb82a63-cd07-4e3d-8eb9-3ebc09f80719", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:51:54+00:00", - dateModified: "2022-11-23T17:51:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dc5f0553-4766-45c8-82ab-80394764b188", - self: "/apiContact/dc5f0553-4766-45c8-82ab-80394764b188", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:50:07+00:00", - dateModified: "2022-11-23T19:50:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "156cbc23-f19e-4b4b-9a07-fe88b2b4c7fb", - self: "/apiContact/156cbc23-f19e-4b4b-9a07-fe88b2b4c7fb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:52:01+00:00", - dateModified: "2022-11-23T21:52:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "da5e0504-8fbf-49fa-ac0b-5debe5bb0db7", - self: "/apiContact/da5e0504-8fbf-49fa-ac0b-5debe5bb0db7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:45:46+00:00", - dateModified: "2022-11-23T23:45:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb894d59-6866-4b02-bd1a-8586b4aeb29d", - self: "/apiContact/bb894d59-6866-4b02-bd1a-8586b4aeb29d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:44:07+00:00", - dateModified: "2022-11-24T01:44:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78ede2f1-577a-46fc-b434-f0aca02e6cc5", - self: "/apiContact/78ede2f1-577a-46fc-b434-f0aca02e6cc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:42:49+00:00", - dateModified: "2022-11-24T03:42:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9bb4db3e-ff37-407b-bf6f-5428035e93f3", - self: "/apiContact/9bb4db3e-ff37-407b-bf6f-5428035e93f3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:42:58+00:00", - dateModified: "2022-11-24T05:42:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0e2fcccd-f25c-4a57-a035-6b61214bc682", - self: "/apiContact/0e2fcccd-f25c-4a57-a035-6b61214bc682", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:50:47+00:00", - dateModified: "2022-11-24T07:50:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f77eaa72-b9f8-4666-8a84-394408b7b6b0", - self: "/apiContact/f77eaa72-b9f8-4666-8a84-394408b7b6b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:48:45+00:00", - dateModified: "2022-11-24T09:48:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "84d7b103-e3da-415b-babf-abd49955fc51", - self: "/apiContact/84d7b103-e3da-415b-babf-abd49955fc51", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:47:24+00:00", - dateModified: "2022-11-24T11:47:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ecdf91a1-0877-498c-b881-12219ad25d5a", - self: "/apiContact/ecdf91a1-0877-498c-b881-12219ad25d5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:19:42+00:00", - dateModified: "2022-12-09T11:19:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d23b3fed-b7b7-41a8-8719-bbb45c546a29", - self: "/apiContact/d23b3fed-b7b7-41a8-8719-bbb45c546a29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:58:01+00:00", - dateModified: "2022-12-09T12:58:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "22ee9375-f7f4-477f-b352-e567e8043f14", - self: "/apiContact/22ee9375-f7f4-477f-b352-e567e8043f14", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:57:59+00:00", - dateModified: "2022-12-10T14:57:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "213b792a-8550-46ec-9544-205be5a1a326", - self: "/apiContact/213b792a-8550-46ec-9544-205be5a1a326", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:03:09+00:00", - dateModified: "2022-12-11T15:03:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5189063a-9f1d-4c87-bcc0-974e7a21a611", - self: "/apiContact/5189063a-9f1d-4c87-bcc0-974e7a21a611", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T15:01:53+00:00", - dateModified: "2022-12-12T15:01:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "12ec12b4-1671-4eb5-a9d9-0aaeecdc57ff", - self: "/apiContact/12ec12b4-1671-4eb5-a9d9-0aaeecdc57ff", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:54+00:00", - dateModified: "2022-10-28T15:16:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c93343b-e3c1-44e0-ba1e-fdfddc8bb727", - self: "/apiContact/0c93343b-e3c1-44e0-ba1e-fdfddc8bb727", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:27+00:00", - dateModified: "2022-10-28T15:18:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ebab7311-756f-447d-a819-297e0662e71a", - self: "/apiContact/ebab7311-756f-447d-a819-297e0662e71a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:44+00:00", - dateModified: "2022-10-28T15:18:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d56189c1-ec22-4738-bc78-2df302f4500b", - self: "/apiContact/d56189c1-ec22-4738-bc78-2df302f4500b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:49+00:00", - dateModified: "2022-10-28T15:18:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f8e745b0-cc81-4c7b-942e-ba4073bdce52", - self: "/apiContact/f8e745b0-cc81-4c7b-942e-ba4073bdce52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:19:17+00:00", - dateModified: "2022-10-28T15:19:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "761b7815-72a9-4c09-bc13-9b10f115ae40", - self: "/apiContact/761b7815-72a9-4c09-bc13-9b10f115ae40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:05:02+00:00", - dateModified: "2022-10-29T00:05:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8e5c585a-abfa-429f-922e-6f2f6579e1d7", - self: "/apiContact/8e5c585a-abfa-429f-922e-6f2f6579e1d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:49+00:00", - dateModified: "2022-10-30T00:09:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cf76da6c-cf15-4531-99d3-e17b5db32255", - self: "/apiContact/cf76da6c-cf15-4531-99d3-e17b5db32255", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:11:07+00:00", - dateModified: "2022-10-31T00:11:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "98258bd3-1c80-475d-9c66-b4db3687f269", - self: "/apiContact/98258bd3-1c80-475d-9c66-b4db3687f269", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:52+00:00", - dateModified: "2022-10-31T13:46:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "962bd7df-ae6c-4953-8dc6-a1a9c4745bf1", - self: "/apiContact/962bd7df-ae6c-4953-8dc6-a1a9c4745bf1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:48+00:00", - dateModified: "2022-11-01T13:21:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "348e459c-48e5-4581-881e-5562babe5f85", - self: "/apiContact/348e459c-48e5-4581-881e-5562babe5f85", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:07:31+00:00", - dateModified: "2022-11-02T14:07:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b9b82187-8c94-4feb-a27a-f0d035db5834", - self: "/apiContact/b9b82187-8c94-4feb-a27a-f0d035db5834", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:33+00:00", - dateModified: "2022-11-03T13:55:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dfa689cb-5a91-4f2c-90e1-99b216c831d7", - self: "/apiContact/dfa689cb-5a91-4f2c-90e1-99b216c831d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:07:20+00:00", - dateModified: "2022-11-04T15:07:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d0e99a16-a08a-4127-8ea5-8e8cdcc8b2c7", - self: "/apiContact/d0e99a16-a08a-4127-8ea5-8e8cdcc8b2c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:15:07+00:00", - dateModified: "2022-11-10T10:15:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3bc4a1d7-e649-48c7-8a75-a86d34e9dcf8", - self: "/apiContact/3bc4a1d7-e649-48c7-8a75-a86d34e9dcf8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:51+00:00", - dateModified: "2022-11-10T13:10:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3db04b7c-9842-48c1-a807-8276406949ca", - self: "/apiContact/3db04b7c-9842-48c1-a807-8276406949ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:45+00:00", - dateModified: "2022-11-21T12:55:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "486a31c9-3caf-49c6-a640-6dd43555bf52", - self: "/apiContact/486a31c9-3caf-49c6-a640-6dd43555bf52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:32+00:00", - dateModified: "2022-11-21T12:58:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4bda2b80-3e52-4dc8-897a-81a1ab7b0607", - self: "/apiContact/4bda2b80-3e52-4dc8-897a-81a1ab7b0607", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:09:54+00:00", - dateModified: "2022-11-21T13:09:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfecaf17-6d34-448a-8541-53d20d14843f", - self: "/apiContact/bfecaf17-6d34-448a-8541-53d20d14843f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:42:51+00:00", - dateModified: "2022-11-22T15:42:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b449ff7f-81a4-4f84-8e82-c906bafa9a74", - self: "/apiContact/b449ff7f-81a4-4f84-8e82-c906bafa9a74", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:25:30+00:00", - dateModified: "2022-11-22T17:25:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "143931b9-bf47-442d-9e8c-71195fc49f0f", - self: "/apiContact/143931b9-bf47-442d-9e8c-71195fc49f0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:11:54+00:00", - dateModified: "2022-11-22T17:11:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "526917c1-96ea-4d51-9053-04e6d02b727e", - self: "/apiContact/526917c1-96ea-4d51-9053-04e6d02b727e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:10:53+00:00", - dateModified: "2022-11-22T18:10:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4871d68b-8900-4b11-b432-ceb14961d1ca", - self: "/apiContact/4871d68b-8900-4b11-b432-ceb14961d1ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:40:58+00:00", - dateModified: "2022-11-22T19:40:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb36f2a2-a016-4285-9d39-339211ce2fdc", - self: "/apiContact/bb36f2a2-a016-4285-9d39-339211ce2fdc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:43:27+00:00", - dateModified: "2022-11-22T21:43:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cf7fa83b-abf6-4ea7-99b8-3bcdb1ad1d96", - self: "/apiContact/cf7fa83b-abf6-4ea7-99b8-3bcdb1ad1d96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:41:05+00:00", - dateModified: "2022-11-22T23:41:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "28465724-e9fc-4bc6-a5e0-fd857f125482", - self: "/apiContact/28465724-e9fc-4bc6-a5e0-fd857f125482", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:41:28+00:00", - dateModified: "2022-11-23T01:41:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dbf05972-b74a-4b4f-aad6-36fbf7275429", - self: "/apiContact/dbf05972-b74a-4b4f-aad6-36fbf7275429", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:42:52+00:00", - dateModified: "2022-11-23T03:42:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ff3578a-ccb4-4bc5-a4cb-9ca8a115bb9a", - self: "/apiContact/3ff3578a-ccb4-4bc5-a4cb-9ca8a115bb9a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:42:56+00:00", - dateModified: "2022-11-23T05:42:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "977e548b-2a8e-4fd3-9b68-1bc83e3b39a7", - self: "/apiContact/977e548b-2a8e-4fd3-9b68-1bc83e3b39a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:42:07+00:00", - dateModified: "2022-11-23T07:42:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5db6bef-a8ea-4b34-b729-daf93b3f77d7", - self: "/apiContact/b5db6bef-a8ea-4b34-b729-daf93b3f77d7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:13:59+00:00", - dateModified: "2022-11-23T09:13:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65d3bb84-3308-432c-91a9-84c96a53d888", - self: "/apiContact/65d3bb84-3308-432c-91a9-84c96a53d888", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:16:17+00:00", - dateModified: "2022-11-23T10:16:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2eb73e32-7aa6-406e-b71a-f2d6165a72e0", - self: "/apiContact/2eb73e32-7aa6-406e-b71a-f2d6165a72e0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:09:51+00:00", - dateModified: "2022-11-23T11:09:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f2730f21-4250-4d78-94dd-b49f757c6cac", - self: "/apiContact/f2730f21-4250-4d78-94dd-b49f757c6cac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T12:05:10+00:00", - dateModified: "2022-11-23T12:05:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ce3fac84-e0cf-4357-ad53-2aace41efe5c", - self: "/apiContact/ce3fac84-e0cf-4357-ad53-2aace41efe5c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:00:17+00:00", - dateModified: "2022-11-23T14:00:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7b491a74-6f50-41f3-97c0-8af25513f1d6", - self: "/apiContact/7b491a74-6f50-41f3-97c0-8af25513f1d6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:44:20+00:00", - dateModified: "2022-11-23T14:44:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "92da09d6-18d7-46e3-8298-e72be8865a3c", - self: "/apiContact/92da09d6-18d7-46e3-8298-e72be8865a3c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:55:43+00:00", - dateModified: "2022-11-23T15:55:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3cb82a63-cd07-4e3d-8eb9-3ebc09f80719", - self: "/apiContact/3cb82a63-cd07-4e3d-8eb9-3ebc09f80719", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:51:54+00:00", - dateModified: "2022-11-23T17:51:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dc5f0553-4766-45c8-82ab-80394764b188", - self: "/apiContact/dc5f0553-4766-45c8-82ab-80394764b188", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:50:07+00:00", - dateModified: "2022-11-23T19:50:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "156cbc23-f19e-4b4b-9a07-fe88b2b4c7fb", - self: "/apiContact/156cbc23-f19e-4b4b-9a07-fe88b2b4c7fb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:52:01+00:00", - dateModified: "2022-11-23T21:52:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "da5e0504-8fbf-49fa-ac0b-5debe5bb0db7", - self: "/apiContact/da5e0504-8fbf-49fa-ac0b-5debe5bb0db7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:45:46+00:00", - dateModified: "2022-11-23T23:45:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb894d59-6866-4b02-bd1a-8586b4aeb29d", - self: "/apiContact/bb894d59-6866-4b02-bd1a-8586b4aeb29d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:44:07+00:00", - dateModified: "2022-11-24T01:44:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78ede2f1-577a-46fc-b434-f0aca02e6cc5", - self: "/apiContact/78ede2f1-577a-46fc-b434-f0aca02e6cc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:42:49+00:00", - dateModified: "2022-11-24T03:42:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9bb4db3e-ff37-407b-bf6f-5428035e93f3", - self: "/apiContact/9bb4db3e-ff37-407b-bf6f-5428035e93f3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:42:58+00:00", - dateModified: "2022-11-24T05:42:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0e2fcccd-f25c-4a57-a035-6b61214bc682", - self: "/apiContact/0e2fcccd-f25c-4a57-a035-6b61214bc682", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:50:47+00:00", - dateModified: "2022-11-24T07:50:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f77eaa72-b9f8-4666-8a84-394408b7b6b0", - self: "/apiContact/f77eaa72-b9f8-4666-8a84-394408b7b6b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:48:45+00:00", - dateModified: "2022-11-24T09:48:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "84d7b103-e3da-415b-babf-abd49955fc51", - self: "/apiContact/84d7b103-e3da-415b-babf-abd49955fc51", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:47:24+00:00", - dateModified: "2022-11-24T11:47:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ecdf91a1-0877-498c-b881-12219ad25d5a", - self: "/apiContact/ecdf91a1-0877-498c-b881-12219ad25d5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:19:42+00:00", - dateModified: "2022-12-09T11:19:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d23b3fed-b7b7-41a8-8719-bbb45c546a29", - self: "/apiContact/d23b3fed-b7b7-41a8-8719-bbb45c546a29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:58:01+00:00", - dateModified: "2022-12-09T12:58:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "22ee9375-f7f4-477f-b352-e567e8043f14", - self: "/apiContact/22ee9375-f7f4-477f-b352-e567e8043f14", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:57:59+00:00", - dateModified: "2022-12-10T14:57:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "213b792a-8550-46ec-9544-205be5a1a326", - self: "/apiContact/213b792a-8550-46ec-9544-205be5a1a326", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:03:09+00:00", - dateModified: "2022-12-11T15:03:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5189063a-9f1d-4c87-bcc0-974e7a21a611", - self: "/apiContact/5189063a-9f1d-4c87-bcc0-974e7a21a611", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T15:01:53+00:00", - dateModified: "2022-12-12T15:01:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "ae24630b-3967-402b-86b6-d2b211942420", - self: "/apiRating/ae24630b-3967-402b-86b6-d2b211942420", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:57+00:00", - dateModified: "2022-11-14T13:53:48+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Educatie Component rated", - "The url: https://github.com/ConductionNL/education-component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Educatie Component", - "Dit component ondersteund de internationale EDU standaard voor het opslaan van cursus/studie gegevens. rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "8ba900a6-ac7c-40f9-aec4-86c3fe89e4bb", - }, - { - _id: "029ad746-d079-4d0b-bcbd-ce4abb9a8d78", - _self: { - id: "029ad746-d079-4d0b-bcbd-ce4abb9a8d78", - self: "/api/oc/components/029ad746-d079-4d0b-bcbd-ce4abb9a8d78", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-12-12T15:01:24+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "7ece13d6-05e6-41b7-bb18-f25a14c74f0b", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "197", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "e35da14e-722b-4631-8013-af18306a89cf", - self: "/apiRepository/e35da14e-722b-4631-8013-af18306a89cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "76a1abd3-a8df-4e5c-af80-e9b8b7171382", - self: "/api/oc/organizations/76a1abd3-a8df-4e5c-af80-e9b8b7171382", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:25:12+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "34ebdb6d-456d-4362-9ab4-6e65d15f5fbe", - "5b48a4f7-8f5f-4b25-b988-ed9bafca284b", - "4329741e-8d01-4af3-9314-fa8e2fac82c0", - "d18689e3-5a2f-49ca-a3ea-391d05cf6498", - "96ef3ed4-2546-4ff4-82b3-67e765ce6459", - "aa54ecad-d416-41ab-a099-f3a86bec4f24", - "b307e1ca-4e6d-415b-8694-2cf87d9401dd", - "5126cfb4-f90e-4881-8101-e87fbf89089c", - "e4e1cb11-ddc5-4488-a837-8c683e7a981e", - "c3d4dca1-a2cf-47d6-a842-69f8d1fb1f27", - "f538c58d-5259-4875-8931-5e25757b009c", - "d960b0a2-1176-458b-871b-d90248d0e753", - "6ca785f2-94af-4bb8-ba10-cf70a093d241", - "27d6042c-9670-4e64-b1c1-75b1814caa1f", - "2237a878-d199-487e-af77-7d9b60eaf4a0", - "3965a320-c57f-4a7b-848c-bd386d4503e1", - "1260399f-cc12-4449-9f3c-20c133a45017", - "19d276ae-c9e6-4192-8095-64f6aaa429db", - "ff26d101-3507-4334-8301-6f9f8136c800", - "3d7cb8ca-78bb-49d6-996c-fc6fa2775b23", - "739be3ac-656b-4baa-a52c-9cd4fca3f103", - "7243660b-0864-4e1e-b550-e2a5d05a95f6", - "7d483b72-3400-449b-a2fb-c55dbc44d5de", - "9b26d966-507e-40cb-affb-84d93c47ff06", - "6f646a69-6e39-476d-943e-8f34bc3bae4c", - "558c9161-4d9a-4e4a-86f4-1e4f74ab1961", - "c8e20a71-4ae9-44fd-af5a-965bcf3f0f4e", - "2a2ea3ae-a7f7-4c36-94f6-eb654c9c5288", - "0a0c430e-3554-401d-870c-77cf3b784ed5", - "af973f6f-58fa-41f9-becf-fbe8e8769f14", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "EAV-component", - url: "https://github.com/ConductionNL/EAV-component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2022-05-20T07:36:39Z", - stars: 0, - fork_count: 0, - issue_open_count: 0, - merge_request_open_count: null, - programming_languages: ["194184", "165340", "140404", "86064", "37024", "11702", "3898", "2407", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "76a1abd3-a8df-4e5c-af80-e9b8b7171382", - self: "/api/oc/organizations/76a1abd3-a8df-4e5c-af80-e9b8b7171382", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:25:12+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "34ebdb6d-456d-4362-9ab4-6e65d15f5fbe", - "5b48a4f7-8f5f-4b25-b988-ed9bafca284b", - "4329741e-8d01-4af3-9314-fa8e2fac82c0", - "d18689e3-5a2f-49ca-a3ea-391d05cf6498", - "96ef3ed4-2546-4ff4-82b3-67e765ce6459", - "aa54ecad-d416-41ab-a099-f3a86bec4f24", - "b307e1ca-4e6d-415b-8694-2cf87d9401dd", - "5126cfb4-f90e-4881-8101-e87fbf89089c", - "e4e1cb11-ddc5-4488-a837-8c683e7a981e", - "c3d4dca1-a2cf-47d6-a842-69f8d1fb1f27", - "f538c58d-5259-4875-8931-5e25757b009c", - "d960b0a2-1176-458b-871b-d90248d0e753", - "6ca785f2-94af-4bb8-ba10-cf70a093d241", - "27d6042c-9670-4e64-b1c1-75b1814caa1f", - "2237a878-d199-487e-af77-7d9b60eaf4a0", - "3965a320-c57f-4a7b-848c-bd386d4503e1", - "1260399f-cc12-4449-9f3c-20c133a45017", - "19d276ae-c9e6-4192-8095-64f6aaa429db", - "ff26d101-3507-4334-8301-6f9f8136c800", - "3d7cb8ca-78bb-49d6-996c-fc6fa2775b23", - "739be3ac-656b-4baa-a52c-9cd4fca3f103", - "7243660b-0864-4e1e-b550-e2a5d05a95f6", - "7d483b72-3400-449b-a2fb-c55dbc44d5de", - "9b26d966-507e-40cb-affb-84d93c47ff06", - "6f646a69-6e39-476d-943e-8f34bc3bae4c", - "558c9161-4d9a-4e4a-86f4-1e4f74ab1961", - "c8e20a71-4ae9-44fd-af5a-965bcf3f0f4e", - "2a2ea3ae-a7f7-4c36-94f6-eb654c9c5288", - "0a0c430e-3554-401d-870c-77cf3b784ed5", - "af973f6f-58fa-41f9-becf-fbe8e8769f14", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "2f9ac4f0-5ac6-4e64-b8d2-3618fc93aa46", - self: "/apiDescription/2f9ac4f0-5ac6-4e64-b8d2-3618fc93aa46", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "EAV Component,Een implementatie van het EAV patroon voor opslaan en paseren overige objecten", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "14d96f5e-d33f-4402-bca4-5557f08782dd", - self: "/apiComponentlegalEntity/14d96f5e-d33f-4402-bca4-5557f08782dd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "b54d159b-e11f-41eb-a5b7-9b3ba98523bd", - self: "/api/oc/organizations/b54d159b-e11f-41eb-a5b7-9b3ba98523bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:18:21+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "b54d159b-e11f-41eb-a5b7-9b3ba98523bd", - self: "/api/oc/organizations/b54d159b-e11f-41eb-a5b7-9b3ba98523bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:18:21+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "e691da97-cb19-4aa8-a18f-3faf3d0d4824", - self: "/apiComponentnlEntity/e691da97-cb19-4aa8-a18f-3faf3d0d4824", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "694501d1-b253-4ec4-9d3c-d2751e448000", - self: "/apiComponentnlEntitycommongroundEntity/694501d1-b253-4ec4-9d3c-d2751e448000", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:18:21+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - embedded: { - commonground: { - _self: { - id: "694501d1-b253-4ec4-9d3c-d2751e448000", - self: "/apiComponentnlEntitycommongroundEntity/694501d1-b253-4ec4-9d3c-d2751e448000", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:18:21+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - }, - }, - maintenance: { - _self: { - id: "1a45a9cb-d926-45e6-ad12-88e3250e40c0", - self: "/apiComponentmaintenanceEntity/1a45a9cb-d926-45e6-ad12-88e3250e40c0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "9e6fbf99-8091-4108-b6f8-312d70276010", - self: "/apiContact/9e6fbf99-8091-4108-b6f8-312d70276010", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "742da2b8-27f4-4bdb-b91a-d9acf879def8", - self: "/apiContact/742da2b8-27f4-4bdb-b91a-d9acf879def8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:19+00:00", - dateModified: "2022-10-28T15:18:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e3cbcd58-cbea-4119-a0b8-c95d209b00e8", - self: "/apiContact/e3cbcd58-cbea-4119-a0b8-c95d209b00e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:38+00:00", - dateModified: "2022-10-28T15:18:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d7ef9cd5-976a-4c44-863d-7aaa57b76447", - self: "/apiContact/d7ef9cd5-976a-4c44-863d-7aaa57b76447", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:40+00:00", - dateModified: "2022-10-28T15:18:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5c885968-5343-4a85-b9d2-5dfd8fbbee75", - self: "/apiContact/5c885968-5343-4a85-b9d2-5dfd8fbbee75", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:19:08+00:00", - dateModified: "2022-10-28T15:19:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ac84e4aa-645e-4a69-a361-0f73a2dbdf8a", - self: "/apiContact/ac84e4aa-645e-4a69-a361-0f73a2dbdf8a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:57+00:00", - dateModified: "2022-10-29T00:04:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a134edd6-2447-4f9d-8979-fc28d127e9b7", - self: "/apiContact/a134edd6-2447-4f9d-8979-fc28d127e9b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:43+00:00", - dateModified: "2022-10-30T00:09:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8924a9d2-a118-4e1f-8bd8-dba739d93c83", - self: "/apiContact/8924a9d2-a118-4e1f-8bd8-dba739d93c83", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:59+00:00", - dateModified: "2022-10-31T00:10:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ab39d8be-b046-4eeb-9fb1-fb44af7023cf", - self: "/apiContact/ab39d8be-b046-4eeb-9fb1-fb44af7023cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:45+00:00", - dateModified: "2022-10-31T13:46:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed3669d0-d979-4d9a-9d83-829ac47d06ec", - self: "/apiContact/ed3669d0-d979-4d9a-9d83-829ac47d06ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:41+00:00", - dateModified: "2022-11-01T13:21:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a34d5737-8dfb-4fdb-9efb-6e789b8cd4e3", - self: "/apiContact/a34d5737-8dfb-4fdb-9efb-6e789b8cd4e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:07:16+00:00", - dateModified: "2022-11-02T14:07:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "519e5fbe-5342-4b26-8ac4-8991b275bf56", - self: "/apiContact/519e5fbe-5342-4b26-8ac4-8991b275bf56", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:30+00:00", - dateModified: "2022-11-03T13:55:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8006b04-9203-4ba4-bb8e-4c7579c46fe9", - self: "/apiContact/d8006b04-9203-4ba4-bb8e-4c7579c46fe9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:06:55+00:00", - dateModified: "2022-11-04T15:06:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "081ea851-c4cf-4cd9-bf2b-c3701747c3bf", - self: "/apiContact/081ea851-c4cf-4cd9-bf2b-c3701747c3bf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:15:03+00:00", - dateModified: "2022-11-10T10:15:03+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "598be69a-e699-49ce-811c-94fd64773e41", - self: "/apiContact/598be69a-e699-49ce-811c-94fd64773e41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:43+00:00", - dateModified: "2022-11-10T13:10:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "921873fc-0fb2-4572-b75a-98e75ed4f88f", - self: "/apiContact/921873fc-0fb2-4572-b75a-98e75ed4f88f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:15+00:00", - dateModified: "2022-11-21T12:55:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d0e68ac5-fc5e-4051-a344-f3a0b0c4dfe0", - self: "/apiContact/d0e68ac5-fc5e-4051-a344-f3a0b0c4dfe0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:13+00:00", - dateModified: "2022-11-21T12:58:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c31ae551-6d5d-4ada-bb6c-287bdc223514", - self: "/apiContact/c31ae551-6d5d-4ada-bb6c-287bdc223514", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:09:41+00:00", - dateModified: "2022-11-21T13:09:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "32625201-e221-4da9-ac11-9ccf20ef28df", - self: "/apiContact/32625201-e221-4da9-ac11-9ccf20ef28df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:41:08+00:00", - dateModified: "2022-11-22T15:41:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5bbcf813-07b9-48ac-9ef2-c296e106c3cb", - self: "/apiContact/5bbcf813-07b9-48ac-9ef2-c296e106c3cb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:21:25+00:00", - dateModified: "2022-11-22T17:21:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ff5e928-7823-403e-88a4-d4075ba00d15", - self: "/apiContact/3ff5e928-7823-403e-88a4-d4075ba00d15", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:08:51+00:00", - dateModified: "2022-11-22T17:08:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d9c0d297-77ab-406a-bb8d-70ddf4e86716", - self: "/apiContact/d9c0d297-77ab-406a-bb8d-70ddf4e86716", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:09:15+00:00", - dateModified: "2022-11-22T18:09:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "22a5cfb1-6efd-4b2b-b945-5da5c985f44a", - self: "/apiContact/22a5cfb1-6efd-4b2b-b945-5da5c985f44a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:39:26+00:00", - dateModified: "2022-11-22T19:39:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "08929d34-b060-485c-b96d-ee0b8c12fdee", - self: "/apiContact/08929d34-b060-485c-b96d-ee0b8c12fdee", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:41:39+00:00", - dateModified: "2022-11-22T21:41:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "337e5cd8-b05e-4611-b901-87db5453695b", - self: "/apiContact/337e5cd8-b05e-4611-b901-87db5453695b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:39:06+00:00", - dateModified: "2022-11-22T23:39:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7f12828b-3362-4c90-895b-0599be1ad3a9", - self: "/apiContact/7f12828b-3362-4c90-895b-0599be1ad3a9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:39:49+00:00", - dateModified: "2022-11-23T01:39:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d2f9b75-c337-43c8-abdc-0b14ab2d99e5", - self: "/apiContact/8d2f9b75-c337-43c8-abdc-0b14ab2d99e5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:41:23+00:00", - dateModified: "2022-11-23T03:41:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b7bc8ad1-88f3-4b93-8686-7e8a6afd70db", - self: "/apiContact/b7bc8ad1-88f3-4b93-8686-7e8a6afd70db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:41:20+00:00", - dateModified: "2022-11-23T05:41:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1bf6fb41-3385-4ae9-988e-b720da06fa02", - self: "/apiContact/1bf6fb41-3385-4ae9-988e-b720da06fa02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:40:18+00:00", - dateModified: "2022-11-23T07:40:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "df02654d-2d87-43a4-9adb-2b48ab784b62", - self: "/apiContact/df02654d-2d87-43a4-9adb-2b48ab784b62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:11:57+00:00", - dateModified: "2022-11-23T09:11:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "06f0ba6e-bb04-4164-9899-2b48bf1dec77", - self: "/apiContact/06f0ba6e-bb04-4164-9899-2b48bf1dec77", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:13:44+00:00", - dateModified: "2022-11-23T10:13:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0a812665-d023-4ada-897b-a301ffce9be1", - self: "/apiContact/0a812665-d023-4ada-897b-a301ffce9be1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:06:45+00:00", - dateModified: "2022-11-23T11:06:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ea0dac18-a4ed-4ac7-99d1-283e97bec6bd", - self: "/apiContact/ea0dac18-a4ed-4ac7-99d1-283e97bec6bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T12:03:13+00:00", - dateModified: "2022-11-23T12:03:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a26e7a4-bb9a-4695-b8c4-8e9c2639e676", - self: "/apiContact/5a26e7a4-bb9a-4695-b8c4-8e9c2639e676", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:57:30+00:00", - dateModified: "2022-11-23T13:57:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eb9542f4-0bbd-463a-bd56-ddde576f832f", - self: "/apiContact/eb9542f4-0bbd-463a-bd56-ddde576f832f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:42:22+00:00", - dateModified: "2022-11-23T14:42:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "86a737f6-58cf-4681-888b-d26e6165db03", - self: "/apiContact/86a737f6-58cf-4681-888b-d26e6165db03", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:54:04+00:00", - dateModified: "2022-11-23T15:54:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "122598fd-f17a-494c-8879-471718b47cd3", - self: "/apiContact/122598fd-f17a-494c-8879-471718b47cd3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:49:56+00:00", - dateModified: "2022-11-23T17:49:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96d3b732-433f-499e-b8f3-ee37e5f1c133", - self: "/apiContact/96d3b732-433f-499e-b8f3-ee37e5f1c133", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:48:21+00:00", - dateModified: "2022-11-23T19:48:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e9ed5e4-b528-49da-b54d-594046b27e79", - self: "/apiContact/7e9ed5e4-b528-49da-b54d-594046b27e79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:50:25+00:00", - dateModified: "2022-11-23T21:50:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "10d76f65-1008-4aad-bbc3-d758c5383b38", - self: "/apiContact/10d76f65-1008-4aad-bbc3-d758c5383b38", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:43:51+00:00", - dateModified: "2022-11-23T23:43:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "af830396-0757-4f26-bf86-ad6faa1d873a", - self: "/apiContact/af830396-0757-4f26-bf86-ad6faa1d873a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:42:12+00:00", - dateModified: "2022-11-24T01:42:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2dc9b59a-aa79-4067-9264-aa4ca15275ec", - self: "/apiContact/2dc9b59a-aa79-4067-9264-aa4ca15275ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:40:46+00:00", - dateModified: "2022-11-24T03:40:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "123749aa-538e-49f6-b0f7-1b26fa2aeeea", - self: "/apiContact/123749aa-538e-49f6-b0f7-1b26fa2aeeea", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:41:27+00:00", - dateModified: "2022-11-24T05:41:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7c084b7f-0870-43db-a254-77027a271f95", - self: "/apiContact/7c084b7f-0870-43db-a254-77027a271f95", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:48:52+00:00", - dateModified: "2022-11-24T07:48:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6329ce8e-e204-4587-8175-93846d9b4a62", - self: "/apiContact/6329ce8e-e204-4587-8175-93846d9b4a62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:46:48+00:00", - dateModified: "2022-11-24T09:46:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "25485cdf-3413-45fe-b837-d8924e6749e4", - self: "/apiContact/25485cdf-3413-45fe-b837-d8924e6749e4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:45:21+00:00", - dateModified: "2022-11-24T11:45:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c372a354-4210-4ac6-8570-24aae2f72e94", - self: "/apiContact/c372a354-4210-4ac6-8570-24aae2f72e94", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:18:16+00:00", - dateModified: "2022-12-09T11:18:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5f7ed755-b27c-4189-b78a-7ec5d20a0cf8", - self: "/apiContact/5f7ed755-b27c-4189-b78a-7ec5d20a0cf8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:57:07+00:00", - dateModified: "2022-12-09T12:57:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "09a7d58a-51c2-422c-b06f-8a130cb2ae93", - self: "/apiContact/09a7d58a-51c2-422c-b06f-8a130cb2ae93", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:56:59+00:00", - dateModified: "2022-12-10T14:56:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b1374b9e-9f4e-42f5-b194-84bf542cd693", - self: "/apiContact/b1374b9e-9f4e-42f5-b194-84bf542cd693", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:02:18+00:00", - dateModified: "2022-12-11T15:02:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5276259-d38d-418f-b8ca-0c1ef480c4b9", - self: "/apiContact/b5276259-d38d-418f-b8ca-0c1ef480c4b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T15:01:07+00:00", - dateModified: "2022-12-12T15:01:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "9e6fbf99-8091-4108-b6f8-312d70276010", - self: "/apiContact/9e6fbf99-8091-4108-b6f8-312d70276010", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "742da2b8-27f4-4bdb-b91a-d9acf879def8", - self: "/apiContact/742da2b8-27f4-4bdb-b91a-d9acf879def8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:19+00:00", - dateModified: "2022-10-28T15:18:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e3cbcd58-cbea-4119-a0b8-c95d209b00e8", - self: "/apiContact/e3cbcd58-cbea-4119-a0b8-c95d209b00e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:38+00:00", - dateModified: "2022-10-28T15:18:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d7ef9cd5-976a-4c44-863d-7aaa57b76447", - self: "/apiContact/d7ef9cd5-976a-4c44-863d-7aaa57b76447", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:40+00:00", - dateModified: "2022-10-28T15:18:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5c885968-5343-4a85-b9d2-5dfd8fbbee75", - self: "/apiContact/5c885968-5343-4a85-b9d2-5dfd8fbbee75", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:19:08+00:00", - dateModified: "2022-10-28T15:19:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ac84e4aa-645e-4a69-a361-0f73a2dbdf8a", - self: "/apiContact/ac84e4aa-645e-4a69-a361-0f73a2dbdf8a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:57+00:00", - dateModified: "2022-10-29T00:04:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a134edd6-2447-4f9d-8979-fc28d127e9b7", - self: "/apiContact/a134edd6-2447-4f9d-8979-fc28d127e9b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:43+00:00", - dateModified: "2022-10-30T00:09:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8924a9d2-a118-4e1f-8bd8-dba739d93c83", - self: "/apiContact/8924a9d2-a118-4e1f-8bd8-dba739d93c83", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:59+00:00", - dateModified: "2022-10-31T00:10:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ab39d8be-b046-4eeb-9fb1-fb44af7023cf", - self: "/apiContact/ab39d8be-b046-4eeb-9fb1-fb44af7023cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:45+00:00", - dateModified: "2022-10-31T13:46:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed3669d0-d979-4d9a-9d83-829ac47d06ec", - self: "/apiContact/ed3669d0-d979-4d9a-9d83-829ac47d06ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:41+00:00", - dateModified: "2022-11-01T13:21:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a34d5737-8dfb-4fdb-9efb-6e789b8cd4e3", - self: "/apiContact/a34d5737-8dfb-4fdb-9efb-6e789b8cd4e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:07:16+00:00", - dateModified: "2022-11-02T14:07:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "519e5fbe-5342-4b26-8ac4-8991b275bf56", - self: "/apiContact/519e5fbe-5342-4b26-8ac4-8991b275bf56", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:30+00:00", - dateModified: "2022-11-03T13:55:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8006b04-9203-4ba4-bb8e-4c7579c46fe9", - self: "/apiContact/d8006b04-9203-4ba4-bb8e-4c7579c46fe9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:06:55+00:00", - dateModified: "2022-11-04T15:06:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "081ea851-c4cf-4cd9-bf2b-c3701747c3bf", - self: "/apiContact/081ea851-c4cf-4cd9-bf2b-c3701747c3bf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:15:03+00:00", - dateModified: "2022-11-10T10:15:03+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "598be69a-e699-49ce-811c-94fd64773e41", - self: "/apiContact/598be69a-e699-49ce-811c-94fd64773e41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:43+00:00", - dateModified: "2022-11-10T13:10:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "921873fc-0fb2-4572-b75a-98e75ed4f88f", - self: "/apiContact/921873fc-0fb2-4572-b75a-98e75ed4f88f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:15+00:00", - dateModified: "2022-11-21T12:55:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d0e68ac5-fc5e-4051-a344-f3a0b0c4dfe0", - self: "/apiContact/d0e68ac5-fc5e-4051-a344-f3a0b0c4dfe0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:13+00:00", - dateModified: "2022-11-21T12:58:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c31ae551-6d5d-4ada-bb6c-287bdc223514", - self: "/apiContact/c31ae551-6d5d-4ada-bb6c-287bdc223514", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:09:41+00:00", - dateModified: "2022-11-21T13:09:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "32625201-e221-4da9-ac11-9ccf20ef28df", - self: "/apiContact/32625201-e221-4da9-ac11-9ccf20ef28df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:41:08+00:00", - dateModified: "2022-11-22T15:41:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5bbcf813-07b9-48ac-9ef2-c296e106c3cb", - self: "/apiContact/5bbcf813-07b9-48ac-9ef2-c296e106c3cb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:21:25+00:00", - dateModified: "2022-11-22T17:21:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ff5e928-7823-403e-88a4-d4075ba00d15", - self: "/apiContact/3ff5e928-7823-403e-88a4-d4075ba00d15", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:08:51+00:00", - dateModified: "2022-11-22T17:08:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d9c0d297-77ab-406a-bb8d-70ddf4e86716", - self: "/apiContact/d9c0d297-77ab-406a-bb8d-70ddf4e86716", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:09:15+00:00", - dateModified: "2022-11-22T18:09:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "22a5cfb1-6efd-4b2b-b945-5da5c985f44a", - self: "/apiContact/22a5cfb1-6efd-4b2b-b945-5da5c985f44a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:39:26+00:00", - dateModified: "2022-11-22T19:39:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "08929d34-b060-485c-b96d-ee0b8c12fdee", - self: "/apiContact/08929d34-b060-485c-b96d-ee0b8c12fdee", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:41:39+00:00", - dateModified: "2022-11-22T21:41:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "337e5cd8-b05e-4611-b901-87db5453695b", - self: "/apiContact/337e5cd8-b05e-4611-b901-87db5453695b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:39:06+00:00", - dateModified: "2022-11-22T23:39:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7f12828b-3362-4c90-895b-0599be1ad3a9", - self: "/apiContact/7f12828b-3362-4c90-895b-0599be1ad3a9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:39:49+00:00", - dateModified: "2022-11-23T01:39:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d2f9b75-c337-43c8-abdc-0b14ab2d99e5", - self: "/apiContact/8d2f9b75-c337-43c8-abdc-0b14ab2d99e5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:41:23+00:00", - dateModified: "2022-11-23T03:41:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b7bc8ad1-88f3-4b93-8686-7e8a6afd70db", - self: "/apiContact/b7bc8ad1-88f3-4b93-8686-7e8a6afd70db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:41:20+00:00", - dateModified: "2022-11-23T05:41:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1bf6fb41-3385-4ae9-988e-b720da06fa02", - self: "/apiContact/1bf6fb41-3385-4ae9-988e-b720da06fa02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:40:18+00:00", - dateModified: "2022-11-23T07:40:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "df02654d-2d87-43a4-9adb-2b48ab784b62", - self: "/apiContact/df02654d-2d87-43a4-9adb-2b48ab784b62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:11:57+00:00", - dateModified: "2022-11-23T09:11:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "06f0ba6e-bb04-4164-9899-2b48bf1dec77", - self: "/apiContact/06f0ba6e-bb04-4164-9899-2b48bf1dec77", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:13:44+00:00", - dateModified: "2022-11-23T10:13:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0a812665-d023-4ada-897b-a301ffce9be1", - self: "/apiContact/0a812665-d023-4ada-897b-a301ffce9be1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:06:45+00:00", - dateModified: "2022-11-23T11:06:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ea0dac18-a4ed-4ac7-99d1-283e97bec6bd", - self: "/apiContact/ea0dac18-a4ed-4ac7-99d1-283e97bec6bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T12:03:13+00:00", - dateModified: "2022-11-23T12:03:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a26e7a4-bb9a-4695-b8c4-8e9c2639e676", - self: "/apiContact/5a26e7a4-bb9a-4695-b8c4-8e9c2639e676", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:57:30+00:00", - dateModified: "2022-11-23T13:57:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eb9542f4-0bbd-463a-bd56-ddde576f832f", - self: "/apiContact/eb9542f4-0bbd-463a-bd56-ddde576f832f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:42:22+00:00", - dateModified: "2022-11-23T14:42:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "86a737f6-58cf-4681-888b-d26e6165db03", - self: "/apiContact/86a737f6-58cf-4681-888b-d26e6165db03", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:54:04+00:00", - dateModified: "2022-11-23T15:54:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "122598fd-f17a-494c-8879-471718b47cd3", - self: "/apiContact/122598fd-f17a-494c-8879-471718b47cd3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:49:56+00:00", - dateModified: "2022-11-23T17:49:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96d3b732-433f-499e-b8f3-ee37e5f1c133", - self: "/apiContact/96d3b732-433f-499e-b8f3-ee37e5f1c133", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:48:21+00:00", - dateModified: "2022-11-23T19:48:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e9ed5e4-b528-49da-b54d-594046b27e79", - self: "/apiContact/7e9ed5e4-b528-49da-b54d-594046b27e79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:50:25+00:00", - dateModified: "2022-11-23T21:50:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "10d76f65-1008-4aad-bbc3-d758c5383b38", - self: "/apiContact/10d76f65-1008-4aad-bbc3-d758c5383b38", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:43:51+00:00", - dateModified: "2022-11-23T23:43:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "af830396-0757-4f26-bf86-ad6faa1d873a", - self: "/apiContact/af830396-0757-4f26-bf86-ad6faa1d873a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:42:12+00:00", - dateModified: "2022-11-24T01:42:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2dc9b59a-aa79-4067-9264-aa4ca15275ec", - self: "/apiContact/2dc9b59a-aa79-4067-9264-aa4ca15275ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:40:46+00:00", - dateModified: "2022-11-24T03:40:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "123749aa-538e-49f6-b0f7-1b26fa2aeeea", - self: "/apiContact/123749aa-538e-49f6-b0f7-1b26fa2aeeea", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:41:27+00:00", - dateModified: "2022-11-24T05:41:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7c084b7f-0870-43db-a254-77027a271f95", - self: "/apiContact/7c084b7f-0870-43db-a254-77027a271f95", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:48:52+00:00", - dateModified: "2022-11-24T07:48:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6329ce8e-e204-4587-8175-93846d9b4a62", - self: "/apiContact/6329ce8e-e204-4587-8175-93846d9b4a62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:46:48+00:00", - dateModified: "2022-11-24T09:46:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "25485cdf-3413-45fe-b837-d8924e6749e4", - self: "/apiContact/25485cdf-3413-45fe-b837-d8924e6749e4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:45:21+00:00", - dateModified: "2022-11-24T11:45:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c372a354-4210-4ac6-8570-24aae2f72e94", - self: "/apiContact/c372a354-4210-4ac6-8570-24aae2f72e94", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:18:16+00:00", - dateModified: "2022-12-09T11:18:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5f7ed755-b27c-4189-b78a-7ec5d20a0cf8", - self: "/apiContact/5f7ed755-b27c-4189-b78a-7ec5d20a0cf8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:57:07+00:00", - dateModified: "2022-12-09T12:57:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "09a7d58a-51c2-422c-b06f-8a130cb2ae93", - self: "/apiContact/09a7d58a-51c2-422c-b06f-8a130cb2ae93", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:56:59+00:00", - dateModified: "2022-12-10T14:56:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b1374b9e-9f4e-42f5-b194-84bf542cd693", - self: "/apiContact/b1374b9e-9f4e-42f5-b194-84bf542cd693", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:02:18+00:00", - dateModified: "2022-12-11T15:02:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5276259-d38d-418f-b8ca-0c1ef480c4b9", - self: "/apiContact/b5276259-d38d-418f-b8ca-0c1ef480c4b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T15:01:07+00:00", - dateModified: "2022-12-12T15:01:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "07b619b4-9ba2-46aa-a9da-4a371d682021", - self: "/apiRating/07b619b4-9ba2-46aa-a9da-4a371d682021", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:54+00:00", - dateModified: "2022-10-31T15:42:29+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: EAV Component rated", - "The url: https://github.com/ConductionNL/EAV-component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: EAV Component", - "Een implementatie van het EAV patroon voor opslaan en paseren overige objecten rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "EAV Component", - embedded: { - url: { - _self: { - id: "e35da14e-722b-4631-8013-af18306a89cf", - self: "/apiRepository/e35da14e-722b-4631-8013-af18306a89cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "76a1abd3-a8df-4e5c-af80-e9b8b7171382", - self: "/api/oc/organizations/76a1abd3-a8df-4e5c-af80-e9b8b7171382", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:25:12+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "34ebdb6d-456d-4362-9ab4-6e65d15f5fbe", - "5b48a4f7-8f5f-4b25-b988-ed9bafca284b", - "4329741e-8d01-4af3-9314-fa8e2fac82c0", - "d18689e3-5a2f-49ca-a3ea-391d05cf6498", - "96ef3ed4-2546-4ff4-82b3-67e765ce6459", - "aa54ecad-d416-41ab-a099-f3a86bec4f24", - "b307e1ca-4e6d-415b-8694-2cf87d9401dd", - "5126cfb4-f90e-4881-8101-e87fbf89089c", - "e4e1cb11-ddc5-4488-a837-8c683e7a981e", - "c3d4dca1-a2cf-47d6-a842-69f8d1fb1f27", - "f538c58d-5259-4875-8931-5e25757b009c", - "d960b0a2-1176-458b-871b-d90248d0e753", - "6ca785f2-94af-4bb8-ba10-cf70a093d241", - "27d6042c-9670-4e64-b1c1-75b1814caa1f", - "2237a878-d199-487e-af77-7d9b60eaf4a0", - "3965a320-c57f-4a7b-848c-bd386d4503e1", - "1260399f-cc12-4449-9f3c-20c133a45017", - "19d276ae-c9e6-4192-8095-64f6aaa429db", - "ff26d101-3507-4334-8301-6f9f8136c800", - "3d7cb8ca-78bb-49d6-996c-fc6fa2775b23", - "739be3ac-656b-4baa-a52c-9cd4fca3f103", - "7243660b-0864-4e1e-b550-e2a5d05a95f6", - "7d483b72-3400-449b-a2fb-c55dbc44d5de", - "9b26d966-507e-40cb-affb-84d93c47ff06", - "6f646a69-6e39-476d-943e-8f34bc3bae4c", - "558c9161-4d9a-4e4a-86f4-1e4f74ab1961", - "c8e20a71-4ae9-44fd-af5a-965bcf3f0f4e", - "2a2ea3ae-a7f7-4c36-94f6-eb654c9c5288", - "0a0c430e-3554-401d-870c-77cf3b784ed5", - "af973f6f-58fa-41f9-becf-fbe8e8769f14", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "EAV-component", - url: "https://github.com/ConductionNL/EAV-component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2022-05-20T07:36:39Z", - stars: 0, - fork_count: 0, - issue_open_count: 0, - merge_request_open_count: null, - programming_languages: ["194184", "165340", "140404", "86064", "37024", "11702", "3898", "2407", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "76a1abd3-a8df-4e5c-af80-e9b8b7171382", - self: "/api/oc/organizations/76a1abd3-a8df-4e5c-af80-e9b8b7171382", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:25:12+00:00", - dateModified: "2022-11-01T13:05:17+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "34ebdb6d-456d-4362-9ab4-6e65d15f5fbe", - "5b48a4f7-8f5f-4b25-b988-ed9bafca284b", - "4329741e-8d01-4af3-9314-fa8e2fac82c0", - "d18689e3-5a2f-49ca-a3ea-391d05cf6498", - "96ef3ed4-2546-4ff4-82b3-67e765ce6459", - "aa54ecad-d416-41ab-a099-f3a86bec4f24", - "b307e1ca-4e6d-415b-8694-2cf87d9401dd", - "5126cfb4-f90e-4881-8101-e87fbf89089c", - "e4e1cb11-ddc5-4488-a837-8c683e7a981e", - "c3d4dca1-a2cf-47d6-a842-69f8d1fb1f27", - "f538c58d-5259-4875-8931-5e25757b009c", - "d960b0a2-1176-458b-871b-d90248d0e753", - "6ca785f2-94af-4bb8-ba10-cf70a093d241", - "27d6042c-9670-4e64-b1c1-75b1814caa1f", - "2237a878-d199-487e-af77-7d9b60eaf4a0", - "3965a320-c57f-4a7b-848c-bd386d4503e1", - "1260399f-cc12-4449-9f3c-20c133a45017", - "19d276ae-c9e6-4192-8095-64f6aaa429db", - "ff26d101-3507-4334-8301-6f9f8136c800", - "3d7cb8ca-78bb-49d6-996c-fc6fa2775b23", - "739be3ac-656b-4baa-a52c-9cd4fca3f103", - "7243660b-0864-4e1e-b550-e2a5d05a95f6", - "7d483b72-3400-449b-a2fb-c55dbc44d5de", - "9b26d966-507e-40cb-affb-84d93c47ff06", - "6f646a69-6e39-476d-943e-8f34bc3bae4c", - "558c9161-4d9a-4e4a-86f4-1e4f74ab1961", - "c8e20a71-4ae9-44fd-af5a-965bcf3f0f4e", - "2a2ea3ae-a7f7-4c36-94f6-eb654c9c5288", - "0a0c430e-3554-401d-870c-77cf3b784ed5", - "af973f6f-58fa-41f9-becf-fbe8e8769f14", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "2f9ac4f0-5ac6-4e64-b8d2-3618fc93aa46", - self: "/apiDescription/2f9ac4f0-5ac6-4e64-b8d2-3618fc93aa46", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "EAV Component,Een implementatie van het EAV patroon voor opslaan en paseren overige objecten", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "14d96f5e-d33f-4402-bca4-5557f08782dd", - self: "/apiComponentlegalEntity/14d96f5e-d33f-4402-bca4-5557f08782dd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "b54d159b-e11f-41eb-a5b7-9b3ba98523bd", - self: "/api/oc/organizations/b54d159b-e11f-41eb-a5b7-9b3ba98523bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:18:21+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "b54d159b-e11f-41eb-a5b7-9b3ba98523bd", - self: "/api/oc/organizations/b54d159b-e11f-41eb-a5b7-9b3ba98523bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:18:21+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "e691da97-cb19-4aa8-a18f-3faf3d0d4824", - self: "/apiComponentnlEntity/e691da97-cb19-4aa8-a18f-3faf3d0d4824", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "694501d1-b253-4ec4-9d3c-d2751e448000", - self: "/apiComponentnlEntitycommongroundEntity/694501d1-b253-4ec4-9d3c-d2751e448000", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:18:21+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - embedded: { - commonground: { - _self: { - id: "694501d1-b253-4ec4-9d3c-d2751e448000", - self: "/apiComponentnlEntitycommongroundEntity/694501d1-b253-4ec4-9d3c-d2751e448000", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:18:21+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - }, - }, - maintenance: { - _self: { - id: "1a45a9cb-d926-45e6-ad12-88e3250e40c0", - self: "/apiComponentmaintenanceEntity/1a45a9cb-d926-45e6-ad12-88e3250e40c0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "9e6fbf99-8091-4108-b6f8-312d70276010", - self: "/apiContact/9e6fbf99-8091-4108-b6f8-312d70276010", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "742da2b8-27f4-4bdb-b91a-d9acf879def8", - self: "/apiContact/742da2b8-27f4-4bdb-b91a-d9acf879def8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:19+00:00", - dateModified: "2022-10-28T15:18:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e3cbcd58-cbea-4119-a0b8-c95d209b00e8", - self: "/apiContact/e3cbcd58-cbea-4119-a0b8-c95d209b00e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:38+00:00", - dateModified: "2022-10-28T15:18:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d7ef9cd5-976a-4c44-863d-7aaa57b76447", - self: "/apiContact/d7ef9cd5-976a-4c44-863d-7aaa57b76447", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:40+00:00", - dateModified: "2022-10-28T15:18:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5c885968-5343-4a85-b9d2-5dfd8fbbee75", - self: "/apiContact/5c885968-5343-4a85-b9d2-5dfd8fbbee75", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:19:08+00:00", - dateModified: "2022-10-28T15:19:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ac84e4aa-645e-4a69-a361-0f73a2dbdf8a", - self: "/apiContact/ac84e4aa-645e-4a69-a361-0f73a2dbdf8a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:57+00:00", - dateModified: "2022-10-29T00:04:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a134edd6-2447-4f9d-8979-fc28d127e9b7", - self: "/apiContact/a134edd6-2447-4f9d-8979-fc28d127e9b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:43+00:00", - dateModified: "2022-10-30T00:09:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8924a9d2-a118-4e1f-8bd8-dba739d93c83", - self: "/apiContact/8924a9d2-a118-4e1f-8bd8-dba739d93c83", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:59+00:00", - dateModified: "2022-10-31T00:10:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ab39d8be-b046-4eeb-9fb1-fb44af7023cf", - self: "/apiContact/ab39d8be-b046-4eeb-9fb1-fb44af7023cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:45+00:00", - dateModified: "2022-10-31T13:46:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed3669d0-d979-4d9a-9d83-829ac47d06ec", - self: "/apiContact/ed3669d0-d979-4d9a-9d83-829ac47d06ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:41+00:00", - dateModified: "2022-11-01T13:21:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a34d5737-8dfb-4fdb-9efb-6e789b8cd4e3", - self: "/apiContact/a34d5737-8dfb-4fdb-9efb-6e789b8cd4e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:07:16+00:00", - dateModified: "2022-11-02T14:07:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "519e5fbe-5342-4b26-8ac4-8991b275bf56", - self: "/apiContact/519e5fbe-5342-4b26-8ac4-8991b275bf56", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:30+00:00", - dateModified: "2022-11-03T13:55:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8006b04-9203-4ba4-bb8e-4c7579c46fe9", - self: "/apiContact/d8006b04-9203-4ba4-bb8e-4c7579c46fe9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:06:55+00:00", - dateModified: "2022-11-04T15:06:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "081ea851-c4cf-4cd9-bf2b-c3701747c3bf", - self: "/apiContact/081ea851-c4cf-4cd9-bf2b-c3701747c3bf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:15:03+00:00", - dateModified: "2022-11-10T10:15:03+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "598be69a-e699-49ce-811c-94fd64773e41", - self: "/apiContact/598be69a-e699-49ce-811c-94fd64773e41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:43+00:00", - dateModified: "2022-11-10T13:10:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "921873fc-0fb2-4572-b75a-98e75ed4f88f", - self: "/apiContact/921873fc-0fb2-4572-b75a-98e75ed4f88f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:15+00:00", - dateModified: "2022-11-21T12:55:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d0e68ac5-fc5e-4051-a344-f3a0b0c4dfe0", - self: "/apiContact/d0e68ac5-fc5e-4051-a344-f3a0b0c4dfe0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:13+00:00", - dateModified: "2022-11-21T12:58:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c31ae551-6d5d-4ada-bb6c-287bdc223514", - self: "/apiContact/c31ae551-6d5d-4ada-bb6c-287bdc223514", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:09:41+00:00", - dateModified: "2022-11-21T13:09:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "32625201-e221-4da9-ac11-9ccf20ef28df", - self: "/apiContact/32625201-e221-4da9-ac11-9ccf20ef28df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:41:08+00:00", - dateModified: "2022-11-22T15:41:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5bbcf813-07b9-48ac-9ef2-c296e106c3cb", - self: "/apiContact/5bbcf813-07b9-48ac-9ef2-c296e106c3cb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:21:25+00:00", - dateModified: "2022-11-22T17:21:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ff5e928-7823-403e-88a4-d4075ba00d15", - self: "/apiContact/3ff5e928-7823-403e-88a4-d4075ba00d15", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:08:51+00:00", - dateModified: "2022-11-22T17:08:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d9c0d297-77ab-406a-bb8d-70ddf4e86716", - self: "/apiContact/d9c0d297-77ab-406a-bb8d-70ddf4e86716", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:09:15+00:00", - dateModified: "2022-11-22T18:09:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "22a5cfb1-6efd-4b2b-b945-5da5c985f44a", - self: "/apiContact/22a5cfb1-6efd-4b2b-b945-5da5c985f44a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:39:26+00:00", - dateModified: "2022-11-22T19:39:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "08929d34-b060-485c-b96d-ee0b8c12fdee", - self: "/apiContact/08929d34-b060-485c-b96d-ee0b8c12fdee", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:41:39+00:00", - dateModified: "2022-11-22T21:41:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "337e5cd8-b05e-4611-b901-87db5453695b", - self: "/apiContact/337e5cd8-b05e-4611-b901-87db5453695b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:39:06+00:00", - dateModified: "2022-11-22T23:39:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7f12828b-3362-4c90-895b-0599be1ad3a9", - self: "/apiContact/7f12828b-3362-4c90-895b-0599be1ad3a9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:39:49+00:00", - dateModified: "2022-11-23T01:39:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d2f9b75-c337-43c8-abdc-0b14ab2d99e5", - self: "/apiContact/8d2f9b75-c337-43c8-abdc-0b14ab2d99e5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:41:23+00:00", - dateModified: "2022-11-23T03:41:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b7bc8ad1-88f3-4b93-8686-7e8a6afd70db", - self: "/apiContact/b7bc8ad1-88f3-4b93-8686-7e8a6afd70db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:41:20+00:00", - dateModified: "2022-11-23T05:41:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1bf6fb41-3385-4ae9-988e-b720da06fa02", - self: "/apiContact/1bf6fb41-3385-4ae9-988e-b720da06fa02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:40:18+00:00", - dateModified: "2022-11-23T07:40:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "df02654d-2d87-43a4-9adb-2b48ab784b62", - self: "/apiContact/df02654d-2d87-43a4-9adb-2b48ab784b62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:11:57+00:00", - dateModified: "2022-11-23T09:11:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "06f0ba6e-bb04-4164-9899-2b48bf1dec77", - self: "/apiContact/06f0ba6e-bb04-4164-9899-2b48bf1dec77", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:13:44+00:00", - dateModified: "2022-11-23T10:13:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0a812665-d023-4ada-897b-a301ffce9be1", - self: "/apiContact/0a812665-d023-4ada-897b-a301ffce9be1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:06:45+00:00", - dateModified: "2022-11-23T11:06:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ea0dac18-a4ed-4ac7-99d1-283e97bec6bd", - self: "/apiContact/ea0dac18-a4ed-4ac7-99d1-283e97bec6bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T12:03:13+00:00", - dateModified: "2022-11-23T12:03:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a26e7a4-bb9a-4695-b8c4-8e9c2639e676", - self: "/apiContact/5a26e7a4-bb9a-4695-b8c4-8e9c2639e676", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:57:30+00:00", - dateModified: "2022-11-23T13:57:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eb9542f4-0bbd-463a-bd56-ddde576f832f", - self: "/apiContact/eb9542f4-0bbd-463a-bd56-ddde576f832f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:42:22+00:00", - dateModified: "2022-11-23T14:42:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "86a737f6-58cf-4681-888b-d26e6165db03", - self: "/apiContact/86a737f6-58cf-4681-888b-d26e6165db03", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:54:04+00:00", - dateModified: "2022-11-23T15:54:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "122598fd-f17a-494c-8879-471718b47cd3", - self: "/apiContact/122598fd-f17a-494c-8879-471718b47cd3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:49:56+00:00", - dateModified: "2022-11-23T17:49:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96d3b732-433f-499e-b8f3-ee37e5f1c133", - self: "/apiContact/96d3b732-433f-499e-b8f3-ee37e5f1c133", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:48:21+00:00", - dateModified: "2022-11-23T19:48:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e9ed5e4-b528-49da-b54d-594046b27e79", - self: "/apiContact/7e9ed5e4-b528-49da-b54d-594046b27e79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:50:25+00:00", - dateModified: "2022-11-23T21:50:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "10d76f65-1008-4aad-bbc3-d758c5383b38", - self: "/apiContact/10d76f65-1008-4aad-bbc3-d758c5383b38", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:43:51+00:00", - dateModified: "2022-11-23T23:43:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "af830396-0757-4f26-bf86-ad6faa1d873a", - self: "/apiContact/af830396-0757-4f26-bf86-ad6faa1d873a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:42:12+00:00", - dateModified: "2022-11-24T01:42:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2dc9b59a-aa79-4067-9264-aa4ca15275ec", - self: "/apiContact/2dc9b59a-aa79-4067-9264-aa4ca15275ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:40:46+00:00", - dateModified: "2022-11-24T03:40:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "123749aa-538e-49f6-b0f7-1b26fa2aeeea", - self: "/apiContact/123749aa-538e-49f6-b0f7-1b26fa2aeeea", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:41:27+00:00", - dateModified: "2022-11-24T05:41:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7c084b7f-0870-43db-a254-77027a271f95", - self: "/apiContact/7c084b7f-0870-43db-a254-77027a271f95", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:48:52+00:00", - dateModified: "2022-11-24T07:48:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6329ce8e-e204-4587-8175-93846d9b4a62", - self: "/apiContact/6329ce8e-e204-4587-8175-93846d9b4a62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:46:48+00:00", - dateModified: "2022-11-24T09:46:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "25485cdf-3413-45fe-b837-d8924e6749e4", - self: "/apiContact/25485cdf-3413-45fe-b837-d8924e6749e4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:45:21+00:00", - dateModified: "2022-11-24T11:45:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c372a354-4210-4ac6-8570-24aae2f72e94", - self: "/apiContact/c372a354-4210-4ac6-8570-24aae2f72e94", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:18:16+00:00", - dateModified: "2022-12-09T11:18:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5f7ed755-b27c-4189-b78a-7ec5d20a0cf8", - self: "/apiContact/5f7ed755-b27c-4189-b78a-7ec5d20a0cf8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:57:07+00:00", - dateModified: "2022-12-09T12:57:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "09a7d58a-51c2-422c-b06f-8a130cb2ae93", - self: "/apiContact/09a7d58a-51c2-422c-b06f-8a130cb2ae93", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:56:59+00:00", - dateModified: "2022-12-10T14:56:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b1374b9e-9f4e-42f5-b194-84bf542cd693", - self: "/apiContact/b1374b9e-9f4e-42f5-b194-84bf542cd693", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:02:18+00:00", - dateModified: "2022-12-11T15:02:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5276259-d38d-418f-b8ca-0c1ef480c4b9", - self: "/apiContact/b5276259-d38d-418f-b8ca-0c1ef480c4b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T15:01:07+00:00", - dateModified: "2022-12-12T15:01:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "9e6fbf99-8091-4108-b6f8-312d70276010", - self: "/apiContact/9e6fbf99-8091-4108-b6f8-312d70276010", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:46+00:00", - dateModified: "2022-10-28T15:16:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "742da2b8-27f4-4bdb-b91a-d9acf879def8", - self: "/apiContact/742da2b8-27f4-4bdb-b91a-d9acf879def8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:19+00:00", - dateModified: "2022-10-28T15:18:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e3cbcd58-cbea-4119-a0b8-c95d209b00e8", - self: "/apiContact/e3cbcd58-cbea-4119-a0b8-c95d209b00e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:38+00:00", - dateModified: "2022-10-28T15:18:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d7ef9cd5-976a-4c44-863d-7aaa57b76447", - self: "/apiContact/d7ef9cd5-976a-4c44-863d-7aaa57b76447", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:40+00:00", - dateModified: "2022-10-28T15:18:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5c885968-5343-4a85-b9d2-5dfd8fbbee75", - self: "/apiContact/5c885968-5343-4a85-b9d2-5dfd8fbbee75", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:19:08+00:00", - dateModified: "2022-10-28T15:19:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ac84e4aa-645e-4a69-a361-0f73a2dbdf8a", - self: "/apiContact/ac84e4aa-645e-4a69-a361-0f73a2dbdf8a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:57+00:00", - dateModified: "2022-10-29T00:04:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a134edd6-2447-4f9d-8979-fc28d127e9b7", - self: "/apiContact/a134edd6-2447-4f9d-8979-fc28d127e9b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:43+00:00", - dateModified: "2022-10-30T00:09:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8924a9d2-a118-4e1f-8bd8-dba739d93c83", - self: "/apiContact/8924a9d2-a118-4e1f-8bd8-dba739d93c83", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:59+00:00", - dateModified: "2022-10-31T00:10:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ab39d8be-b046-4eeb-9fb1-fb44af7023cf", - self: "/apiContact/ab39d8be-b046-4eeb-9fb1-fb44af7023cf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:45+00:00", - dateModified: "2022-10-31T13:46:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed3669d0-d979-4d9a-9d83-829ac47d06ec", - self: "/apiContact/ed3669d0-d979-4d9a-9d83-829ac47d06ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:41+00:00", - dateModified: "2022-11-01T13:21:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a34d5737-8dfb-4fdb-9efb-6e789b8cd4e3", - self: "/apiContact/a34d5737-8dfb-4fdb-9efb-6e789b8cd4e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:07:16+00:00", - dateModified: "2022-11-02T14:07:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "519e5fbe-5342-4b26-8ac4-8991b275bf56", - self: "/apiContact/519e5fbe-5342-4b26-8ac4-8991b275bf56", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:30+00:00", - dateModified: "2022-11-03T13:55:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8006b04-9203-4ba4-bb8e-4c7579c46fe9", - self: "/apiContact/d8006b04-9203-4ba4-bb8e-4c7579c46fe9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:06:55+00:00", - dateModified: "2022-11-04T15:06:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "081ea851-c4cf-4cd9-bf2b-c3701747c3bf", - self: "/apiContact/081ea851-c4cf-4cd9-bf2b-c3701747c3bf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:15:03+00:00", - dateModified: "2022-11-10T10:15:03+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "598be69a-e699-49ce-811c-94fd64773e41", - self: "/apiContact/598be69a-e699-49ce-811c-94fd64773e41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:43+00:00", - dateModified: "2022-11-10T13:10:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "921873fc-0fb2-4572-b75a-98e75ed4f88f", - self: "/apiContact/921873fc-0fb2-4572-b75a-98e75ed4f88f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:15+00:00", - dateModified: "2022-11-21T12:55:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d0e68ac5-fc5e-4051-a344-f3a0b0c4dfe0", - self: "/apiContact/d0e68ac5-fc5e-4051-a344-f3a0b0c4dfe0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:58:13+00:00", - dateModified: "2022-11-21T12:58:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c31ae551-6d5d-4ada-bb6c-287bdc223514", - self: "/apiContact/c31ae551-6d5d-4ada-bb6c-287bdc223514", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:09:41+00:00", - dateModified: "2022-11-21T13:09:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "32625201-e221-4da9-ac11-9ccf20ef28df", - self: "/apiContact/32625201-e221-4da9-ac11-9ccf20ef28df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:41:08+00:00", - dateModified: "2022-11-22T15:41:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5bbcf813-07b9-48ac-9ef2-c296e106c3cb", - self: "/apiContact/5bbcf813-07b9-48ac-9ef2-c296e106c3cb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:21:25+00:00", - dateModified: "2022-11-22T17:21:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ff5e928-7823-403e-88a4-d4075ba00d15", - self: "/apiContact/3ff5e928-7823-403e-88a4-d4075ba00d15", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:08:51+00:00", - dateModified: "2022-11-22T17:08:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d9c0d297-77ab-406a-bb8d-70ddf4e86716", - self: "/apiContact/d9c0d297-77ab-406a-bb8d-70ddf4e86716", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:09:15+00:00", - dateModified: "2022-11-22T18:09:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "22a5cfb1-6efd-4b2b-b945-5da5c985f44a", - self: "/apiContact/22a5cfb1-6efd-4b2b-b945-5da5c985f44a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:39:26+00:00", - dateModified: "2022-11-22T19:39:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "08929d34-b060-485c-b96d-ee0b8c12fdee", - self: "/apiContact/08929d34-b060-485c-b96d-ee0b8c12fdee", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:41:39+00:00", - dateModified: "2022-11-22T21:41:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "337e5cd8-b05e-4611-b901-87db5453695b", - self: "/apiContact/337e5cd8-b05e-4611-b901-87db5453695b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:39:06+00:00", - dateModified: "2022-11-22T23:39:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7f12828b-3362-4c90-895b-0599be1ad3a9", - self: "/apiContact/7f12828b-3362-4c90-895b-0599be1ad3a9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:39:49+00:00", - dateModified: "2022-11-23T01:39:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d2f9b75-c337-43c8-abdc-0b14ab2d99e5", - self: "/apiContact/8d2f9b75-c337-43c8-abdc-0b14ab2d99e5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:41:23+00:00", - dateModified: "2022-11-23T03:41:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b7bc8ad1-88f3-4b93-8686-7e8a6afd70db", - self: "/apiContact/b7bc8ad1-88f3-4b93-8686-7e8a6afd70db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:41:20+00:00", - dateModified: "2022-11-23T05:41:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1bf6fb41-3385-4ae9-988e-b720da06fa02", - self: "/apiContact/1bf6fb41-3385-4ae9-988e-b720da06fa02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:40:18+00:00", - dateModified: "2022-11-23T07:40:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "df02654d-2d87-43a4-9adb-2b48ab784b62", - self: "/apiContact/df02654d-2d87-43a4-9adb-2b48ab784b62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:11:57+00:00", - dateModified: "2022-11-23T09:11:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "06f0ba6e-bb04-4164-9899-2b48bf1dec77", - self: "/apiContact/06f0ba6e-bb04-4164-9899-2b48bf1dec77", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:13:44+00:00", - dateModified: "2022-11-23T10:13:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0a812665-d023-4ada-897b-a301ffce9be1", - self: "/apiContact/0a812665-d023-4ada-897b-a301ffce9be1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:06:45+00:00", - dateModified: "2022-11-23T11:06:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ea0dac18-a4ed-4ac7-99d1-283e97bec6bd", - self: "/apiContact/ea0dac18-a4ed-4ac7-99d1-283e97bec6bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T12:03:13+00:00", - dateModified: "2022-11-23T12:03:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a26e7a4-bb9a-4695-b8c4-8e9c2639e676", - self: "/apiContact/5a26e7a4-bb9a-4695-b8c4-8e9c2639e676", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:57:30+00:00", - dateModified: "2022-11-23T13:57:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eb9542f4-0bbd-463a-bd56-ddde576f832f", - self: "/apiContact/eb9542f4-0bbd-463a-bd56-ddde576f832f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:42:22+00:00", - dateModified: "2022-11-23T14:42:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "86a737f6-58cf-4681-888b-d26e6165db03", - self: "/apiContact/86a737f6-58cf-4681-888b-d26e6165db03", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:54:04+00:00", - dateModified: "2022-11-23T15:54:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "122598fd-f17a-494c-8879-471718b47cd3", - self: "/apiContact/122598fd-f17a-494c-8879-471718b47cd3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:49:56+00:00", - dateModified: "2022-11-23T17:49:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96d3b732-433f-499e-b8f3-ee37e5f1c133", - self: "/apiContact/96d3b732-433f-499e-b8f3-ee37e5f1c133", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:48:21+00:00", - dateModified: "2022-11-23T19:48:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e9ed5e4-b528-49da-b54d-594046b27e79", - self: "/apiContact/7e9ed5e4-b528-49da-b54d-594046b27e79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:50:25+00:00", - dateModified: "2022-11-23T21:50:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "10d76f65-1008-4aad-bbc3-d758c5383b38", - self: "/apiContact/10d76f65-1008-4aad-bbc3-d758c5383b38", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:43:51+00:00", - dateModified: "2022-11-23T23:43:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "af830396-0757-4f26-bf86-ad6faa1d873a", - self: "/apiContact/af830396-0757-4f26-bf86-ad6faa1d873a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:42:12+00:00", - dateModified: "2022-11-24T01:42:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2dc9b59a-aa79-4067-9264-aa4ca15275ec", - self: "/apiContact/2dc9b59a-aa79-4067-9264-aa4ca15275ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:40:46+00:00", - dateModified: "2022-11-24T03:40:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "123749aa-538e-49f6-b0f7-1b26fa2aeeea", - self: "/apiContact/123749aa-538e-49f6-b0f7-1b26fa2aeeea", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:41:27+00:00", - dateModified: "2022-11-24T05:41:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7c084b7f-0870-43db-a254-77027a271f95", - self: "/apiContact/7c084b7f-0870-43db-a254-77027a271f95", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:48:52+00:00", - dateModified: "2022-11-24T07:48:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6329ce8e-e204-4587-8175-93846d9b4a62", - self: "/apiContact/6329ce8e-e204-4587-8175-93846d9b4a62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:46:48+00:00", - dateModified: "2022-11-24T09:46:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "25485cdf-3413-45fe-b837-d8924e6749e4", - self: "/apiContact/25485cdf-3413-45fe-b837-d8924e6749e4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:45:21+00:00", - dateModified: "2022-11-24T11:45:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c372a354-4210-4ac6-8570-24aae2f72e94", - self: "/apiContact/c372a354-4210-4ac6-8570-24aae2f72e94", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:18:16+00:00", - dateModified: "2022-12-09T11:18:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5f7ed755-b27c-4189-b78a-7ec5d20a0cf8", - self: "/apiContact/5f7ed755-b27c-4189-b78a-7ec5d20a0cf8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:57:07+00:00", - dateModified: "2022-12-09T12:57:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "09a7d58a-51c2-422c-b06f-8a130cb2ae93", - self: "/apiContact/09a7d58a-51c2-422c-b06f-8a130cb2ae93", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:56:59+00:00", - dateModified: "2022-12-10T14:56:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b1374b9e-9f4e-42f5-b194-84bf542cd693", - self: "/apiContact/b1374b9e-9f4e-42f5-b194-84bf542cd693", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:02:18+00:00", - dateModified: "2022-12-11T15:02:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5276259-d38d-418f-b8ca-0c1ef480c4b9", - self: "/apiContact/b5276259-d38d-418f-b8ca-0c1ef480c4b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T15:01:07+00:00", - dateModified: "2022-12-12T15:01:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "07b619b4-9ba2-46aa-a9da-4a371d682021", - self: "/apiRating/07b619b4-9ba2-46aa-a9da-4a371d682021", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:54+00:00", - dateModified: "2022-10-31T15:42:29+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: EAV Component rated", - "The url: https://github.com/ConductionNL/EAV-component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: EAV Component", - "Een implementatie van het EAV patroon voor opslaan en paseren overige objecten rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "029ad746-d079-4d0b-bcbd-ce4abb9a8d78", - }, - { - _id: "bc8c5338-bd14-4928-a397-1b1c4c90f7c4", - _self: { - id: "bc8c5338-bd14-4928-a397-1b1c4c90f7c4", - self: "/api/oc/components/bc8c5338-bd14-4928-a397-1b1c4c90f7c4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:27+00:00", - dateModified: "2022-12-12T14:59:51+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "ffe70740-f9fd-4717-ab5c-9be89cd4478e", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "171", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "58bda6a0-9d24-4b10-940b-e171c2800237", - self: "/apiRepository/58bda6a0-9d24-4b10-940b-e171c2800237", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "aec4516b-01f3-4120-9280-78a089c06489", - self: "/api/oc/organizations/aec4516b-01f3-4120-9280-78a089c06489", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:59+00:00", - dateModified: "2022-11-21T11:31:07+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "0af8ca67-d308-4539-bc7f-b22cc9408b88", - "31d35e84-45d6-4b21-83fb-4f0ff1ee9167", - "f36af760-abf2-409a-8e27-634de6a31656", - "062b4337-1af2-47c0-b20a-de25d2df3b66", - "9b323d3b-0fe3-494f-8fab-96bd293c50a7", - "61dade00-c44d-445c-88a8-eb2f54510317", - "c07b67e8-a45d-45d7-bfec-c41cda9ccd19", - "4111b0c0-6cc6-42c5-a381-3b827575ddbc", - "55792a32-4274-45d4-9ee1-6043add019b1", - "b21e9271-7e36-4690-a036-e9bb632dbfec", - "2d67027a-b599-4b25-80b6-09e7378e6043", - "72fdc556-e043-4d48-860a-33caf1885539", - "9be95b25-a027-4227-b342-91228c83d1e6", - "896166a8-0fb0-45cd-b25b-8252a2b1cc86", - "0dcde495-2f74-4456-bcb7-873016be63d9", - "e11d7a61-fea1-41c9-9055-8b0d21eca107", - "993f60ee-d359-4659-88b2-9c326fa4f267", - "58743182-0340-4fc5-8f92-c0dfb18c7033", - "f81911b1-8c9e-4ec3-9f70-f02b710dcfb4", - "0b08dd18-05f3-43bb-bd49-09749798d710", - "b88505dc-69af-4afa-a8f7-ff734b328fdd", - "8f966861-14a3-424b-94d2-e81f4514de82", - "47ff842d-c3cf-4079-8905-f7fc19507f2c", - "83bbb4b7-6a6e-4d21-86eb-be40e87efacb", - "e283ccd2-4e9f-4cbc-bafd-1a1c64c4c215", - "d97009f1-ca32-46a7-91aa-f40fd2701ed6", - "e10f9af3-d72d-4f71-8cb4-19490638eedd", - "b4b79e1d-373a-45db-87d8-1fa14070645d", - "de562135-2339-4ff8-9682-ce527e1f164f", - "7b68d751-1341-40ff-aacb-f4c252f1bc4c", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "digispoof-interface", - url: "https://github.com/ConductionNL/digispoof-interface", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-12-22T09:52:40Z", - stars: 0, - fork_count: 1, - issue_open_count: 7, - merge_request_open_count: null, - programming_languages: [ - "1191649", - "699269", - "382995", - "357754", - "125756", - "62291", - "56239", - "10387", - "3898", - "2383", - "962", - ], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "aec4516b-01f3-4120-9280-78a089c06489", - self: "/api/oc/organizations/aec4516b-01f3-4120-9280-78a089c06489", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:59+00:00", - dateModified: "2022-11-21T11:31:07+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "0af8ca67-d308-4539-bc7f-b22cc9408b88", - "31d35e84-45d6-4b21-83fb-4f0ff1ee9167", - "f36af760-abf2-409a-8e27-634de6a31656", - "062b4337-1af2-47c0-b20a-de25d2df3b66", - "9b323d3b-0fe3-494f-8fab-96bd293c50a7", - "61dade00-c44d-445c-88a8-eb2f54510317", - "c07b67e8-a45d-45d7-bfec-c41cda9ccd19", - "4111b0c0-6cc6-42c5-a381-3b827575ddbc", - "55792a32-4274-45d4-9ee1-6043add019b1", - "b21e9271-7e36-4690-a036-e9bb632dbfec", - "2d67027a-b599-4b25-80b6-09e7378e6043", - "72fdc556-e043-4d48-860a-33caf1885539", - "9be95b25-a027-4227-b342-91228c83d1e6", - "896166a8-0fb0-45cd-b25b-8252a2b1cc86", - "0dcde495-2f74-4456-bcb7-873016be63d9", - "e11d7a61-fea1-41c9-9055-8b0d21eca107", - "993f60ee-d359-4659-88b2-9c326fa4f267", - "58743182-0340-4fc5-8f92-c0dfb18c7033", - "f81911b1-8c9e-4ec3-9f70-f02b710dcfb4", - "0b08dd18-05f3-43bb-bd49-09749798d710", - "b88505dc-69af-4afa-a8f7-ff734b328fdd", - "8f966861-14a3-424b-94d2-e81f4514de82", - "47ff842d-c3cf-4079-8905-f7fc19507f2c", - "83bbb4b7-6a6e-4d21-86eb-be40e87efacb", - "e283ccd2-4e9f-4cbc-bafd-1a1c64c4c215", - "d97009f1-ca32-46a7-91aa-f40fd2701ed6", - "e10f9af3-d72d-4f71-8cb4-19490638eedd", - "b4b79e1d-373a-45db-87d8-1fa14070645d", - "de562135-2339-4ff8-9682-ce527e1f164f", - "7b68d751-1341-40ff-aacb-f4c252f1bc4c", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "5bceec33-8bd0-473c-bc34-902285098060", - self: "/apiDescription/5bceec33-8bd0-473c-bc34-902285098060", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: "Digispoof,Een digid mock", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "315f089c-deea-4dab-8a47-0a1fa92003db", - self: "/apiComponentlegalEntity/315f089c-deea-4dab-8a47-0a1fa92003db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "289abbfe-d9be-4277-a6be-1da29892506e", - self: "/api/oc/organizations/289abbfe-d9be-4277-a6be-1da29892506e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:18:00+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "289abbfe-d9be-4277-a6be-1da29892506e", - self: "/api/oc/organizations/289abbfe-d9be-4277-a6be-1da29892506e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:18:00+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "5c660701-e450-4e0b-8196-0ae6e2ad5e7d", - self: "/apiComponentnlEntity/5c660701-e450-4e0b-8196-0ae6e2ad5e7d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "f8cc5549-1f91-406d-8299-120b5e59543b", - self: "/apiComponentnlEntitycommongroundEntity/f8cc5549-1f91-406d-8299-120b5e59543b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:18:00+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "interface", - }, - embedded: { - commonground: { - _self: { - id: "f8cc5549-1f91-406d-8299-120b5e59543b", - self: "/apiComponentnlEntitycommongroundEntity/f8cc5549-1f91-406d-8299-120b5e59543b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:18:00+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "interface", - }, - }, - }, - maintenance: { - _self: { - id: "d134e031-319a-4d0e-b3cf-5142c44856ef", - self: "/apiComponentmaintenanceEntity/d134e031-319a-4d0e-b3cf-5142c44856ef", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "91251165-2df0-4698-b5a8-03772623cdd1", - self: "/apiContact/91251165-2df0-4698-b5a8-03772623cdd1", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f4eeb212-0098-4996-8b6e-c1f375d25170", - self: "/apiContact/f4eeb212-0098-4996-8b6e-c1f375d25170", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:58+00:00", - dateModified: "2022-10-28T15:17:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e1348207-ba20-4b44-ab16-1e0980a446a0", - self: "/apiContact/e1348207-ba20-4b44-ab16-1e0980a446a0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:14+00:00", - dateModified: "2022-10-28T15:18:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f9c5aff-4c43-4f62-ae53-8d2e6679c046", - self: "/apiContact/4f9c5aff-4c43-4f62-ae53-8d2e6679c046", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:16+00:00", - dateModified: "2022-10-28T15:18:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed0388c3-fdfb-44d7-8c9e-cf09cf58bc03", - self: "/apiContact/ed0388c3-fdfb-44d7-8c9e-cf09cf58bc03", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:40+00:00", - dateModified: "2022-10-28T15:18:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fcdb30e8-c3ea-4a71-ab98-b6572be12dbc", - self: "/apiContact/fcdb30e8-c3ea-4a71-ab98-b6572be12dbc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:42+00:00", - dateModified: "2022-10-29T00:04:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a9c3d4d3-b7fe-4f53-9770-b979e9cb5827", - self: "/apiContact/a9c3d4d3-b7fe-4f53-9770-b979e9cb5827", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:24+00:00", - dateModified: "2022-10-30T00:09:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5088005-dd7f-4c2c-bfa1-1fa40e500956", - self: "/apiContact/b5088005-dd7f-4c2c-bfa1-1fa40e500956", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:40+00:00", - dateModified: "2022-10-31T00:10:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "416de706-86e4-4672-a3ab-9af4889f6765", - self: "/apiContact/416de706-86e4-4672-a3ab-9af4889f6765", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:24+00:00", - dateModified: "2022-10-31T13:46:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d440a33e-8eaf-4aa9-bafd-1d35e890e48c", - self: "/apiContact/d440a33e-8eaf-4aa9-bafd-1d35e890e48c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:20+00:00", - dateModified: "2022-11-01T13:21:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5f5cbdfd-d6ea-4404-8679-2cf8d24bd26d", - self: "/apiContact/5f5cbdfd-d6ea-4404-8679-2cf8d24bd26d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:06:31+00:00", - dateModified: "2022-11-02T14:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c84174b-b6cf-4bf8-9cce-97381a8f8d13", - self: "/apiContact/2c84174b-b6cf-4bf8-9cce-97381a8f8d13", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:20+00:00", - dateModified: "2022-11-03T13:55:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "faf130ef-2d93-4b3d-9164-af323ea9bcf9", - self: "/apiContact/faf130ef-2d93-4b3d-9164-af323ea9bcf9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:05:46+00:00", - dateModified: "2022-11-04T15:05:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8fe44eb7-ca0a-4a3b-a293-19339d7ff3b6", - self: "/apiContact/8fe44eb7-ca0a-4a3b-a293-19339d7ff3b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:56+00:00", - dateModified: "2022-11-10T10:14:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "186aa295-c674-4ab7-bab3-f0b63a956902", - self: "/apiContact/186aa295-c674-4ab7-bab3-f0b63a956902", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:09+00:00", - dateModified: "2022-11-10T13:10:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5fc8650e-efae-4da6-a521-66c22d1874f4", - self: "/apiContact/5fc8650e-efae-4da6-a521-66c22d1874f4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:19+00:00", - dateModified: "2022-11-21T12:54:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "79f71229-d4e5-4560-aa1f-cee74124f6a9", - self: "/apiContact/79f71229-d4e5-4560-aa1f-cee74124f6a9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:57:09+00:00", - dateModified: "2022-11-21T12:57:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9493f0ae-8f8a-4cac-91ab-6ac3a2b7c05e", - self: "/apiContact/9493f0ae-8f8a-4cac-91ab-6ac3a2b7c05e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:08:39+00:00", - dateModified: "2022-11-21T13:08:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "799756c9-7be4-40f9-bd93-9697bbb9bf24", - self: "/apiContact/799756c9-7be4-40f9-bd93-9697bbb9bf24", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:37:50+00:00", - dateModified: "2022-11-22T15:37:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9d98f763-5fdc-4dbf-b27a-60a8f7509fa5", - self: "/apiContact/9d98f763-5fdc-4dbf-b27a-60a8f7509fa5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:14:22+00:00", - dateModified: "2022-11-22T17:14:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "82673cbc-c66e-4817-93aa-7f3f34819730", - self: "/apiContact/82673cbc-c66e-4817-93aa-7f3f34819730", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:03:19+00:00", - dateModified: "2022-11-22T17:03:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a97c259-947b-4955-8227-3dc3924b8e11", - self: "/apiContact/5a97c259-947b-4955-8227-3dc3924b8e11", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:06:00+00:00", - dateModified: "2022-11-22T18:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00f4519c-093a-4d33-8388-2593c5917941", - self: "/apiContact/00f4519c-093a-4d33-8388-2593c5917941", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:36:15+00:00", - dateModified: "2022-11-22T19:36:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f07ad234-00ae-488a-b730-85310e74a4a6", - self: "/apiContact/f07ad234-00ae-488a-b730-85310e74a4a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:38:09+00:00", - dateModified: "2022-11-22T21:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6f60cf29-cc03-4cdf-a5fc-919238290a5a", - self: "/apiContact/6f60cf29-cc03-4cdf-a5fc-919238290a5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:35:30+00:00", - dateModified: "2022-11-22T23:35:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1e574fc8-9cfe-4f0c-9cd4-3639eecbd8f9", - self: "/apiContact/1e574fc8-9cfe-4f0c-9cd4-3639eecbd8f9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:36:18+00:00", - dateModified: "2022-11-23T01:36:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "acd57bc7-a8b0-4421-b373-76e166e39ff2", - self: "/apiContact/acd57bc7-a8b0-4421-b373-76e166e39ff2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:37:50+00:00", - dateModified: "2022-11-23T03:37:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f4fab687-1c92-46ae-9deb-d3d514adfcd9", - self: "/apiContact/f4fab687-1c92-46ae-9deb-d3d514adfcd9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:37:52+00:00", - dateModified: "2022-11-23T05:37:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3102d59e-c3d7-4d70-b8ba-ad082281e94b", - self: "/apiContact/3102d59e-c3d7-4d70-b8ba-ad082281e94b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:36:42+00:00", - dateModified: "2022-11-23T07:36:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "85b042e0-a134-447f-90c8-44a7fe96437b", - self: "/apiContact/85b042e0-a134-447f-90c8-44a7fe96437b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:07:18+00:00", - dateModified: "2022-11-23T09:07:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1623b29b-1dac-4ee1-9ee6-f673892aa66b", - self: "/apiContact/1623b29b-1dac-4ee1-9ee6-f673892aa66b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:09:11+00:00", - dateModified: "2022-11-23T10:09:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6d60c1e-b88a-46b0-bba9-f2f0ff0acb72", - self: "/apiContact/f6d60c1e-b88a-46b0-bba9-f2f0ff0acb72", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:00:46+00:00", - dateModified: "2022-11-23T11:00:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1191b458-f91a-4e22-887c-5e4805b0e7d1", - self: "/apiContact/1191b458-f91a-4e22-887c-5e4805b0e7d1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:58:47+00:00", - dateModified: "2022-11-23T11:58:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74006c1a-2543-42b0-a77a-f2dbc93d40b6", - self: "/apiContact/74006c1a-2543-42b0-a77a-f2dbc93d40b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:51:37+00:00", - dateModified: "2022-11-23T13:51:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "89314eaa-2162-4cd8-8608-55a9e3d13e56", - self: "/apiContact/89314eaa-2162-4cd8-8608-55a9e3d13e56", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:36:58+00:00", - dateModified: "2022-11-23T14:36:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d58d8777-7065-48aa-86ca-31bde40aa9a6", - self: "/apiContact/d58d8777-7065-48aa-86ca-31bde40aa9a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:51:13+00:00", - dateModified: "2022-11-23T15:51:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "86e3e463-fccb-4076-b1c8-108a981cd4d6", - self: "/apiContact/86e3e463-fccb-4076-b1c8-108a981cd4d6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:46:40+00:00", - dateModified: "2022-11-23T17:46:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f7ecc345-0ffb-4e0b-95a3-a008bf8ddd59", - self: "/apiContact/f7ecc345-0ffb-4e0b-95a3-a008bf8ddd59", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:44:33+00:00", - dateModified: "2022-11-23T19:44:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ff09c926-2014-421f-80ea-22de2e32778b", - self: "/apiContact/ff09c926-2014-421f-80ea-22de2e32778b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:47:00+00:00", - dateModified: "2022-11-23T21:47:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b57f3e9c-43ed-4cb8-af1d-fd15f6c96c24", - self: "/apiContact/b57f3e9c-43ed-4cb8-af1d-fd15f6c96c24", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:40:11+00:00", - dateModified: "2022-11-23T23:40:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "01cfe7ea-4a62-4185-8b4d-fbb9d7ea9a4c", - self: "/apiContact/01cfe7ea-4a62-4185-8b4d-fbb9d7ea9a4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:38:25+00:00", - dateModified: "2022-11-24T01:38:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "176d65dc-c52d-4ba5-9d50-f651241631bc", - self: "/apiContact/176d65dc-c52d-4ba5-9d50-f651241631bc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:37:46+00:00", - dateModified: "2022-11-24T03:37:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dd282ae1-4c48-48c2-9e2d-473bca9ce578", - self: "/apiContact/dd282ae1-4c48-48c2-9e2d-473bca9ce578", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:38:09+00:00", - dateModified: "2022-11-24T05:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aa02ed3b-59eb-4e85-a185-c9af6c84d700", - self: "/apiContact/aa02ed3b-59eb-4e85-a185-c9af6c84d700", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:44:54+00:00", - dateModified: "2022-11-24T07:44:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7932813f-4fc9-42b3-8960-a8a254e39939", - self: "/apiContact/7932813f-4fc9-42b3-8960-a8a254e39939", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:43:23+00:00", - dateModified: "2022-11-24T09:43:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c7ccdcf0-7a51-415f-937a-c6ac7dbe5fdf", - self: "/apiContact/c7ccdcf0-7a51-415f-937a-c6ac7dbe5fdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:41:13+00:00", - dateModified: "2022-11-24T11:41:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0441d3ed-e1ad-4a76-b776-2928c1100688", - self: "/apiContact/0441d3ed-e1ad-4a76-b776-2928c1100688", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:15:24+00:00", - dateModified: "2022-12-09T11:15:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eb69df35-4c0f-43ab-9c5d-0d9ee74c35cb", - self: "/apiContact/eb69df35-4c0f-43ab-9c5d-0d9ee74c35cb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:55:26+00:00", - dateModified: "2022-12-09T12:55:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96fd5dd8-8987-4667-b351-df4b52c04261", - self: "/apiContact/96fd5dd8-8987-4667-b351-df4b52c04261", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:55:16+00:00", - dateModified: "2022-12-10T14:55:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8282380-6fad-4750-800e-ea7ac16a925d", - self: "/apiContact/d8282380-6fad-4750-800e-ea7ac16a925d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:00:33+00:00", - dateModified: "2022-12-11T15:00:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfe26a0a-ab22-4384-b59c-be9031a6ed5f", - self: "/apiContact/bfe26a0a-ab22-4384-b59c-be9031a6ed5f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:59:36+00:00", - dateModified: "2022-12-12T14:59:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "91251165-2df0-4698-b5a8-03772623cdd1", - self: "/apiContact/91251165-2df0-4698-b5a8-03772623cdd1", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f4eeb212-0098-4996-8b6e-c1f375d25170", - self: "/apiContact/f4eeb212-0098-4996-8b6e-c1f375d25170", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:58+00:00", - dateModified: "2022-10-28T15:17:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e1348207-ba20-4b44-ab16-1e0980a446a0", - self: "/apiContact/e1348207-ba20-4b44-ab16-1e0980a446a0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:14+00:00", - dateModified: "2022-10-28T15:18:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f9c5aff-4c43-4f62-ae53-8d2e6679c046", - self: "/apiContact/4f9c5aff-4c43-4f62-ae53-8d2e6679c046", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:16+00:00", - dateModified: "2022-10-28T15:18:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed0388c3-fdfb-44d7-8c9e-cf09cf58bc03", - self: "/apiContact/ed0388c3-fdfb-44d7-8c9e-cf09cf58bc03", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:40+00:00", - dateModified: "2022-10-28T15:18:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fcdb30e8-c3ea-4a71-ab98-b6572be12dbc", - self: "/apiContact/fcdb30e8-c3ea-4a71-ab98-b6572be12dbc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:42+00:00", - dateModified: "2022-10-29T00:04:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a9c3d4d3-b7fe-4f53-9770-b979e9cb5827", - self: "/apiContact/a9c3d4d3-b7fe-4f53-9770-b979e9cb5827", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:24+00:00", - dateModified: "2022-10-30T00:09:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5088005-dd7f-4c2c-bfa1-1fa40e500956", - self: "/apiContact/b5088005-dd7f-4c2c-bfa1-1fa40e500956", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:40+00:00", - dateModified: "2022-10-31T00:10:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "416de706-86e4-4672-a3ab-9af4889f6765", - self: "/apiContact/416de706-86e4-4672-a3ab-9af4889f6765", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:24+00:00", - dateModified: "2022-10-31T13:46:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d440a33e-8eaf-4aa9-bafd-1d35e890e48c", - self: "/apiContact/d440a33e-8eaf-4aa9-bafd-1d35e890e48c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:20+00:00", - dateModified: "2022-11-01T13:21:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5f5cbdfd-d6ea-4404-8679-2cf8d24bd26d", - self: "/apiContact/5f5cbdfd-d6ea-4404-8679-2cf8d24bd26d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:06:31+00:00", - dateModified: "2022-11-02T14:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c84174b-b6cf-4bf8-9cce-97381a8f8d13", - self: "/apiContact/2c84174b-b6cf-4bf8-9cce-97381a8f8d13", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:20+00:00", - dateModified: "2022-11-03T13:55:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "faf130ef-2d93-4b3d-9164-af323ea9bcf9", - self: "/apiContact/faf130ef-2d93-4b3d-9164-af323ea9bcf9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:05:46+00:00", - dateModified: "2022-11-04T15:05:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8fe44eb7-ca0a-4a3b-a293-19339d7ff3b6", - self: "/apiContact/8fe44eb7-ca0a-4a3b-a293-19339d7ff3b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:56+00:00", - dateModified: "2022-11-10T10:14:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "186aa295-c674-4ab7-bab3-f0b63a956902", - self: "/apiContact/186aa295-c674-4ab7-bab3-f0b63a956902", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:09+00:00", - dateModified: "2022-11-10T13:10:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5fc8650e-efae-4da6-a521-66c22d1874f4", - self: "/apiContact/5fc8650e-efae-4da6-a521-66c22d1874f4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:19+00:00", - dateModified: "2022-11-21T12:54:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "79f71229-d4e5-4560-aa1f-cee74124f6a9", - self: "/apiContact/79f71229-d4e5-4560-aa1f-cee74124f6a9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:57:09+00:00", - dateModified: "2022-11-21T12:57:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9493f0ae-8f8a-4cac-91ab-6ac3a2b7c05e", - self: "/apiContact/9493f0ae-8f8a-4cac-91ab-6ac3a2b7c05e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:08:39+00:00", - dateModified: "2022-11-21T13:08:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "799756c9-7be4-40f9-bd93-9697bbb9bf24", - self: "/apiContact/799756c9-7be4-40f9-bd93-9697bbb9bf24", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:37:50+00:00", - dateModified: "2022-11-22T15:37:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9d98f763-5fdc-4dbf-b27a-60a8f7509fa5", - self: "/apiContact/9d98f763-5fdc-4dbf-b27a-60a8f7509fa5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:14:22+00:00", - dateModified: "2022-11-22T17:14:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "82673cbc-c66e-4817-93aa-7f3f34819730", - self: "/apiContact/82673cbc-c66e-4817-93aa-7f3f34819730", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:03:19+00:00", - dateModified: "2022-11-22T17:03:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a97c259-947b-4955-8227-3dc3924b8e11", - self: "/apiContact/5a97c259-947b-4955-8227-3dc3924b8e11", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:06:00+00:00", - dateModified: "2022-11-22T18:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00f4519c-093a-4d33-8388-2593c5917941", - self: "/apiContact/00f4519c-093a-4d33-8388-2593c5917941", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:36:15+00:00", - dateModified: "2022-11-22T19:36:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f07ad234-00ae-488a-b730-85310e74a4a6", - self: "/apiContact/f07ad234-00ae-488a-b730-85310e74a4a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:38:09+00:00", - dateModified: "2022-11-22T21:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6f60cf29-cc03-4cdf-a5fc-919238290a5a", - self: "/apiContact/6f60cf29-cc03-4cdf-a5fc-919238290a5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:35:30+00:00", - dateModified: "2022-11-22T23:35:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1e574fc8-9cfe-4f0c-9cd4-3639eecbd8f9", - self: "/apiContact/1e574fc8-9cfe-4f0c-9cd4-3639eecbd8f9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:36:18+00:00", - dateModified: "2022-11-23T01:36:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "acd57bc7-a8b0-4421-b373-76e166e39ff2", - self: "/apiContact/acd57bc7-a8b0-4421-b373-76e166e39ff2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:37:50+00:00", - dateModified: "2022-11-23T03:37:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f4fab687-1c92-46ae-9deb-d3d514adfcd9", - self: "/apiContact/f4fab687-1c92-46ae-9deb-d3d514adfcd9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:37:52+00:00", - dateModified: "2022-11-23T05:37:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3102d59e-c3d7-4d70-b8ba-ad082281e94b", - self: "/apiContact/3102d59e-c3d7-4d70-b8ba-ad082281e94b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:36:42+00:00", - dateModified: "2022-11-23T07:36:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "85b042e0-a134-447f-90c8-44a7fe96437b", - self: "/apiContact/85b042e0-a134-447f-90c8-44a7fe96437b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:07:18+00:00", - dateModified: "2022-11-23T09:07:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1623b29b-1dac-4ee1-9ee6-f673892aa66b", - self: "/apiContact/1623b29b-1dac-4ee1-9ee6-f673892aa66b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:09:11+00:00", - dateModified: "2022-11-23T10:09:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6d60c1e-b88a-46b0-bba9-f2f0ff0acb72", - self: "/apiContact/f6d60c1e-b88a-46b0-bba9-f2f0ff0acb72", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:00:46+00:00", - dateModified: "2022-11-23T11:00:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1191b458-f91a-4e22-887c-5e4805b0e7d1", - self: "/apiContact/1191b458-f91a-4e22-887c-5e4805b0e7d1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:58:47+00:00", - dateModified: "2022-11-23T11:58:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74006c1a-2543-42b0-a77a-f2dbc93d40b6", - self: "/apiContact/74006c1a-2543-42b0-a77a-f2dbc93d40b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:51:37+00:00", - dateModified: "2022-11-23T13:51:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "89314eaa-2162-4cd8-8608-55a9e3d13e56", - self: "/apiContact/89314eaa-2162-4cd8-8608-55a9e3d13e56", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:36:58+00:00", - dateModified: "2022-11-23T14:36:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d58d8777-7065-48aa-86ca-31bde40aa9a6", - self: "/apiContact/d58d8777-7065-48aa-86ca-31bde40aa9a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:51:13+00:00", - dateModified: "2022-11-23T15:51:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "86e3e463-fccb-4076-b1c8-108a981cd4d6", - self: "/apiContact/86e3e463-fccb-4076-b1c8-108a981cd4d6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:46:40+00:00", - dateModified: "2022-11-23T17:46:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f7ecc345-0ffb-4e0b-95a3-a008bf8ddd59", - self: "/apiContact/f7ecc345-0ffb-4e0b-95a3-a008bf8ddd59", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:44:33+00:00", - dateModified: "2022-11-23T19:44:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ff09c926-2014-421f-80ea-22de2e32778b", - self: "/apiContact/ff09c926-2014-421f-80ea-22de2e32778b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:47:00+00:00", - dateModified: "2022-11-23T21:47:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b57f3e9c-43ed-4cb8-af1d-fd15f6c96c24", - self: "/apiContact/b57f3e9c-43ed-4cb8-af1d-fd15f6c96c24", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:40:11+00:00", - dateModified: "2022-11-23T23:40:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "01cfe7ea-4a62-4185-8b4d-fbb9d7ea9a4c", - self: "/apiContact/01cfe7ea-4a62-4185-8b4d-fbb9d7ea9a4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:38:25+00:00", - dateModified: "2022-11-24T01:38:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "176d65dc-c52d-4ba5-9d50-f651241631bc", - self: "/apiContact/176d65dc-c52d-4ba5-9d50-f651241631bc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:37:46+00:00", - dateModified: "2022-11-24T03:37:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dd282ae1-4c48-48c2-9e2d-473bca9ce578", - self: "/apiContact/dd282ae1-4c48-48c2-9e2d-473bca9ce578", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:38:09+00:00", - dateModified: "2022-11-24T05:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aa02ed3b-59eb-4e85-a185-c9af6c84d700", - self: "/apiContact/aa02ed3b-59eb-4e85-a185-c9af6c84d700", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:44:54+00:00", - dateModified: "2022-11-24T07:44:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7932813f-4fc9-42b3-8960-a8a254e39939", - self: "/apiContact/7932813f-4fc9-42b3-8960-a8a254e39939", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:43:23+00:00", - dateModified: "2022-11-24T09:43:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c7ccdcf0-7a51-415f-937a-c6ac7dbe5fdf", - self: "/apiContact/c7ccdcf0-7a51-415f-937a-c6ac7dbe5fdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:41:13+00:00", - dateModified: "2022-11-24T11:41:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0441d3ed-e1ad-4a76-b776-2928c1100688", - self: "/apiContact/0441d3ed-e1ad-4a76-b776-2928c1100688", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:15:24+00:00", - dateModified: "2022-12-09T11:15:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eb69df35-4c0f-43ab-9c5d-0d9ee74c35cb", - self: "/apiContact/eb69df35-4c0f-43ab-9c5d-0d9ee74c35cb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:55:26+00:00", - dateModified: "2022-12-09T12:55:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96fd5dd8-8987-4667-b351-df4b52c04261", - self: "/apiContact/96fd5dd8-8987-4667-b351-df4b52c04261", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:55:16+00:00", - dateModified: "2022-12-10T14:55:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8282380-6fad-4750-800e-ea7ac16a925d", - self: "/apiContact/d8282380-6fad-4750-800e-ea7ac16a925d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:00:33+00:00", - dateModified: "2022-12-11T15:00:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfe26a0a-ab22-4384-b59c-be9031a6ed5f", - self: "/apiContact/bfe26a0a-ab22-4384-b59c-be9031a6ed5f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:59:36+00:00", - dateModified: "2022-12-12T14:59:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "f4ce55f2-a4ce-4c1a-a51e-4218a557b4a1", - self: "/apiRating/f4ce55f2-a4ce-4c1a-a51e-4218a557b4a1", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:50+00:00", - dateModified: "2022-11-21T11:31:07+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Digispoof rated", - "The url: https://github.com/ConductionNL/digispoof-interface rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Digispoof", - "Een digid mock rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "Digispoof", - embedded: { - url: { - _self: { - id: "58bda6a0-9d24-4b10-940b-e171c2800237", - self: "/apiRepository/58bda6a0-9d24-4b10-940b-e171c2800237", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "aec4516b-01f3-4120-9280-78a089c06489", - self: "/api/oc/organizations/aec4516b-01f3-4120-9280-78a089c06489", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:59+00:00", - dateModified: "2022-11-21T11:31:07+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "0af8ca67-d308-4539-bc7f-b22cc9408b88", - "31d35e84-45d6-4b21-83fb-4f0ff1ee9167", - "f36af760-abf2-409a-8e27-634de6a31656", - "062b4337-1af2-47c0-b20a-de25d2df3b66", - "9b323d3b-0fe3-494f-8fab-96bd293c50a7", - "61dade00-c44d-445c-88a8-eb2f54510317", - "c07b67e8-a45d-45d7-bfec-c41cda9ccd19", - "4111b0c0-6cc6-42c5-a381-3b827575ddbc", - "55792a32-4274-45d4-9ee1-6043add019b1", - "b21e9271-7e36-4690-a036-e9bb632dbfec", - "2d67027a-b599-4b25-80b6-09e7378e6043", - "72fdc556-e043-4d48-860a-33caf1885539", - "9be95b25-a027-4227-b342-91228c83d1e6", - "896166a8-0fb0-45cd-b25b-8252a2b1cc86", - "0dcde495-2f74-4456-bcb7-873016be63d9", - "e11d7a61-fea1-41c9-9055-8b0d21eca107", - "993f60ee-d359-4659-88b2-9c326fa4f267", - "58743182-0340-4fc5-8f92-c0dfb18c7033", - "f81911b1-8c9e-4ec3-9f70-f02b710dcfb4", - "0b08dd18-05f3-43bb-bd49-09749798d710", - "b88505dc-69af-4afa-a8f7-ff734b328fdd", - "8f966861-14a3-424b-94d2-e81f4514de82", - "47ff842d-c3cf-4079-8905-f7fc19507f2c", - "83bbb4b7-6a6e-4d21-86eb-be40e87efacb", - "e283ccd2-4e9f-4cbc-bafd-1a1c64c4c215", - "d97009f1-ca32-46a7-91aa-f40fd2701ed6", - "e10f9af3-d72d-4f71-8cb4-19490638eedd", - "b4b79e1d-373a-45db-87d8-1fa14070645d", - "de562135-2339-4ff8-9682-ce527e1f164f", - "7b68d751-1341-40ff-aacb-f4c252f1bc4c", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "digispoof-interface", - url: "https://github.com/ConductionNL/digispoof-interface", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-12-22T09:52:40Z", - stars: 0, - fork_count: 1, - issue_open_count: 7, - merge_request_open_count: null, - programming_languages: [ - "1191649", - "699269", - "382995", - "357754", - "125756", - "62291", - "56239", - "10387", - "3898", - "2383", - "962", - ], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "aec4516b-01f3-4120-9280-78a089c06489", - self: "/api/oc/organizations/aec4516b-01f3-4120-9280-78a089c06489", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:59+00:00", - dateModified: "2022-11-21T11:31:07+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "0af8ca67-d308-4539-bc7f-b22cc9408b88", - "31d35e84-45d6-4b21-83fb-4f0ff1ee9167", - "f36af760-abf2-409a-8e27-634de6a31656", - "062b4337-1af2-47c0-b20a-de25d2df3b66", - "9b323d3b-0fe3-494f-8fab-96bd293c50a7", - "61dade00-c44d-445c-88a8-eb2f54510317", - "c07b67e8-a45d-45d7-bfec-c41cda9ccd19", - "4111b0c0-6cc6-42c5-a381-3b827575ddbc", - "55792a32-4274-45d4-9ee1-6043add019b1", - "b21e9271-7e36-4690-a036-e9bb632dbfec", - "2d67027a-b599-4b25-80b6-09e7378e6043", - "72fdc556-e043-4d48-860a-33caf1885539", - "9be95b25-a027-4227-b342-91228c83d1e6", - "896166a8-0fb0-45cd-b25b-8252a2b1cc86", - "0dcde495-2f74-4456-bcb7-873016be63d9", - "e11d7a61-fea1-41c9-9055-8b0d21eca107", - "993f60ee-d359-4659-88b2-9c326fa4f267", - "58743182-0340-4fc5-8f92-c0dfb18c7033", - "f81911b1-8c9e-4ec3-9f70-f02b710dcfb4", - "0b08dd18-05f3-43bb-bd49-09749798d710", - "b88505dc-69af-4afa-a8f7-ff734b328fdd", - "8f966861-14a3-424b-94d2-e81f4514de82", - "47ff842d-c3cf-4079-8905-f7fc19507f2c", - "83bbb4b7-6a6e-4d21-86eb-be40e87efacb", - "e283ccd2-4e9f-4cbc-bafd-1a1c64c4c215", - "d97009f1-ca32-46a7-91aa-f40fd2701ed6", - "e10f9af3-d72d-4f71-8cb4-19490638eedd", - "b4b79e1d-373a-45db-87d8-1fa14070645d", - "de562135-2339-4ff8-9682-ce527e1f164f", - "7b68d751-1341-40ff-aacb-f4c252f1bc4c", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "5bceec33-8bd0-473c-bc34-902285098060", - self: "/apiDescription/5bceec33-8bd0-473c-bc34-902285098060", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: "Digispoof,Een digid mock", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "315f089c-deea-4dab-8a47-0a1fa92003db", - self: "/apiComponentlegalEntity/315f089c-deea-4dab-8a47-0a1fa92003db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "289abbfe-d9be-4277-a6be-1da29892506e", - self: "/api/oc/organizations/289abbfe-d9be-4277-a6be-1da29892506e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:18:00+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "289abbfe-d9be-4277-a6be-1da29892506e", - self: "/api/oc/organizations/289abbfe-d9be-4277-a6be-1da29892506e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:18:00+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "5c660701-e450-4e0b-8196-0ae6e2ad5e7d", - self: "/apiComponentnlEntity/5c660701-e450-4e0b-8196-0ae6e2ad5e7d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "f8cc5549-1f91-406d-8299-120b5e59543b", - self: "/apiComponentnlEntitycommongroundEntity/f8cc5549-1f91-406d-8299-120b5e59543b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:18:00+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "interface", - }, - embedded: { - commonground: { - _self: { - id: "f8cc5549-1f91-406d-8299-120b5e59543b", - self: "/apiComponentnlEntitycommongroundEntity/f8cc5549-1f91-406d-8299-120b5e59543b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:18:00+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "interface", - }, - }, - }, - maintenance: { - _self: { - id: "d134e031-319a-4d0e-b3cf-5142c44856ef", - self: "/apiComponentmaintenanceEntity/d134e031-319a-4d0e-b3cf-5142c44856ef", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "91251165-2df0-4698-b5a8-03772623cdd1", - self: "/apiContact/91251165-2df0-4698-b5a8-03772623cdd1", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f4eeb212-0098-4996-8b6e-c1f375d25170", - self: "/apiContact/f4eeb212-0098-4996-8b6e-c1f375d25170", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:58+00:00", - dateModified: "2022-10-28T15:17:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e1348207-ba20-4b44-ab16-1e0980a446a0", - self: "/apiContact/e1348207-ba20-4b44-ab16-1e0980a446a0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:14+00:00", - dateModified: "2022-10-28T15:18:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f9c5aff-4c43-4f62-ae53-8d2e6679c046", - self: "/apiContact/4f9c5aff-4c43-4f62-ae53-8d2e6679c046", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:16+00:00", - dateModified: "2022-10-28T15:18:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed0388c3-fdfb-44d7-8c9e-cf09cf58bc03", - self: "/apiContact/ed0388c3-fdfb-44d7-8c9e-cf09cf58bc03", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:40+00:00", - dateModified: "2022-10-28T15:18:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fcdb30e8-c3ea-4a71-ab98-b6572be12dbc", - self: "/apiContact/fcdb30e8-c3ea-4a71-ab98-b6572be12dbc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:42+00:00", - dateModified: "2022-10-29T00:04:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a9c3d4d3-b7fe-4f53-9770-b979e9cb5827", - self: "/apiContact/a9c3d4d3-b7fe-4f53-9770-b979e9cb5827", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:24+00:00", - dateModified: "2022-10-30T00:09:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5088005-dd7f-4c2c-bfa1-1fa40e500956", - self: "/apiContact/b5088005-dd7f-4c2c-bfa1-1fa40e500956", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:40+00:00", - dateModified: "2022-10-31T00:10:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "416de706-86e4-4672-a3ab-9af4889f6765", - self: "/apiContact/416de706-86e4-4672-a3ab-9af4889f6765", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:24+00:00", - dateModified: "2022-10-31T13:46:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d440a33e-8eaf-4aa9-bafd-1d35e890e48c", - self: "/apiContact/d440a33e-8eaf-4aa9-bafd-1d35e890e48c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:20+00:00", - dateModified: "2022-11-01T13:21:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5f5cbdfd-d6ea-4404-8679-2cf8d24bd26d", - self: "/apiContact/5f5cbdfd-d6ea-4404-8679-2cf8d24bd26d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:06:31+00:00", - dateModified: "2022-11-02T14:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c84174b-b6cf-4bf8-9cce-97381a8f8d13", - self: "/apiContact/2c84174b-b6cf-4bf8-9cce-97381a8f8d13", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:20+00:00", - dateModified: "2022-11-03T13:55:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "faf130ef-2d93-4b3d-9164-af323ea9bcf9", - self: "/apiContact/faf130ef-2d93-4b3d-9164-af323ea9bcf9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:05:46+00:00", - dateModified: "2022-11-04T15:05:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8fe44eb7-ca0a-4a3b-a293-19339d7ff3b6", - self: "/apiContact/8fe44eb7-ca0a-4a3b-a293-19339d7ff3b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:56+00:00", - dateModified: "2022-11-10T10:14:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "186aa295-c674-4ab7-bab3-f0b63a956902", - self: "/apiContact/186aa295-c674-4ab7-bab3-f0b63a956902", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:09+00:00", - dateModified: "2022-11-10T13:10:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5fc8650e-efae-4da6-a521-66c22d1874f4", - self: "/apiContact/5fc8650e-efae-4da6-a521-66c22d1874f4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:19+00:00", - dateModified: "2022-11-21T12:54:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "79f71229-d4e5-4560-aa1f-cee74124f6a9", - self: "/apiContact/79f71229-d4e5-4560-aa1f-cee74124f6a9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:57:09+00:00", - dateModified: "2022-11-21T12:57:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9493f0ae-8f8a-4cac-91ab-6ac3a2b7c05e", - self: "/apiContact/9493f0ae-8f8a-4cac-91ab-6ac3a2b7c05e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:08:39+00:00", - dateModified: "2022-11-21T13:08:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "799756c9-7be4-40f9-bd93-9697bbb9bf24", - self: "/apiContact/799756c9-7be4-40f9-bd93-9697bbb9bf24", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:37:50+00:00", - dateModified: "2022-11-22T15:37:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9d98f763-5fdc-4dbf-b27a-60a8f7509fa5", - self: "/apiContact/9d98f763-5fdc-4dbf-b27a-60a8f7509fa5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:14:22+00:00", - dateModified: "2022-11-22T17:14:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "82673cbc-c66e-4817-93aa-7f3f34819730", - self: "/apiContact/82673cbc-c66e-4817-93aa-7f3f34819730", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:03:19+00:00", - dateModified: "2022-11-22T17:03:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a97c259-947b-4955-8227-3dc3924b8e11", - self: "/apiContact/5a97c259-947b-4955-8227-3dc3924b8e11", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:06:00+00:00", - dateModified: "2022-11-22T18:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00f4519c-093a-4d33-8388-2593c5917941", - self: "/apiContact/00f4519c-093a-4d33-8388-2593c5917941", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:36:15+00:00", - dateModified: "2022-11-22T19:36:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f07ad234-00ae-488a-b730-85310e74a4a6", - self: "/apiContact/f07ad234-00ae-488a-b730-85310e74a4a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:38:09+00:00", - dateModified: "2022-11-22T21:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6f60cf29-cc03-4cdf-a5fc-919238290a5a", - self: "/apiContact/6f60cf29-cc03-4cdf-a5fc-919238290a5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:35:30+00:00", - dateModified: "2022-11-22T23:35:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1e574fc8-9cfe-4f0c-9cd4-3639eecbd8f9", - self: "/apiContact/1e574fc8-9cfe-4f0c-9cd4-3639eecbd8f9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:36:18+00:00", - dateModified: "2022-11-23T01:36:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "acd57bc7-a8b0-4421-b373-76e166e39ff2", - self: "/apiContact/acd57bc7-a8b0-4421-b373-76e166e39ff2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:37:50+00:00", - dateModified: "2022-11-23T03:37:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f4fab687-1c92-46ae-9deb-d3d514adfcd9", - self: "/apiContact/f4fab687-1c92-46ae-9deb-d3d514adfcd9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:37:52+00:00", - dateModified: "2022-11-23T05:37:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3102d59e-c3d7-4d70-b8ba-ad082281e94b", - self: "/apiContact/3102d59e-c3d7-4d70-b8ba-ad082281e94b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:36:42+00:00", - dateModified: "2022-11-23T07:36:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "85b042e0-a134-447f-90c8-44a7fe96437b", - self: "/apiContact/85b042e0-a134-447f-90c8-44a7fe96437b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:07:18+00:00", - dateModified: "2022-11-23T09:07:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1623b29b-1dac-4ee1-9ee6-f673892aa66b", - self: "/apiContact/1623b29b-1dac-4ee1-9ee6-f673892aa66b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:09:11+00:00", - dateModified: "2022-11-23T10:09:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6d60c1e-b88a-46b0-bba9-f2f0ff0acb72", - self: "/apiContact/f6d60c1e-b88a-46b0-bba9-f2f0ff0acb72", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:00:46+00:00", - dateModified: "2022-11-23T11:00:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1191b458-f91a-4e22-887c-5e4805b0e7d1", - self: "/apiContact/1191b458-f91a-4e22-887c-5e4805b0e7d1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:58:47+00:00", - dateModified: "2022-11-23T11:58:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74006c1a-2543-42b0-a77a-f2dbc93d40b6", - self: "/apiContact/74006c1a-2543-42b0-a77a-f2dbc93d40b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:51:37+00:00", - dateModified: "2022-11-23T13:51:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "89314eaa-2162-4cd8-8608-55a9e3d13e56", - self: "/apiContact/89314eaa-2162-4cd8-8608-55a9e3d13e56", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:36:58+00:00", - dateModified: "2022-11-23T14:36:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d58d8777-7065-48aa-86ca-31bde40aa9a6", - self: "/apiContact/d58d8777-7065-48aa-86ca-31bde40aa9a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:51:13+00:00", - dateModified: "2022-11-23T15:51:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "86e3e463-fccb-4076-b1c8-108a981cd4d6", - self: "/apiContact/86e3e463-fccb-4076-b1c8-108a981cd4d6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:46:40+00:00", - dateModified: "2022-11-23T17:46:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f7ecc345-0ffb-4e0b-95a3-a008bf8ddd59", - self: "/apiContact/f7ecc345-0ffb-4e0b-95a3-a008bf8ddd59", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:44:33+00:00", - dateModified: "2022-11-23T19:44:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ff09c926-2014-421f-80ea-22de2e32778b", - self: "/apiContact/ff09c926-2014-421f-80ea-22de2e32778b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:47:00+00:00", - dateModified: "2022-11-23T21:47:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b57f3e9c-43ed-4cb8-af1d-fd15f6c96c24", - self: "/apiContact/b57f3e9c-43ed-4cb8-af1d-fd15f6c96c24", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:40:11+00:00", - dateModified: "2022-11-23T23:40:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "01cfe7ea-4a62-4185-8b4d-fbb9d7ea9a4c", - self: "/apiContact/01cfe7ea-4a62-4185-8b4d-fbb9d7ea9a4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:38:25+00:00", - dateModified: "2022-11-24T01:38:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "176d65dc-c52d-4ba5-9d50-f651241631bc", - self: "/apiContact/176d65dc-c52d-4ba5-9d50-f651241631bc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:37:46+00:00", - dateModified: "2022-11-24T03:37:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dd282ae1-4c48-48c2-9e2d-473bca9ce578", - self: "/apiContact/dd282ae1-4c48-48c2-9e2d-473bca9ce578", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:38:09+00:00", - dateModified: "2022-11-24T05:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aa02ed3b-59eb-4e85-a185-c9af6c84d700", - self: "/apiContact/aa02ed3b-59eb-4e85-a185-c9af6c84d700", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:44:54+00:00", - dateModified: "2022-11-24T07:44:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7932813f-4fc9-42b3-8960-a8a254e39939", - self: "/apiContact/7932813f-4fc9-42b3-8960-a8a254e39939", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:43:23+00:00", - dateModified: "2022-11-24T09:43:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c7ccdcf0-7a51-415f-937a-c6ac7dbe5fdf", - self: "/apiContact/c7ccdcf0-7a51-415f-937a-c6ac7dbe5fdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:41:13+00:00", - dateModified: "2022-11-24T11:41:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0441d3ed-e1ad-4a76-b776-2928c1100688", - self: "/apiContact/0441d3ed-e1ad-4a76-b776-2928c1100688", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:15:24+00:00", - dateModified: "2022-12-09T11:15:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eb69df35-4c0f-43ab-9c5d-0d9ee74c35cb", - self: "/apiContact/eb69df35-4c0f-43ab-9c5d-0d9ee74c35cb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:55:26+00:00", - dateModified: "2022-12-09T12:55:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96fd5dd8-8987-4667-b351-df4b52c04261", - self: "/apiContact/96fd5dd8-8987-4667-b351-df4b52c04261", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:55:16+00:00", - dateModified: "2022-12-10T14:55:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8282380-6fad-4750-800e-ea7ac16a925d", - self: "/apiContact/d8282380-6fad-4750-800e-ea7ac16a925d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:00:33+00:00", - dateModified: "2022-12-11T15:00:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfe26a0a-ab22-4384-b59c-be9031a6ed5f", - self: "/apiContact/bfe26a0a-ab22-4384-b59c-be9031a6ed5f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:59:36+00:00", - dateModified: "2022-12-12T14:59:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "91251165-2df0-4698-b5a8-03772623cdd1", - self: "/apiContact/91251165-2df0-4698-b5a8-03772623cdd1", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:16:28+00:00", - dateModified: "2022-10-28T15:16:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f4eeb212-0098-4996-8b6e-c1f375d25170", - self: "/apiContact/f4eeb212-0098-4996-8b6e-c1f375d25170", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:58+00:00", - dateModified: "2022-10-28T15:17:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e1348207-ba20-4b44-ab16-1e0980a446a0", - self: "/apiContact/e1348207-ba20-4b44-ab16-1e0980a446a0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:14+00:00", - dateModified: "2022-10-28T15:18:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f9c5aff-4c43-4f62-ae53-8d2e6679c046", - self: "/apiContact/4f9c5aff-4c43-4f62-ae53-8d2e6679c046", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:16+00:00", - dateModified: "2022-10-28T15:18:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed0388c3-fdfb-44d7-8c9e-cf09cf58bc03", - self: "/apiContact/ed0388c3-fdfb-44d7-8c9e-cf09cf58bc03", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:40+00:00", - dateModified: "2022-10-28T15:18:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fcdb30e8-c3ea-4a71-ab98-b6572be12dbc", - self: "/apiContact/fcdb30e8-c3ea-4a71-ab98-b6572be12dbc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:42+00:00", - dateModified: "2022-10-29T00:04:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a9c3d4d3-b7fe-4f53-9770-b979e9cb5827", - self: "/apiContact/a9c3d4d3-b7fe-4f53-9770-b979e9cb5827", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:24+00:00", - dateModified: "2022-10-30T00:09:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b5088005-dd7f-4c2c-bfa1-1fa40e500956", - self: "/apiContact/b5088005-dd7f-4c2c-bfa1-1fa40e500956", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:40+00:00", - dateModified: "2022-10-31T00:10:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "416de706-86e4-4672-a3ab-9af4889f6765", - self: "/apiContact/416de706-86e4-4672-a3ab-9af4889f6765", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:46:24+00:00", - dateModified: "2022-10-31T13:46:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d440a33e-8eaf-4aa9-bafd-1d35e890e48c", - self: "/apiContact/d440a33e-8eaf-4aa9-bafd-1d35e890e48c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:21:20+00:00", - dateModified: "2022-11-01T13:21:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5f5cbdfd-d6ea-4404-8679-2cf8d24bd26d", - self: "/apiContact/5f5cbdfd-d6ea-4404-8679-2cf8d24bd26d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:06:31+00:00", - dateModified: "2022-11-02T14:06:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c84174b-b6cf-4bf8-9cce-97381a8f8d13", - self: "/apiContact/2c84174b-b6cf-4bf8-9cce-97381a8f8d13", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:20+00:00", - dateModified: "2022-11-03T13:55:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "faf130ef-2d93-4b3d-9164-af323ea9bcf9", - self: "/apiContact/faf130ef-2d93-4b3d-9164-af323ea9bcf9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:05:46+00:00", - dateModified: "2022-11-04T15:05:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8fe44eb7-ca0a-4a3b-a293-19339d7ff3b6", - self: "/apiContact/8fe44eb7-ca0a-4a3b-a293-19339d7ff3b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:56+00:00", - dateModified: "2022-11-10T10:14:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "186aa295-c674-4ab7-bab3-f0b63a956902", - self: "/apiContact/186aa295-c674-4ab7-bab3-f0b63a956902", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:10:09+00:00", - dateModified: "2022-11-10T13:10:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5fc8650e-efae-4da6-a521-66c22d1874f4", - self: "/apiContact/5fc8650e-efae-4da6-a521-66c22d1874f4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:19+00:00", - dateModified: "2022-11-21T12:54:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "79f71229-d4e5-4560-aa1f-cee74124f6a9", - self: "/apiContact/79f71229-d4e5-4560-aa1f-cee74124f6a9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:57:09+00:00", - dateModified: "2022-11-21T12:57:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9493f0ae-8f8a-4cac-91ab-6ac3a2b7c05e", - self: "/apiContact/9493f0ae-8f8a-4cac-91ab-6ac3a2b7c05e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:08:39+00:00", - dateModified: "2022-11-21T13:08:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "799756c9-7be4-40f9-bd93-9697bbb9bf24", - self: "/apiContact/799756c9-7be4-40f9-bd93-9697bbb9bf24", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:37:50+00:00", - dateModified: "2022-11-22T15:37:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9d98f763-5fdc-4dbf-b27a-60a8f7509fa5", - self: "/apiContact/9d98f763-5fdc-4dbf-b27a-60a8f7509fa5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:14:22+00:00", - dateModified: "2022-11-22T17:14:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "82673cbc-c66e-4817-93aa-7f3f34819730", - self: "/apiContact/82673cbc-c66e-4817-93aa-7f3f34819730", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:03:19+00:00", - dateModified: "2022-11-22T17:03:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a97c259-947b-4955-8227-3dc3924b8e11", - self: "/apiContact/5a97c259-947b-4955-8227-3dc3924b8e11", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:06:00+00:00", - dateModified: "2022-11-22T18:06:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00f4519c-093a-4d33-8388-2593c5917941", - self: "/apiContact/00f4519c-093a-4d33-8388-2593c5917941", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:36:15+00:00", - dateModified: "2022-11-22T19:36:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f07ad234-00ae-488a-b730-85310e74a4a6", - self: "/apiContact/f07ad234-00ae-488a-b730-85310e74a4a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:38:09+00:00", - dateModified: "2022-11-22T21:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6f60cf29-cc03-4cdf-a5fc-919238290a5a", - self: "/apiContact/6f60cf29-cc03-4cdf-a5fc-919238290a5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:35:30+00:00", - dateModified: "2022-11-22T23:35:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1e574fc8-9cfe-4f0c-9cd4-3639eecbd8f9", - self: "/apiContact/1e574fc8-9cfe-4f0c-9cd4-3639eecbd8f9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:36:18+00:00", - dateModified: "2022-11-23T01:36:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "acd57bc7-a8b0-4421-b373-76e166e39ff2", - self: "/apiContact/acd57bc7-a8b0-4421-b373-76e166e39ff2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:37:50+00:00", - dateModified: "2022-11-23T03:37:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f4fab687-1c92-46ae-9deb-d3d514adfcd9", - self: "/apiContact/f4fab687-1c92-46ae-9deb-d3d514adfcd9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:37:52+00:00", - dateModified: "2022-11-23T05:37:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3102d59e-c3d7-4d70-b8ba-ad082281e94b", - self: "/apiContact/3102d59e-c3d7-4d70-b8ba-ad082281e94b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:36:42+00:00", - dateModified: "2022-11-23T07:36:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "85b042e0-a134-447f-90c8-44a7fe96437b", - self: "/apiContact/85b042e0-a134-447f-90c8-44a7fe96437b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:07:18+00:00", - dateModified: "2022-11-23T09:07:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1623b29b-1dac-4ee1-9ee6-f673892aa66b", - self: "/apiContact/1623b29b-1dac-4ee1-9ee6-f673892aa66b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:09:11+00:00", - dateModified: "2022-11-23T10:09:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6d60c1e-b88a-46b0-bba9-f2f0ff0acb72", - self: "/apiContact/f6d60c1e-b88a-46b0-bba9-f2f0ff0acb72", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:00:46+00:00", - dateModified: "2022-11-23T11:00:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1191b458-f91a-4e22-887c-5e4805b0e7d1", - self: "/apiContact/1191b458-f91a-4e22-887c-5e4805b0e7d1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:58:47+00:00", - dateModified: "2022-11-23T11:58:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74006c1a-2543-42b0-a77a-f2dbc93d40b6", - self: "/apiContact/74006c1a-2543-42b0-a77a-f2dbc93d40b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:51:37+00:00", - dateModified: "2022-11-23T13:51:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "89314eaa-2162-4cd8-8608-55a9e3d13e56", - self: "/apiContact/89314eaa-2162-4cd8-8608-55a9e3d13e56", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:36:58+00:00", - dateModified: "2022-11-23T14:36:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d58d8777-7065-48aa-86ca-31bde40aa9a6", - self: "/apiContact/d58d8777-7065-48aa-86ca-31bde40aa9a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:51:13+00:00", - dateModified: "2022-11-23T15:51:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "86e3e463-fccb-4076-b1c8-108a981cd4d6", - self: "/apiContact/86e3e463-fccb-4076-b1c8-108a981cd4d6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:46:40+00:00", - dateModified: "2022-11-23T17:46:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f7ecc345-0ffb-4e0b-95a3-a008bf8ddd59", - self: "/apiContact/f7ecc345-0ffb-4e0b-95a3-a008bf8ddd59", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:44:33+00:00", - dateModified: "2022-11-23T19:44:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ff09c926-2014-421f-80ea-22de2e32778b", - self: "/apiContact/ff09c926-2014-421f-80ea-22de2e32778b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:47:00+00:00", - dateModified: "2022-11-23T21:47:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b57f3e9c-43ed-4cb8-af1d-fd15f6c96c24", - self: "/apiContact/b57f3e9c-43ed-4cb8-af1d-fd15f6c96c24", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:40:11+00:00", - dateModified: "2022-11-23T23:40:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "01cfe7ea-4a62-4185-8b4d-fbb9d7ea9a4c", - self: "/apiContact/01cfe7ea-4a62-4185-8b4d-fbb9d7ea9a4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:38:25+00:00", - dateModified: "2022-11-24T01:38:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "176d65dc-c52d-4ba5-9d50-f651241631bc", - self: "/apiContact/176d65dc-c52d-4ba5-9d50-f651241631bc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:37:46+00:00", - dateModified: "2022-11-24T03:37:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dd282ae1-4c48-48c2-9e2d-473bca9ce578", - self: "/apiContact/dd282ae1-4c48-48c2-9e2d-473bca9ce578", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:38:09+00:00", - dateModified: "2022-11-24T05:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aa02ed3b-59eb-4e85-a185-c9af6c84d700", - self: "/apiContact/aa02ed3b-59eb-4e85-a185-c9af6c84d700", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:44:54+00:00", - dateModified: "2022-11-24T07:44:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7932813f-4fc9-42b3-8960-a8a254e39939", - self: "/apiContact/7932813f-4fc9-42b3-8960-a8a254e39939", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:43:23+00:00", - dateModified: "2022-11-24T09:43:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c7ccdcf0-7a51-415f-937a-c6ac7dbe5fdf", - self: "/apiContact/c7ccdcf0-7a51-415f-937a-c6ac7dbe5fdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:41:13+00:00", - dateModified: "2022-11-24T11:41:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0441d3ed-e1ad-4a76-b776-2928c1100688", - self: "/apiContact/0441d3ed-e1ad-4a76-b776-2928c1100688", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:15:24+00:00", - dateModified: "2022-12-09T11:15:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eb69df35-4c0f-43ab-9c5d-0d9ee74c35cb", - self: "/apiContact/eb69df35-4c0f-43ab-9c5d-0d9ee74c35cb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:55:26+00:00", - dateModified: "2022-12-09T12:55:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96fd5dd8-8987-4667-b351-df4b52c04261", - self: "/apiContact/96fd5dd8-8987-4667-b351-df4b52c04261", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:55:16+00:00", - dateModified: "2022-12-10T14:55:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8282380-6fad-4750-800e-ea7ac16a925d", - self: "/apiContact/d8282380-6fad-4750-800e-ea7ac16a925d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T15:00:33+00:00", - dateModified: "2022-12-11T15:00:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfe26a0a-ab22-4384-b59c-be9031a6ed5f", - self: "/apiContact/bfe26a0a-ab22-4384-b59c-be9031a6ed5f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:59:36+00:00", - dateModified: "2022-12-12T14:59:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "f4ce55f2-a4ce-4c1a-a51e-4218a557b4a1", - self: "/apiRating/f4ce55f2-a4ce-4c1a-a51e-4218a557b4a1", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:50+00:00", - dateModified: "2022-11-21T11:31:07+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Digispoof rated", - "The url: https://github.com/ConductionNL/digispoof-interface rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Digispoof", - "Een digid mock rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "bc8c5338-bd14-4928-a397-1b1c4c90f7c4", - }, - { - _id: "bd6f3a65-ed06-4d6f-88e4-489464adfe7c", - _self: { - id: "bd6f3a65-ed06-4d6f-88e4-489464adfe7c", - self: "/api/oc/components/bd6f3a65-ed06-4d6f-88e4-489464adfe7c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:53+00:00", - dateModified: "2022-12-12T14:57:25+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "78989cb2-478e-4bf3-a029-a0408e7a7a09", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "26", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "6fec0877-3880-4ac3-af39-97750e526d17", - self: "/apiRepository/6fec0877-3880-4ac3-af39-97750e526d17", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "cafe051b-622f-487c-8d6c-221f75e8add8", - self: "/api/oc/organizations/cafe051b-622f-487c-8d6c-221f75e8add8", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:51+00:00", - dateModified: "2022-11-14T13:54:49+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "54bbd31d-65b3-46be-bf7e-9069d4d6bfbd", - "418f89d8-2f8f-4e6f-937e-fe42087b7bbc", - "3a350f6a-8a81-4cab-bb98-6d023ca9cd5b", - "d6436b5f-66da-4dfb-8fbd-f7fc4ecd93f0", - "68c0b176-f273-4813-86f0-e25a9ee73859", - "ca345ee6-edc9-47cc-a469-e1a67f06e45d", - "7a26cd1b-6365-4117-b42b-3ffb2372eefe", - "59511a5a-ea45-4be8-a89d-1b120d01a66f", - "56ca77a1-4f36-4d68-bf0d-6c0c6312b974", - "b439a231-328b-458b-ab9d-c9028e9f7d48", - "151d2aa2-c02e-4340-9cbc-be6fcc2eb4d2", - "a21b03cf-4a49-458f-97c8-18b7437e0f98", - "d2b6b954-cbe9-40e2-9ce6-3de0c7b2f9e2", - "85e51524-5131-4b1e-9a1d-3c114af21655", - "93886072-5eac-4901-9f91-f1d0f27761fc", - "45a5bb72-97bf-4bc9-bf09-9e1c40800747", - "39591363-8701-4994-97ee-c2e64a3d916e", - "0d1583f6-41d2-4a61-bdd3-3b10a0debb3d", - "6e475884-ed25-4940-a816-704beea6903a", - "bd4ecd61-5dec-4648-a9ef-179db147685d", - "6f7c8f6a-e935-4703-aab7-8756bfa04d02", - "938e4112-f193-4034-aa33-fb00ed3bee87", - "99af1604-cedb-40e0-88dd-762edd2cc9dc", - "67338685-600b-4063-aafb-03e8dca7f7c0", - "a5ffa1eb-4109-44ee-8729-392e69f767b5", - "e4807f09-c54e-4cde-a1f7-941331908eae", - "767f9a2f-921a-4d3a-8d3d-c71d5854b93b", - "d2230fc5-2fe1-4b4f-a40e-3318cf53ccb8", - "e9bfad47-11ac-430b-bec5-37019815a1b7", - "6d4ae84f-f6b2-4455-b533-c888dd78581b", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "contactcatalogus", - url: "https://github.com/ConductionNL/contactcatalogus", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-12-16T09:27:07Z", - stars: 0, - fork_count: 2, - issue_open_count: 6, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "130915", "86064", "34948", "15354", "3898", "2401", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "cafe051b-622f-487c-8d6c-221f75e8add8", - self: "/api/oc/organizations/cafe051b-622f-487c-8d6c-221f75e8add8", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:51+00:00", - dateModified: "2022-11-14T13:54:49+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "54bbd31d-65b3-46be-bf7e-9069d4d6bfbd", - "418f89d8-2f8f-4e6f-937e-fe42087b7bbc", - "3a350f6a-8a81-4cab-bb98-6d023ca9cd5b", - "d6436b5f-66da-4dfb-8fbd-f7fc4ecd93f0", - "68c0b176-f273-4813-86f0-e25a9ee73859", - "ca345ee6-edc9-47cc-a469-e1a67f06e45d", - "7a26cd1b-6365-4117-b42b-3ffb2372eefe", - "59511a5a-ea45-4be8-a89d-1b120d01a66f", - "56ca77a1-4f36-4d68-bf0d-6c0c6312b974", - "b439a231-328b-458b-ab9d-c9028e9f7d48", - "151d2aa2-c02e-4340-9cbc-be6fcc2eb4d2", - "a21b03cf-4a49-458f-97c8-18b7437e0f98", - "d2b6b954-cbe9-40e2-9ce6-3de0c7b2f9e2", - "85e51524-5131-4b1e-9a1d-3c114af21655", - "93886072-5eac-4901-9f91-f1d0f27761fc", - "45a5bb72-97bf-4bc9-bf09-9e1c40800747", - "39591363-8701-4994-97ee-c2e64a3d916e", - "0d1583f6-41d2-4a61-bdd3-3b10a0debb3d", - "6e475884-ed25-4940-a816-704beea6903a", - "bd4ecd61-5dec-4648-a9ef-179db147685d", - "6f7c8f6a-e935-4703-aab7-8756bfa04d02", - "938e4112-f193-4034-aa33-fb00ed3bee87", - "99af1604-cedb-40e0-88dd-762edd2cc9dc", - "67338685-600b-4063-aafb-03e8dca7f7c0", - "a5ffa1eb-4109-44ee-8729-392e69f767b5", - "e4807f09-c54e-4cde-a1f7-941331908eae", - "767f9a2f-921a-4d3a-8d3d-c71d5854b93b", - "d2230fc5-2fe1-4b4f-a40e-3318cf53ccb8", - "e9bfad47-11ac-430b-bec5-37019815a1b7", - "6d4ae84f-f6b2-4455-b533-c888dd78581b", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "37b0e01b-d8b9-4022-bbd9-0612f6eb710c", - self: "/apiDescription/37b0e01b-d8b9-4022-bbd9-0612f6eb710c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "Contactcatalogus,Het \u201ccontacten\u201d component is bedoeld voor het opslaan van contactgegevens van personen en organisaties waarvoor nog geen BSN of KVK nummer bekend is (en dus geen bronverwijzing kan worden gedaan).", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "f5935c9e-62a1-499c-b52f-9c6a844d22f8", - self: "/apiComponentlegalEntity/f5935c9e-62a1-499c-b52f-9c6a844d22f8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "a8a11fcd-5a76-4658-825e-96e50c70e5b5", - self: "/api/oc/organizations/a8a11fcd-5a76-4658-825e-96e50c70e5b5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:17:28+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "a8a11fcd-5a76-4658-825e-96e50c70e5b5", - self: "/api/oc/organizations/a8a11fcd-5a76-4658-825e-96e50c70e5b5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:17:28+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "8a08680d-bd62-4198-85a4-57e83bee9752", - self: "/apiComponentnlEntity/8a08680d-bd62-4198-85a4-57e83bee9752", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "556b0104-e948-4d0c-8826-d32cc5fd2283", - self: "/apiComponentnlEntitycommongroundEntity/556b0104-e948-4d0c-8826-d32cc5fd2283", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:17:28+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "556b0104-e948-4d0c-8826-d32cc5fd2283", - self: "/apiComponentnlEntitycommongroundEntity/556b0104-e948-4d0c-8826-d32cc5fd2283", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:17:28+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "49c4c588-3600-4717-87b5-8e544d6d8997", - self: "/apiComponentmaintenanceEntity/49c4c588-3600-4717-87b5-8e544d6d8997", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "3e1a7018-73b9-488d-be0d-c1a5fffdcf07", - self: "/apiContact/3e1a7018-73b9-488d-be0d-c1a5fffdcf07", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8b49ca0d-dbd7-43a5-8be7-89c64422b050", - self: "/apiContact/8b49ca0d-dbd7-43a5-8be7-89c64422b050", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:25+00:00", - dateModified: "2022-10-28T15:17:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ac67658-0ce7-46ba-8b50-23e9104ec2b0", - self: "/apiContact/3ac67658-0ce7-46ba-8b50-23e9104ec2b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:35+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74299e4c-c9b8-4b7a-99c3-fc0dd4e0a488", - self: "/apiContact/74299e4c-c9b8-4b7a-99c3-fc0dd4e0a488", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:34+00:00", - dateModified: "2022-10-28T15:17:34+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a98df157-e203-489c-9471-802cd8965333", - self: "/apiContact/a98df157-e203-489c-9471-802cd8965333", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:57+00:00", - dateModified: "2022-10-28T15:17:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f10729b-89b5-4cad-9e07-b509f507f579", - self: "/apiContact/4f10729b-89b5-4cad-9e07-b509f507f579", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:18+00:00", - dateModified: "2022-10-29T00:04:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2ac9be4a-6e18-418d-9ae2-8ba1e3f70c6d", - self: "/apiContact/2ac9be4a-6e18-418d-9ae2-8ba1e3f70c6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:57+00:00", - dateModified: "2022-10-30T00:08:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45bc53d0-6f52-407f-a20a-f24a47aa6eeb", - self: "/apiContact/45bc53d0-6f52-407f-a20a-f24a47aa6eeb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:07+00:00", - dateModified: "2022-10-31T00:10:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2e6cd6e4-8762-4ed0-8fea-4c9265429d6e", - self: "/apiContact/2e6cd6e4-8762-4ed0-8fea-4c9265429d6e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:47+00:00", - dateModified: "2022-10-31T13:45:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c4999f7-29e6-46df-b3a3-619cb85e525a", - self: "/apiContact/0c4999f7-29e6-46df-b3a3-619cb85e525a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:44+00:00", - dateModified: "2022-11-01T13:20:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e0780236-9e12-4b7f-9450-b85338dd065f", - self: "/apiContact/e0780236-9e12-4b7f-9450-b85338dd065f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:05:01+00:00", - dateModified: "2022-11-02T14:05:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6afa31a9-41ff-464a-ac80-34ae48c84cd6", - self: "/apiContact/6afa31a9-41ff-464a-ac80-34ae48c84cd6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:01+00:00", - dateModified: "2022-11-03T13:55:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "93d34f04-ab3c-4003-9273-f937f8dc81c7", - self: "/apiContact/93d34f04-ab3c-4003-9273-f937f8dc81c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:03:49+00:00", - dateModified: "2022-11-04T15:03:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bad9f169-1c6b-40d6-9a02-96b5316e7c87", - self: "/apiContact/bad9f169-1c6b-40d6-9a02-96b5316e7c87", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:47+00:00", - dateModified: "2022-11-10T10:14:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1c27c2dd-d8ab-4540-8a0e-5635662dab04", - self: "/apiContact/1c27c2dd-d8ab-4540-8a0e-5635662dab04", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:31+00:00", - dateModified: "2022-11-10T13:09:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78ffdc26-c2ca-4433-858e-5d655ffcc8d4", - self: "/apiContact/78ffdc26-c2ca-4433-858e-5d655ffcc8d4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:11+00:00", - dateModified: "2022-11-21T12:53:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f5bcfc38-d4c2-4cba-923e-ff17c07594cd", - self: "/apiContact/f5bcfc38-d4c2-4cba-923e-ff17c07594cd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:00+00:00", - dateModified: "2022-11-21T12:55:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96ab086a-7ef1-4cd3-8a1f-2e8105ee9a3f", - self: "/apiContact/96ab086a-7ef1-4cd3-8a1f-2e8105ee9a3f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:06:58+00:00", - dateModified: "2022-11-21T13:06:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9992b2b1-8b28-42ed-b2cc-75031ddbe037", - self: "/apiContact/9992b2b1-8b28-42ed-b2cc-75031ddbe037", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:32:55+00:00", - dateModified: "2022-11-22T15:32:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f1c4ee03-e12d-4121-9efb-96fef9d4fd35", - self: "/apiContact/f1c4ee03-e12d-4121-9efb-96fef9d4fd35", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:04:30+00:00", - dateModified: "2022-11-22T17:04:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "19233f48-d903-4bde-a8e3-722b2c467581", - self: "/apiContact/19233f48-d903-4bde-a8e3-722b2c467581", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:54:20+00:00", - dateModified: "2022-11-22T16:54:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d85fe4b-a883-4200-8323-de5fb21b1899", - self: "/apiContact/8d85fe4b-a883-4200-8323-de5fb21b1899", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:01:22+00:00", - dateModified: "2022-11-22T18:01:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "788ca87d-3877-401f-9ca4-dcf83d90d4df", - self: "/apiContact/788ca87d-3877-401f-9ca4-dcf83d90d4df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:30:55+00:00", - dateModified: "2022-11-22T19:30:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5d268b2d-c714-41e2-b59b-f3c66317f35b", - self: "/apiContact/5d268b2d-c714-41e2-b59b-f3c66317f35b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:32:51+00:00", - dateModified: "2022-11-22T21:32:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fd0ace33-a322-475c-b9e5-d9d28460e057", - self: "/apiContact/fd0ace33-a322-475c-b9e5-d9d28460e057", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:30:36+00:00", - dateModified: "2022-11-22T23:30:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "23037d30-a46c-4018-85f1-65aee011d1da", - self: "/apiContact/23037d30-a46c-4018-85f1-65aee011d1da", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:31:28+00:00", - dateModified: "2022-11-23T01:31:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c98d4ce-77ac-449e-ae1b-39a7ecdeed68", - self: "/apiContact/2c98d4ce-77ac-449e-ae1b-39a7ecdeed68", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:32:17+00:00", - dateModified: "2022-11-23T03:32:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7bc6d445-fb9e-49e7-8fb4-ac9a7b3d7410", - self: "/apiContact/7bc6d445-fb9e-49e7-8fb4-ac9a7b3d7410", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:32:13+00:00", - dateModified: "2022-11-23T05:32:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72f2079b-64bb-45ed-9f56-56f7cb3545dc", - self: "/apiContact/72f2079b-64bb-45ed-9f56-56f7cb3545dc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:31:55+00:00", - dateModified: "2022-11-23T07:31:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eac2a2c7-1368-4ea1-a950-58a761e311f0", - self: "/apiContact/eac2a2c7-1368-4ea1-a950-58a761e311f0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:59:57+00:00", - dateModified: "2022-11-23T08:59:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8896ba33-68f1-4fde-8605-1d0b975f5c83", - self: "/apiContact/8896ba33-68f1-4fde-8605-1d0b975f5c83", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:55:58+00:00", - dateModified: "2022-11-23T09:55:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3876a691-fc27-412f-b3ca-8c4dd07627e3", - self: "/apiContact/3876a691-fc27-412f-b3ca-8c4dd07627e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:51:52+00:00", - dateModified: "2022-11-23T10:51:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0ad06a8a-6d22-4ac1-85e7-a1c54ffff534", - self: "/apiContact/0ad06a8a-6d22-4ac1-85e7-a1c54ffff534", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:53:27+00:00", - dateModified: "2022-11-23T11:53:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "acb85e76-3274-4901-81ac-60d911c8aaa6", - self: "/apiContact/acb85e76-3274-4901-81ac-60d911c8aaa6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:44:17+00:00", - dateModified: "2022-11-23T13:44:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3405d716-7257-485c-a4a8-f2dd7c2440b0", - self: "/apiContact/3405d716-7257-485c-a4a8-f2dd7c2440b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:29:27+00:00", - dateModified: "2022-11-23T14:29:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4e73ebb6-059a-4c81-bcae-7bf8c3776a3b", - self: "/apiContact/4e73ebb6-059a-4c81-bcae-7bf8c3776a3b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:46:16+00:00", - dateModified: "2022-11-23T15:46:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d3b45b92-0246-462c-b871-6e036773628b", - self: "/apiContact/d3b45b92-0246-462c-b871-6e036773628b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:40:46+00:00", - dateModified: "2022-11-23T17:40:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "399bdd28-31ed-41cc-b6ad-b52af0c672dc", - self: "/apiContact/399bdd28-31ed-41cc-b6ad-b52af0c672dc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:37:56+00:00", - dateModified: "2022-11-23T19:37:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c4206aad-b2c8-4c9b-b0ab-bd3a8f6d762b", - self: "/apiContact/c4206aad-b2c8-4c9b-b0ab-bd3a8f6d762b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:40:51+00:00", - dateModified: "2022-11-23T21:40:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c11eefab-8318-4e92-b7a4-6f006e7d110d", - self: "/apiContact/c11eefab-8318-4e92-b7a4-6f006e7d110d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:34:37+00:00", - dateModified: "2022-11-23T23:34:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a9f915ce-35c3-4197-9847-6219f27ff6f1", - self: "/apiContact/a9f915ce-35c3-4197-9847-6219f27ff6f1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:32:51+00:00", - dateModified: "2022-11-24T01:32:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b419eee3-f30e-4fb3-8f3f-13a15172edc5", - self: "/apiContact/b419eee3-f30e-4fb3-8f3f-13a15172edc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:32:39+00:00", - dateModified: "2022-11-24T03:32:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "54f6f402-9ff7-4c1d-b8c6-3bd87e2b312a", - self: "/apiContact/54f6f402-9ff7-4c1d-b8c6-3bd87e2b312a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:33:14+00:00", - dateModified: "2022-11-24T05:33:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "edcb03d2-b4e8-4b9e-83b4-af91b431567d", - self: "/apiContact/edcb03d2-b4e8-4b9e-83b4-af91b431567d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:39:23+00:00", - dateModified: "2022-11-24T07:39:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "870e463b-ad1e-47c7-875a-a89ecf1bfd58", - self: "/apiContact/870e463b-ad1e-47c7-875a-a89ecf1bfd58", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:37:33+00:00", - dateModified: "2022-11-24T09:37:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "33020b8b-b22c-42af-985c-8f805fbc9689", - self: "/apiContact/33020b8b-b22c-42af-985c-8f805fbc9689", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:35:30+00:00", - dateModified: "2022-11-24T11:35:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5dc774d5-8926-45bd-bc6c-5fea1d3df825", - self: "/apiContact/5dc774d5-8926-45bd-bc6c-5fea1d3df825", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:10:52+00:00", - dateModified: "2022-12-09T11:10:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7ff43e70-f1ce-457f-bcc3-61f92ea3e940", - self: "/apiContact/7ff43e70-f1ce-457f-bcc3-61f92ea3e940", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:52:36+00:00", - dateModified: "2022-12-09T12:52:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c65fa5a-e1b3-4b74-a839-966a0285fa80", - self: "/apiContact/0c65fa5a-e1b3-4b74-a839-966a0285fa80", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:52:24+00:00", - dateModified: "2022-12-10T14:52:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a9228b1-2356-4660-b119-e5f9e5170585", - self: "/apiContact/5a9228b1-2356-4660-b119-e5f9e5170585", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:57:43+00:00", - dateModified: "2022-12-11T14:57:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a64677b7-f779-43d0-9b51-5095d3455ff1", - self: "/apiContact/a64677b7-f779-43d0-9b51-5095d3455ff1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:57:08+00:00", - dateModified: "2022-12-12T14:57:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "3e1a7018-73b9-488d-be0d-c1a5fffdcf07", - self: "/apiContact/3e1a7018-73b9-488d-be0d-c1a5fffdcf07", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8b49ca0d-dbd7-43a5-8be7-89c64422b050", - self: "/apiContact/8b49ca0d-dbd7-43a5-8be7-89c64422b050", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:25+00:00", - dateModified: "2022-10-28T15:17:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ac67658-0ce7-46ba-8b50-23e9104ec2b0", - self: "/apiContact/3ac67658-0ce7-46ba-8b50-23e9104ec2b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:35+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74299e4c-c9b8-4b7a-99c3-fc0dd4e0a488", - self: "/apiContact/74299e4c-c9b8-4b7a-99c3-fc0dd4e0a488", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:34+00:00", - dateModified: "2022-10-28T15:17:34+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a98df157-e203-489c-9471-802cd8965333", - self: "/apiContact/a98df157-e203-489c-9471-802cd8965333", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:57+00:00", - dateModified: "2022-10-28T15:17:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f10729b-89b5-4cad-9e07-b509f507f579", - self: "/apiContact/4f10729b-89b5-4cad-9e07-b509f507f579", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:18+00:00", - dateModified: "2022-10-29T00:04:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2ac9be4a-6e18-418d-9ae2-8ba1e3f70c6d", - self: "/apiContact/2ac9be4a-6e18-418d-9ae2-8ba1e3f70c6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:57+00:00", - dateModified: "2022-10-30T00:08:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45bc53d0-6f52-407f-a20a-f24a47aa6eeb", - self: "/apiContact/45bc53d0-6f52-407f-a20a-f24a47aa6eeb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:07+00:00", - dateModified: "2022-10-31T00:10:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2e6cd6e4-8762-4ed0-8fea-4c9265429d6e", - self: "/apiContact/2e6cd6e4-8762-4ed0-8fea-4c9265429d6e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:47+00:00", - dateModified: "2022-10-31T13:45:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c4999f7-29e6-46df-b3a3-619cb85e525a", - self: "/apiContact/0c4999f7-29e6-46df-b3a3-619cb85e525a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:44+00:00", - dateModified: "2022-11-01T13:20:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e0780236-9e12-4b7f-9450-b85338dd065f", - self: "/apiContact/e0780236-9e12-4b7f-9450-b85338dd065f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:05:01+00:00", - dateModified: "2022-11-02T14:05:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6afa31a9-41ff-464a-ac80-34ae48c84cd6", - self: "/apiContact/6afa31a9-41ff-464a-ac80-34ae48c84cd6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:01+00:00", - dateModified: "2022-11-03T13:55:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "93d34f04-ab3c-4003-9273-f937f8dc81c7", - self: "/apiContact/93d34f04-ab3c-4003-9273-f937f8dc81c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:03:49+00:00", - dateModified: "2022-11-04T15:03:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bad9f169-1c6b-40d6-9a02-96b5316e7c87", - self: "/apiContact/bad9f169-1c6b-40d6-9a02-96b5316e7c87", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:47+00:00", - dateModified: "2022-11-10T10:14:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1c27c2dd-d8ab-4540-8a0e-5635662dab04", - self: "/apiContact/1c27c2dd-d8ab-4540-8a0e-5635662dab04", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:31+00:00", - dateModified: "2022-11-10T13:09:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78ffdc26-c2ca-4433-858e-5d655ffcc8d4", - self: "/apiContact/78ffdc26-c2ca-4433-858e-5d655ffcc8d4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:11+00:00", - dateModified: "2022-11-21T12:53:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f5bcfc38-d4c2-4cba-923e-ff17c07594cd", - self: "/apiContact/f5bcfc38-d4c2-4cba-923e-ff17c07594cd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:00+00:00", - dateModified: "2022-11-21T12:55:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96ab086a-7ef1-4cd3-8a1f-2e8105ee9a3f", - self: "/apiContact/96ab086a-7ef1-4cd3-8a1f-2e8105ee9a3f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:06:58+00:00", - dateModified: "2022-11-21T13:06:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9992b2b1-8b28-42ed-b2cc-75031ddbe037", - self: "/apiContact/9992b2b1-8b28-42ed-b2cc-75031ddbe037", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:32:55+00:00", - dateModified: "2022-11-22T15:32:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f1c4ee03-e12d-4121-9efb-96fef9d4fd35", - self: "/apiContact/f1c4ee03-e12d-4121-9efb-96fef9d4fd35", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:04:30+00:00", - dateModified: "2022-11-22T17:04:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "19233f48-d903-4bde-a8e3-722b2c467581", - self: "/apiContact/19233f48-d903-4bde-a8e3-722b2c467581", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:54:20+00:00", - dateModified: "2022-11-22T16:54:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d85fe4b-a883-4200-8323-de5fb21b1899", - self: "/apiContact/8d85fe4b-a883-4200-8323-de5fb21b1899", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:01:22+00:00", - dateModified: "2022-11-22T18:01:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "788ca87d-3877-401f-9ca4-dcf83d90d4df", - self: "/apiContact/788ca87d-3877-401f-9ca4-dcf83d90d4df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:30:55+00:00", - dateModified: "2022-11-22T19:30:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5d268b2d-c714-41e2-b59b-f3c66317f35b", - self: "/apiContact/5d268b2d-c714-41e2-b59b-f3c66317f35b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:32:51+00:00", - dateModified: "2022-11-22T21:32:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fd0ace33-a322-475c-b9e5-d9d28460e057", - self: "/apiContact/fd0ace33-a322-475c-b9e5-d9d28460e057", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:30:36+00:00", - dateModified: "2022-11-22T23:30:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "23037d30-a46c-4018-85f1-65aee011d1da", - self: "/apiContact/23037d30-a46c-4018-85f1-65aee011d1da", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:31:28+00:00", - dateModified: "2022-11-23T01:31:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c98d4ce-77ac-449e-ae1b-39a7ecdeed68", - self: "/apiContact/2c98d4ce-77ac-449e-ae1b-39a7ecdeed68", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:32:17+00:00", - dateModified: "2022-11-23T03:32:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7bc6d445-fb9e-49e7-8fb4-ac9a7b3d7410", - self: "/apiContact/7bc6d445-fb9e-49e7-8fb4-ac9a7b3d7410", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:32:13+00:00", - dateModified: "2022-11-23T05:32:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72f2079b-64bb-45ed-9f56-56f7cb3545dc", - self: "/apiContact/72f2079b-64bb-45ed-9f56-56f7cb3545dc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:31:55+00:00", - dateModified: "2022-11-23T07:31:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eac2a2c7-1368-4ea1-a950-58a761e311f0", - self: "/apiContact/eac2a2c7-1368-4ea1-a950-58a761e311f0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:59:57+00:00", - dateModified: "2022-11-23T08:59:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8896ba33-68f1-4fde-8605-1d0b975f5c83", - self: "/apiContact/8896ba33-68f1-4fde-8605-1d0b975f5c83", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:55:58+00:00", - dateModified: "2022-11-23T09:55:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3876a691-fc27-412f-b3ca-8c4dd07627e3", - self: "/apiContact/3876a691-fc27-412f-b3ca-8c4dd07627e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:51:52+00:00", - dateModified: "2022-11-23T10:51:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0ad06a8a-6d22-4ac1-85e7-a1c54ffff534", - self: "/apiContact/0ad06a8a-6d22-4ac1-85e7-a1c54ffff534", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:53:27+00:00", - dateModified: "2022-11-23T11:53:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "acb85e76-3274-4901-81ac-60d911c8aaa6", - self: "/apiContact/acb85e76-3274-4901-81ac-60d911c8aaa6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:44:17+00:00", - dateModified: "2022-11-23T13:44:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3405d716-7257-485c-a4a8-f2dd7c2440b0", - self: "/apiContact/3405d716-7257-485c-a4a8-f2dd7c2440b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:29:27+00:00", - dateModified: "2022-11-23T14:29:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4e73ebb6-059a-4c81-bcae-7bf8c3776a3b", - self: "/apiContact/4e73ebb6-059a-4c81-bcae-7bf8c3776a3b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:46:16+00:00", - dateModified: "2022-11-23T15:46:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d3b45b92-0246-462c-b871-6e036773628b", - self: "/apiContact/d3b45b92-0246-462c-b871-6e036773628b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:40:46+00:00", - dateModified: "2022-11-23T17:40:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "399bdd28-31ed-41cc-b6ad-b52af0c672dc", - self: "/apiContact/399bdd28-31ed-41cc-b6ad-b52af0c672dc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:37:56+00:00", - dateModified: "2022-11-23T19:37:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c4206aad-b2c8-4c9b-b0ab-bd3a8f6d762b", - self: "/apiContact/c4206aad-b2c8-4c9b-b0ab-bd3a8f6d762b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:40:51+00:00", - dateModified: "2022-11-23T21:40:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c11eefab-8318-4e92-b7a4-6f006e7d110d", - self: "/apiContact/c11eefab-8318-4e92-b7a4-6f006e7d110d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:34:37+00:00", - dateModified: "2022-11-23T23:34:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a9f915ce-35c3-4197-9847-6219f27ff6f1", - self: "/apiContact/a9f915ce-35c3-4197-9847-6219f27ff6f1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:32:51+00:00", - dateModified: "2022-11-24T01:32:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b419eee3-f30e-4fb3-8f3f-13a15172edc5", - self: "/apiContact/b419eee3-f30e-4fb3-8f3f-13a15172edc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:32:39+00:00", - dateModified: "2022-11-24T03:32:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "54f6f402-9ff7-4c1d-b8c6-3bd87e2b312a", - self: "/apiContact/54f6f402-9ff7-4c1d-b8c6-3bd87e2b312a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:33:14+00:00", - dateModified: "2022-11-24T05:33:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "edcb03d2-b4e8-4b9e-83b4-af91b431567d", - self: "/apiContact/edcb03d2-b4e8-4b9e-83b4-af91b431567d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:39:23+00:00", - dateModified: "2022-11-24T07:39:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "870e463b-ad1e-47c7-875a-a89ecf1bfd58", - self: "/apiContact/870e463b-ad1e-47c7-875a-a89ecf1bfd58", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:37:33+00:00", - dateModified: "2022-11-24T09:37:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "33020b8b-b22c-42af-985c-8f805fbc9689", - self: "/apiContact/33020b8b-b22c-42af-985c-8f805fbc9689", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:35:30+00:00", - dateModified: "2022-11-24T11:35:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5dc774d5-8926-45bd-bc6c-5fea1d3df825", - self: "/apiContact/5dc774d5-8926-45bd-bc6c-5fea1d3df825", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:10:52+00:00", - dateModified: "2022-12-09T11:10:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7ff43e70-f1ce-457f-bcc3-61f92ea3e940", - self: "/apiContact/7ff43e70-f1ce-457f-bcc3-61f92ea3e940", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:52:36+00:00", - dateModified: "2022-12-09T12:52:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c65fa5a-e1b3-4b74-a839-966a0285fa80", - self: "/apiContact/0c65fa5a-e1b3-4b74-a839-966a0285fa80", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:52:24+00:00", - dateModified: "2022-12-10T14:52:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a9228b1-2356-4660-b119-e5f9e5170585", - self: "/apiContact/5a9228b1-2356-4660-b119-e5f9e5170585", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:57:43+00:00", - dateModified: "2022-12-11T14:57:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a64677b7-f779-43d0-9b51-5095d3455ff1", - self: "/apiContact/a64677b7-f779-43d0-9b51-5095d3455ff1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:57:08+00:00", - dateModified: "2022-12-12T14:57:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "08d31419-a10b-4b06-a239-897cbfdada5e", - self: "/apiRating/08d31419-a10b-4b06-a239-897cbfdada5e", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:39+00:00", - dateModified: "2022-11-14T13:54:49+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Contactcatalogus rated", - "The url: https://github.com/ConductionNL/contactcatalogus rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Contactcatalogus", - "Het \u201ccontacten\u201d component is bedoeld voor het opslaan van contactgegevens van personen en organisaties waarvoor nog geen BSN of KVK nummer bekend is (en dus geen bronverwijzing kan worden gedaan). rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "Contactcatalogus", - embedded: { - url: { - _self: { - id: "6fec0877-3880-4ac3-af39-97750e526d17", - self: "/apiRepository/6fec0877-3880-4ac3-af39-97750e526d17", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "cafe051b-622f-487c-8d6c-221f75e8add8", - self: "/api/oc/organizations/cafe051b-622f-487c-8d6c-221f75e8add8", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:51+00:00", - dateModified: "2022-11-14T13:54:49+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "54bbd31d-65b3-46be-bf7e-9069d4d6bfbd", - "418f89d8-2f8f-4e6f-937e-fe42087b7bbc", - "3a350f6a-8a81-4cab-bb98-6d023ca9cd5b", - "d6436b5f-66da-4dfb-8fbd-f7fc4ecd93f0", - "68c0b176-f273-4813-86f0-e25a9ee73859", - "ca345ee6-edc9-47cc-a469-e1a67f06e45d", - "7a26cd1b-6365-4117-b42b-3ffb2372eefe", - "59511a5a-ea45-4be8-a89d-1b120d01a66f", - "56ca77a1-4f36-4d68-bf0d-6c0c6312b974", - "b439a231-328b-458b-ab9d-c9028e9f7d48", - "151d2aa2-c02e-4340-9cbc-be6fcc2eb4d2", - "a21b03cf-4a49-458f-97c8-18b7437e0f98", - "d2b6b954-cbe9-40e2-9ce6-3de0c7b2f9e2", - "85e51524-5131-4b1e-9a1d-3c114af21655", - "93886072-5eac-4901-9f91-f1d0f27761fc", - "45a5bb72-97bf-4bc9-bf09-9e1c40800747", - "39591363-8701-4994-97ee-c2e64a3d916e", - "0d1583f6-41d2-4a61-bdd3-3b10a0debb3d", - "6e475884-ed25-4940-a816-704beea6903a", - "bd4ecd61-5dec-4648-a9ef-179db147685d", - "6f7c8f6a-e935-4703-aab7-8756bfa04d02", - "938e4112-f193-4034-aa33-fb00ed3bee87", - "99af1604-cedb-40e0-88dd-762edd2cc9dc", - "67338685-600b-4063-aafb-03e8dca7f7c0", - "a5ffa1eb-4109-44ee-8729-392e69f767b5", - "e4807f09-c54e-4cde-a1f7-941331908eae", - "767f9a2f-921a-4d3a-8d3d-c71d5854b93b", - "d2230fc5-2fe1-4b4f-a40e-3318cf53ccb8", - "e9bfad47-11ac-430b-bec5-37019815a1b7", - "6d4ae84f-f6b2-4455-b533-c888dd78581b", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "contactcatalogus", - url: "https://github.com/ConductionNL/contactcatalogus", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-12-16T09:27:07Z", - stars: 0, - fork_count: 2, - issue_open_count: 6, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "130915", "86064", "34948", "15354", "3898", "2401", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "cafe051b-622f-487c-8d6c-221f75e8add8", - self: "/api/oc/organizations/cafe051b-622f-487c-8d6c-221f75e8add8", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:51+00:00", - dateModified: "2022-11-14T13:54:49+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "54bbd31d-65b3-46be-bf7e-9069d4d6bfbd", - "418f89d8-2f8f-4e6f-937e-fe42087b7bbc", - "3a350f6a-8a81-4cab-bb98-6d023ca9cd5b", - "d6436b5f-66da-4dfb-8fbd-f7fc4ecd93f0", - "68c0b176-f273-4813-86f0-e25a9ee73859", - "ca345ee6-edc9-47cc-a469-e1a67f06e45d", - "7a26cd1b-6365-4117-b42b-3ffb2372eefe", - "59511a5a-ea45-4be8-a89d-1b120d01a66f", - "56ca77a1-4f36-4d68-bf0d-6c0c6312b974", - "b439a231-328b-458b-ab9d-c9028e9f7d48", - "151d2aa2-c02e-4340-9cbc-be6fcc2eb4d2", - "a21b03cf-4a49-458f-97c8-18b7437e0f98", - "d2b6b954-cbe9-40e2-9ce6-3de0c7b2f9e2", - "85e51524-5131-4b1e-9a1d-3c114af21655", - "93886072-5eac-4901-9f91-f1d0f27761fc", - "45a5bb72-97bf-4bc9-bf09-9e1c40800747", - "39591363-8701-4994-97ee-c2e64a3d916e", - "0d1583f6-41d2-4a61-bdd3-3b10a0debb3d", - "6e475884-ed25-4940-a816-704beea6903a", - "bd4ecd61-5dec-4648-a9ef-179db147685d", - "6f7c8f6a-e935-4703-aab7-8756bfa04d02", - "938e4112-f193-4034-aa33-fb00ed3bee87", - "99af1604-cedb-40e0-88dd-762edd2cc9dc", - "67338685-600b-4063-aafb-03e8dca7f7c0", - "a5ffa1eb-4109-44ee-8729-392e69f767b5", - "e4807f09-c54e-4cde-a1f7-941331908eae", - "767f9a2f-921a-4d3a-8d3d-c71d5854b93b", - "d2230fc5-2fe1-4b4f-a40e-3318cf53ccb8", - "e9bfad47-11ac-430b-bec5-37019815a1b7", - "6d4ae84f-f6b2-4455-b533-c888dd78581b", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "37b0e01b-d8b9-4022-bbd9-0612f6eb710c", - self: "/apiDescription/37b0e01b-d8b9-4022-bbd9-0612f6eb710c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "Contactcatalogus,Het \u201ccontacten\u201d component is bedoeld voor het opslaan van contactgegevens van personen en organisaties waarvoor nog geen BSN of KVK nummer bekend is (en dus geen bronverwijzing kan worden gedaan).", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "f5935c9e-62a1-499c-b52f-9c6a844d22f8", - self: "/apiComponentlegalEntity/f5935c9e-62a1-499c-b52f-9c6a844d22f8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "a8a11fcd-5a76-4658-825e-96e50c70e5b5", - self: "/api/oc/organizations/a8a11fcd-5a76-4658-825e-96e50c70e5b5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:17:28+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "a8a11fcd-5a76-4658-825e-96e50c70e5b5", - self: "/api/oc/organizations/a8a11fcd-5a76-4658-825e-96e50c70e5b5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:17:28+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "8a08680d-bd62-4198-85a4-57e83bee9752", - self: "/apiComponentnlEntity/8a08680d-bd62-4198-85a4-57e83bee9752", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "556b0104-e948-4d0c-8826-d32cc5fd2283", - self: "/apiComponentnlEntitycommongroundEntity/556b0104-e948-4d0c-8826-d32cc5fd2283", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:17:28+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "556b0104-e948-4d0c-8826-d32cc5fd2283", - self: "/apiComponentnlEntitycommongroundEntity/556b0104-e948-4d0c-8826-d32cc5fd2283", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:17:28+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "49c4c588-3600-4717-87b5-8e544d6d8997", - self: "/apiComponentmaintenanceEntity/49c4c588-3600-4717-87b5-8e544d6d8997", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "3e1a7018-73b9-488d-be0d-c1a5fffdcf07", - self: "/apiContact/3e1a7018-73b9-488d-be0d-c1a5fffdcf07", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8b49ca0d-dbd7-43a5-8be7-89c64422b050", - self: "/apiContact/8b49ca0d-dbd7-43a5-8be7-89c64422b050", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:25+00:00", - dateModified: "2022-10-28T15:17:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ac67658-0ce7-46ba-8b50-23e9104ec2b0", - self: "/apiContact/3ac67658-0ce7-46ba-8b50-23e9104ec2b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:35+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74299e4c-c9b8-4b7a-99c3-fc0dd4e0a488", - self: "/apiContact/74299e4c-c9b8-4b7a-99c3-fc0dd4e0a488", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:34+00:00", - dateModified: "2022-10-28T15:17:34+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a98df157-e203-489c-9471-802cd8965333", - self: "/apiContact/a98df157-e203-489c-9471-802cd8965333", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:57+00:00", - dateModified: "2022-10-28T15:17:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f10729b-89b5-4cad-9e07-b509f507f579", - self: "/apiContact/4f10729b-89b5-4cad-9e07-b509f507f579", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:18+00:00", - dateModified: "2022-10-29T00:04:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2ac9be4a-6e18-418d-9ae2-8ba1e3f70c6d", - self: "/apiContact/2ac9be4a-6e18-418d-9ae2-8ba1e3f70c6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:57+00:00", - dateModified: "2022-10-30T00:08:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45bc53d0-6f52-407f-a20a-f24a47aa6eeb", - self: "/apiContact/45bc53d0-6f52-407f-a20a-f24a47aa6eeb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:07+00:00", - dateModified: "2022-10-31T00:10:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2e6cd6e4-8762-4ed0-8fea-4c9265429d6e", - self: "/apiContact/2e6cd6e4-8762-4ed0-8fea-4c9265429d6e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:47+00:00", - dateModified: "2022-10-31T13:45:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c4999f7-29e6-46df-b3a3-619cb85e525a", - self: "/apiContact/0c4999f7-29e6-46df-b3a3-619cb85e525a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:44+00:00", - dateModified: "2022-11-01T13:20:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e0780236-9e12-4b7f-9450-b85338dd065f", - self: "/apiContact/e0780236-9e12-4b7f-9450-b85338dd065f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:05:01+00:00", - dateModified: "2022-11-02T14:05:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6afa31a9-41ff-464a-ac80-34ae48c84cd6", - self: "/apiContact/6afa31a9-41ff-464a-ac80-34ae48c84cd6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:01+00:00", - dateModified: "2022-11-03T13:55:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "93d34f04-ab3c-4003-9273-f937f8dc81c7", - self: "/apiContact/93d34f04-ab3c-4003-9273-f937f8dc81c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:03:49+00:00", - dateModified: "2022-11-04T15:03:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bad9f169-1c6b-40d6-9a02-96b5316e7c87", - self: "/apiContact/bad9f169-1c6b-40d6-9a02-96b5316e7c87", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:47+00:00", - dateModified: "2022-11-10T10:14:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1c27c2dd-d8ab-4540-8a0e-5635662dab04", - self: "/apiContact/1c27c2dd-d8ab-4540-8a0e-5635662dab04", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:31+00:00", - dateModified: "2022-11-10T13:09:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78ffdc26-c2ca-4433-858e-5d655ffcc8d4", - self: "/apiContact/78ffdc26-c2ca-4433-858e-5d655ffcc8d4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:11+00:00", - dateModified: "2022-11-21T12:53:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f5bcfc38-d4c2-4cba-923e-ff17c07594cd", - self: "/apiContact/f5bcfc38-d4c2-4cba-923e-ff17c07594cd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:00+00:00", - dateModified: "2022-11-21T12:55:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96ab086a-7ef1-4cd3-8a1f-2e8105ee9a3f", - self: "/apiContact/96ab086a-7ef1-4cd3-8a1f-2e8105ee9a3f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:06:58+00:00", - dateModified: "2022-11-21T13:06:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9992b2b1-8b28-42ed-b2cc-75031ddbe037", - self: "/apiContact/9992b2b1-8b28-42ed-b2cc-75031ddbe037", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:32:55+00:00", - dateModified: "2022-11-22T15:32:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f1c4ee03-e12d-4121-9efb-96fef9d4fd35", - self: "/apiContact/f1c4ee03-e12d-4121-9efb-96fef9d4fd35", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:04:30+00:00", - dateModified: "2022-11-22T17:04:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "19233f48-d903-4bde-a8e3-722b2c467581", - self: "/apiContact/19233f48-d903-4bde-a8e3-722b2c467581", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:54:20+00:00", - dateModified: "2022-11-22T16:54:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d85fe4b-a883-4200-8323-de5fb21b1899", - self: "/apiContact/8d85fe4b-a883-4200-8323-de5fb21b1899", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:01:22+00:00", - dateModified: "2022-11-22T18:01:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "788ca87d-3877-401f-9ca4-dcf83d90d4df", - self: "/apiContact/788ca87d-3877-401f-9ca4-dcf83d90d4df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:30:55+00:00", - dateModified: "2022-11-22T19:30:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5d268b2d-c714-41e2-b59b-f3c66317f35b", - self: "/apiContact/5d268b2d-c714-41e2-b59b-f3c66317f35b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:32:51+00:00", - dateModified: "2022-11-22T21:32:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fd0ace33-a322-475c-b9e5-d9d28460e057", - self: "/apiContact/fd0ace33-a322-475c-b9e5-d9d28460e057", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:30:36+00:00", - dateModified: "2022-11-22T23:30:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "23037d30-a46c-4018-85f1-65aee011d1da", - self: "/apiContact/23037d30-a46c-4018-85f1-65aee011d1da", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:31:28+00:00", - dateModified: "2022-11-23T01:31:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c98d4ce-77ac-449e-ae1b-39a7ecdeed68", - self: "/apiContact/2c98d4ce-77ac-449e-ae1b-39a7ecdeed68", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:32:17+00:00", - dateModified: "2022-11-23T03:32:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7bc6d445-fb9e-49e7-8fb4-ac9a7b3d7410", - self: "/apiContact/7bc6d445-fb9e-49e7-8fb4-ac9a7b3d7410", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:32:13+00:00", - dateModified: "2022-11-23T05:32:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72f2079b-64bb-45ed-9f56-56f7cb3545dc", - self: "/apiContact/72f2079b-64bb-45ed-9f56-56f7cb3545dc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:31:55+00:00", - dateModified: "2022-11-23T07:31:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eac2a2c7-1368-4ea1-a950-58a761e311f0", - self: "/apiContact/eac2a2c7-1368-4ea1-a950-58a761e311f0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:59:57+00:00", - dateModified: "2022-11-23T08:59:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8896ba33-68f1-4fde-8605-1d0b975f5c83", - self: "/apiContact/8896ba33-68f1-4fde-8605-1d0b975f5c83", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:55:58+00:00", - dateModified: "2022-11-23T09:55:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3876a691-fc27-412f-b3ca-8c4dd07627e3", - self: "/apiContact/3876a691-fc27-412f-b3ca-8c4dd07627e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:51:52+00:00", - dateModified: "2022-11-23T10:51:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0ad06a8a-6d22-4ac1-85e7-a1c54ffff534", - self: "/apiContact/0ad06a8a-6d22-4ac1-85e7-a1c54ffff534", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:53:27+00:00", - dateModified: "2022-11-23T11:53:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "acb85e76-3274-4901-81ac-60d911c8aaa6", - self: "/apiContact/acb85e76-3274-4901-81ac-60d911c8aaa6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:44:17+00:00", - dateModified: "2022-11-23T13:44:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3405d716-7257-485c-a4a8-f2dd7c2440b0", - self: "/apiContact/3405d716-7257-485c-a4a8-f2dd7c2440b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:29:27+00:00", - dateModified: "2022-11-23T14:29:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4e73ebb6-059a-4c81-bcae-7bf8c3776a3b", - self: "/apiContact/4e73ebb6-059a-4c81-bcae-7bf8c3776a3b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:46:16+00:00", - dateModified: "2022-11-23T15:46:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d3b45b92-0246-462c-b871-6e036773628b", - self: "/apiContact/d3b45b92-0246-462c-b871-6e036773628b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:40:46+00:00", - dateModified: "2022-11-23T17:40:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "399bdd28-31ed-41cc-b6ad-b52af0c672dc", - self: "/apiContact/399bdd28-31ed-41cc-b6ad-b52af0c672dc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:37:56+00:00", - dateModified: "2022-11-23T19:37:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c4206aad-b2c8-4c9b-b0ab-bd3a8f6d762b", - self: "/apiContact/c4206aad-b2c8-4c9b-b0ab-bd3a8f6d762b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:40:51+00:00", - dateModified: "2022-11-23T21:40:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c11eefab-8318-4e92-b7a4-6f006e7d110d", - self: "/apiContact/c11eefab-8318-4e92-b7a4-6f006e7d110d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:34:37+00:00", - dateModified: "2022-11-23T23:34:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a9f915ce-35c3-4197-9847-6219f27ff6f1", - self: "/apiContact/a9f915ce-35c3-4197-9847-6219f27ff6f1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:32:51+00:00", - dateModified: "2022-11-24T01:32:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b419eee3-f30e-4fb3-8f3f-13a15172edc5", - self: "/apiContact/b419eee3-f30e-4fb3-8f3f-13a15172edc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:32:39+00:00", - dateModified: "2022-11-24T03:32:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "54f6f402-9ff7-4c1d-b8c6-3bd87e2b312a", - self: "/apiContact/54f6f402-9ff7-4c1d-b8c6-3bd87e2b312a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:33:14+00:00", - dateModified: "2022-11-24T05:33:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "edcb03d2-b4e8-4b9e-83b4-af91b431567d", - self: "/apiContact/edcb03d2-b4e8-4b9e-83b4-af91b431567d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:39:23+00:00", - dateModified: "2022-11-24T07:39:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "870e463b-ad1e-47c7-875a-a89ecf1bfd58", - self: "/apiContact/870e463b-ad1e-47c7-875a-a89ecf1bfd58", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:37:33+00:00", - dateModified: "2022-11-24T09:37:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "33020b8b-b22c-42af-985c-8f805fbc9689", - self: "/apiContact/33020b8b-b22c-42af-985c-8f805fbc9689", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:35:30+00:00", - dateModified: "2022-11-24T11:35:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5dc774d5-8926-45bd-bc6c-5fea1d3df825", - self: "/apiContact/5dc774d5-8926-45bd-bc6c-5fea1d3df825", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:10:52+00:00", - dateModified: "2022-12-09T11:10:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7ff43e70-f1ce-457f-bcc3-61f92ea3e940", - self: "/apiContact/7ff43e70-f1ce-457f-bcc3-61f92ea3e940", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:52:36+00:00", - dateModified: "2022-12-09T12:52:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c65fa5a-e1b3-4b74-a839-966a0285fa80", - self: "/apiContact/0c65fa5a-e1b3-4b74-a839-966a0285fa80", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:52:24+00:00", - dateModified: "2022-12-10T14:52:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a9228b1-2356-4660-b119-e5f9e5170585", - self: "/apiContact/5a9228b1-2356-4660-b119-e5f9e5170585", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:57:43+00:00", - dateModified: "2022-12-11T14:57:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a64677b7-f779-43d0-9b51-5095d3455ff1", - self: "/apiContact/a64677b7-f779-43d0-9b51-5095d3455ff1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:57:08+00:00", - dateModified: "2022-12-12T14:57:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "3e1a7018-73b9-488d-be0d-c1a5fffdcf07", - self: "/apiContact/3e1a7018-73b9-488d-be0d-c1a5fffdcf07", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:54+00:00", - dateModified: "2022-10-28T15:15:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8b49ca0d-dbd7-43a5-8be7-89c64422b050", - self: "/apiContact/8b49ca0d-dbd7-43a5-8be7-89c64422b050", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:25+00:00", - dateModified: "2022-10-28T15:17:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ac67658-0ce7-46ba-8b50-23e9104ec2b0", - self: "/apiContact/3ac67658-0ce7-46ba-8b50-23e9104ec2b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:35+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "74299e4c-c9b8-4b7a-99c3-fc0dd4e0a488", - self: "/apiContact/74299e4c-c9b8-4b7a-99c3-fc0dd4e0a488", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:34+00:00", - dateModified: "2022-10-28T15:17:34+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a98df157-e203-489c-9471-802cd8965333", - self: "/apiContact/a98df157-e203-489c-9471-802cd8965333", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:57+00:00", - dateModified: "2022-10-28T15:17:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4f10729b-89b5-4cad-9e07-b509f507f579", - self: "/apiContact/4f10729b-89b5-4cad-9e07-b509f507f579", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:18+00:00", - dateModified: "2022-10-29T00:04:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2ac9be4a-6e18-418d-9ae2-8ba1e3f70c6d", - self: "/apiContact/2ac9be4a-6e18-418d-9ae2-8ba1e3f70c6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:57+00:00", - dateModified: "2022-10-30T00:08:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "45bc53d0-6f52-407f-a20a-f24a47aa6eeb", - self: "/apiContact/45bc53d0-6f52-407f-a20a-f24a47aa6eeb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:07+00:00", - dateModified: "2022-10-31T00:10:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2e6cd6e4-8762-4ed0-8fea-4c9265429d6e", - self: "/apiContact/2e6cd6e4-8762-4ed0-8fea-4c9265429d6e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:47+00:00", - dateModified: "2022-10-31T13:45:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c4999f7-29e6-46df-b3a3-619cb85e525a", - self: "/apiContact/0c4999f7-29e6-46df-b3a3-619cb85e525a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:44+00:00", - dateModified: "2022-11-01T13:20:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e0780236-9e12-4b7f-9450-b85338dd065f", - self: "/apiContact/e0780236-9e12-4b7f-9450-b85338dd065f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:05:01+00:00", - dateModified: "2022-11-02T14:05:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6afa31a9-41ff-464a-ac80-34ae48c84cd6", - self: "/apiContact/6afa31a9-41ff-464a-ac80-34ae48c84cd6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:01+00:00", - dateModified: "2022-11-03T13:55:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "93d34f04-ab3c-4003-9273-f937f8dc81c7", - self: "/apiContact/93d34f04-ab3c-4003-9273-f937f8dc81c7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:03:49+00:00", - dateModified: "2022-11-04T15:03:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bad9f169-1c6b-40d6-9a02-96b5316e7c87", - self: "/apiContact/bad9f169-1c6b-40d6-9a02-96b5316e7c87", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:47+00:00", - dateModified: "2022-11-10T10:14:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1c27c2dd-d8ab-4540-8a0e-5635662dab04", - self: "/apiContact/1c27c2dd-d8ab-4540-8a0e-5635662dab04", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:31+00:00", - dateModified: "2022-11-10T13:09:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78ffdc26-c2ca-4433-858e-5d655ffcc8d4", - self: "/apiContact/78ffdc26-c2ca-4433-858e-5d655ffcc8d4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:11+00:00", - dateModified: "2022-11-21T12:53:11+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f5bcfc38-d4c2-4cba-923e-ff17c07594cd", - self: "/apiContact/f5bcfc38-d4c2-4cba-923e-ff17c07594cd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:00+00:00", - dateModified: "2022-11-21T12:55:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "96ab086a-7ef1-4cd3-8a1f-2e8105ee9a3f", - self: "/apiContact/96ab086a-7ef1-4cd3-8a1f-2e8105ee9a3f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:06:58+00:00", - dateModified: "2022-11-21T13:06:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9992b2b1-8b28-42ed-b2cc-75031ddbe037", - self: "/apiContact/9992b2b1-8b28-42ed-b2cc-75031ddbe037", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:32:55+00:00", - dateModified: "2022-11-22T15:32:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f1c4ee03-e12d-4121-9efb-96fef9d4fd35", - self: "/apiContact/f1c4ee03-e12d-4121-9efb-96fef9d4fd35", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:04:30+00:00", - dateModified: "2022-11-22T17:04:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "19233f48-d903-4bde-a8e3-722b2c467581", - self: "/apiContact/19233f48-d903-4bde-a8e3-722b2c467581", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:54:20+00:00", - dateModified: "2022-11-22T16:54:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d85fe4b-a883-4200-8323-de5fb21b1899", - self: "/apiContact/8d85fe4b-a883-4200-8323-de5fb21b1899", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:01:22+00:00", - dateModified: "2022-11-22T18:01:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "788ca87d-3877-401f-9ca4-dcf83d90d4df", - self: "/apiContact/788ca87d-3877-401f-9ca4-dcf83d90d4df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:30:55+00:00", - dateModified: "2022-11-22T19:30:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5d268b2d-c714-41e2-b59b-f3c66317f35b", - self: "/apiContact/5d268b2d-c714-41e2-b59b-f3c66317f35b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:32:51+00:00", - dateModified: "2022-11-22T21:32:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fd0ace33-a322-475c-b9e5-d9d28460e057", - self: "/apiContact/fd0ace33-a322-475c-b9e5-d9d28460e057", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:30:36+00:00", - dateModified: "2022-11-22T23:30:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "23037d30-a46c-4018-85f1-65aee011d1da", - self: "/apiContact/23037d30-a46c-4018-85f1-65aee011d1da", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:31:28+00:00", - dateModified: "2022-11-23T01:31:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c98d4ce-77ac-449e-ae1b-39a7ecdeed68", - self: "/apiContact/2c98d4ce-77ac-449e-ae1b-39a7ecdeed68", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:32:17+00:00", - dateModified: "2022-11-23T03:32:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7bc6d445-fb9e-49e7-8fb4-ac9a7b3d7410", - self: "/apiContact/7bc6d445-fb9e-49e7-8fb4-ac9a7b3d7410", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:32:13+00:00", - dateModified: "2022-11-23T05:32:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "72f2079b-64bb-45ed-9f56-56f7cb3545dc", - self: "/apiContact/72f2079b-64bb-45ed-9f56-56f7cb3545dc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:31:55+00:00", - dateModified: "2022-11-23T07:31:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "eac2a2c7-1368-4ea1-a950-58a761e311f0", - self: "/apiContact/eac2a2c7-1368-4ea1-a950-58a761e311f0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:59:57+00:00", - dateModified: "2022-11-23T08:59:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8896ba33-68f1-4fde-8605-1d0b975f5c83", - self: "/apiContact/8896ba33-68f1-4fde-8605-1d0b975f5c83", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:55:58+00:00", - dateModified: "2022-11-23T09:55:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3876a691-fc27-412f-b3ca-8c4dd07627e3", - self: "/apiContact/3876a691-fc27-412f-b3ca-8c4dd07627e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:51:52+00:00", - dateModified: "2022-11-23T10:51:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0ad06a8a-6d22-4ac1-85e7-a1c54ffff534", - self: "/apiContact/0ad06a8a-6d22-4ac1-85e7-a1c54ffff534", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:53:27+00:00", - dateModified: "2022-11-23T11:53:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "acb85e76-3274-4901-81ac-60d911c8aaa6", - self: "/apiContact/acb85e76-3274-4901-81ac-60d911c8aaa6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:44:17+00:00", - dateModified: "2022-11-23T13:44:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3405d716-7257-485c-a4a8-f2dd7c2440b0", - self: "/apiContact/3405d716-7257-485c-a4a8-f2dd7c2440b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:29:27+00:00", - dateModified: "2022-11-23T14:29:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4e73ebb6-059a-4c81-bcae-7bf8c3776a3b", - self: "/apiContact/4e73ebb6-059a-4c81-bcae-7bf8c3776a3b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:46:16+00:00", - dateModified: "2022-11-23T15:46:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d3b45b92-0246-462c-b871-6e036773628b", - self: "/apiContact/d3b45b92-0246-462c-b871-6e036773628b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:40:46+00:00", - dateModified: "2022-11-23T17:40:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "399bdd28-31ed-41cc-b6ad-b52af0c672dc", - self: "/apiContact/399bdd28-31ed-41cc-b6ad-b52af0c672dc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:37:56+00:00", - dateModified: "2022-11-23T19:37:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c4206aad-b2c8-4c9b-b0ab-bd3a8f6d762b", - self: "/apiContact/c4206aad-b2c8-4c9b-b0ab-bd3a8f6d762b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:40:51+00:00", - dateModified: "2022-11-23T21:40:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c11eefab-8318-4e92-b7a4-6f006e7d110d", - self: "/apiContact/c11eefab-8318-4e92-b7a4-6f006e7d110d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:34:37+00:00", - dateModified: "2022-11-23T23:34:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a9f915ce-35c3-4197-9847-6219f27ff6f1", - self: "/apiContact/a9f915ce-35c3-4197-9847-6219f27ff6f1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:32:51+00:00", - dateModified: "2022-11-24T01:32:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b419eee3-f30e-4fb3-8f3f-13a15172edc5", - self: "/apiContact/b419eee3-f30e-4fb3-8f3f-13a15172edc5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:32:39+00:00", - dateModified: "2022-11-24T03:32:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "54f6f402-9ff7-4c1d-b8c6-3bd87e2b312a", - self: "/apiContact/54f6f402-9ff7-4c1d-b8c6-3bd87e2b312a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:33:14+00:00", - dateModified: "2022-11-24T05:33:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "edcb03d2-b4e8-4b9e-83b4-af91b431567d", - self: "/apiContact/edcb03d2-b4e8-4b9e-83b4-af91b431567d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:39:23+00:00", - dateModified: "2022-11-24T07:39:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "870e463b-ad1e-47c7-875a-a89ecf1bfd58", - self: "/apiContact/870e463b-ad1e-47c7-875a-a89ecf1bfd58", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:37:33+00:00", - dateModified: "2022-11-24T09:37:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "33020b8b-b22c-42af-985c-8f805fbc9689", - self: "/apiContact/33020b8b-b22c-42af-985c-8f805fbc9689", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:35:30+00:00", - dateModified: "2022-11-24T11:35:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5dc774d5-8926-45bd-bc6c-5fea1d3df825", - self: "/apiContact/5dc774d5-8926-45bd-bc6c-5fea1d3df825", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:10:52+00:00", - dateModified: "2022-12-09T11:10:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7ff43e70-f1ce-457f-bcc3-61f92ea3e940", - self: "/apiContact/7ff43e70-f1ce-457f-bcc3-61f92ea3e940", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:52:36+00:00", - dateModified: "2022-12-09T12:52:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c65fa5a-e1b3-4b74-a839-966a0285fa80", - self: "/apiContact/0c65fa5a-e1b3-4b74-a839-966a0285fa80", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:52:24+00:00", - dateModified: "2022-12-10T14:52:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a9228b1-2356-4660-b119-e5f9e5170585", - self: "/apiContact/5a9228b1-2356-4660-b119-e5f9e5170585", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:57:43+00:00", - dateModified: "2022-12-11T14:57:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a64677b7-f779-43d0-9b51-5095d3455ff1", - self: "/apiContact/a64677b7-f779-43d0-9b51-5095d3455ff1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:57:08+00:00", - dateModified: "2022-12-12T14:57:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "08d31419-a10b-4b06-a239-897cbfdada5e", - self: "/apiRating/08d31419-a10b-4b06-a239-897cbfdada5e", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:39+00:00", - dateModified: "2022-11-14T13:54:49+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Contactcatalogus rated", - "The url: https://github.com/ConductionNL/contactcatalogus rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Contactcatalogus", - "Het \u201ccontacten\u201d component is bedoeld voor het opslaan van contactgegevens van personen en organisaties waarvoor nog geen BSN of KVK nummer bekend is (en dus geen bronverwijzing kan worden gedaan). rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "bd6f3a65-ed06-4d6f-88e4-489464adfe7c", - }, - { - _id: "f96f1ec0-8c6e-4999-95ee-b6f5b00a1418", - _self: { - id: "f96f1ec0-8c6e-4999-95ee-b6f5b00a1418", - self: "/api/oc/components/f96f1ec0-8c6e-4999-95ee-b6f5b00a1418", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:57+00:00", - dateModified: "2022-12-12T14:58:10+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "d0598ef3-387c-454a-be47-479ed2c22668", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "120", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "4e3b3416-0fd3-4fb5-b406-c60af39e0efc", - self: "/apiRepository/4e3b3416-0fd3-4fb5-b406-c60af39e0efc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:58+00:00", - dateModified: "2022-10-28T15:15:58+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "4227d1e3-2c6b-4ff8-9e2f-58b72cf6cb72", - self: "/api/oc/organizations/4227d1e3-2c6b-4ff8-9e2f-58b72cf6cb72", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:55+00:00", - dateModified: "2022-11-14T13:54:38+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "a1d440bc-77e6-413c-8d46-c5ca83624fe4", - "d2ecd4db-7909-41f3-a13e-7cba9853d96e", - "859a7eb3-e4af-45d1-9f09-b12bc6231615", - "a3382764-76d8-4c02-8f52-7737da309d02", - "96817f39-b200-4528-ac65-d9db640d6f5f", - "0252c9cc-52b6-465b-ba80-a93573069ac9", - "25f8d9bd-00d1-491b-a2c7-6a5b29233b53", - "45ad25f4-75bd-466c-80af-c155335d0d2f", - "046f0b33-426c-4129-aa37-2bc60afa4b3a", - "249b805d-0ec5-4fed-bc73-fe6faf0b471b", - "e5646344-5b61-4878-a256-093618c75d6f", - "518dba81-5bac-4017-8abb-58172b3d0481", - "d9fcebbe-4a08-4595-a26d-b68f283ad8f0", - "08eedfbc-eb42-4e5c-ae84-7db929b3ba1b", - "ce874e3a-c45a-4aca-a309-2195db059503", - "98a3f17a-b944-40ed-bf1e-d9eedab15fe5", - "389b2ecb-45b7-4edb-b5df-b886f390ecd1", - "00989490-3630-4eae-a1d7-b877348d42bd", - "22388e62-7b94-4a03-89ca-31b5fe99b58a", - "c9a1377f-3987-40f3-a56a-71ef85b5eb44", - "7c7ceece-fb02-44f8-8450-ecb128878a98", - "2f3cf3d8-a008-42b9-a48a-1cd628758033", - "ea11c5a3-d1f6-4b13-992c-58a453d78f7c", - "b0a38fcf-f5d5-4e10-84a8-feb07e74aaa4", - "cc2d1921-2abc-4040-9717-04c344d50ef3", - "43ed9a57-41a6-4929-99dd-9ece51b93c58", - "c4f9d0f8-c6d0-4be5-b3da-c586c068cfec", - "958a5103-cbc8-41f3-a3ab-441ad8f496fa", - "5eae837d-95ef-4d48-aefc-fcbd9c076693", - "fd24bc5d-b497-46c6-9cef-c61c0b9417ef", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "ContactMoment-Component", - url: "https://github.com/ConductionNL/ContactMoment-Component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-06-02T14:15:19Z", - stars: 0, - fork_count: 0, - issue_open_count: 4, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "86064", "36959", "14915", "13068", "3898", "3282", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "4227d1e3-2c6b-4ff8-9e2f-58b72cf6cb72", - self: "/api/oc/organizations/4227d1e3-2c6b-4ff8-9e2f-58b72cf6cb72", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:55+00:00", - dateModified: "2022-11-14T13:54:38+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "a1d440bc-77e6-413c-8d46-c5ca83624fe4", - "d2ecd4db-7909-41f3-a13e-7cba9853d96e", - "859a7eb3-e4af-45d1-9f09-b12bc6231615", - "a3382764-76d8-4c02-8f52-7737da309d02", - "96817f39-b200-4528-ac65-d9db640d6f5f", - "0252c9cc-52b6-465b-ba80-a93573069ac9", - "25f8d9bd-00d1-491b-a2c7-6a5b29233b53", - "45ad25f4-75bd-466c-80af-c155335d0d2f", - "046f0b33-426c-4129-aa37-2bc60afa4b3a", - "249b805d-0ec5-4fed-bc73-fe6faf0b471b", - "e5646344-5b61-4878-a256-093618c75d6f", - "518dba81-5bac-4017-8abb-58172b3d0481", - "d9fcebbe-4a08-4595-a26d-b68f283ad8f0", - "08eedfbc-eb42-4e5c-ae84-7db929b3ba1b", - "ce874e3a-c45a-4aca-a309-2195db059503", - "98a3f17a-b944-40ed-bf1e-d9eedab15fe5", - "389b2ecb-45b7-4edb-b5df-b886f390ecd1", - "00989490-3630-4eae-a1d7-b877348d42bd", - "22388e62-7b94-4a03-89ca-31b5fe99b58a", - "c9a1377f-3987-40f3-a56a-71ef85b5eb44", - "7c7ceece-fb02-44f8-8450-ecb128878a98", - "2f3cf3d8-a008-42b9-a48a-1cd628758033", - "ea11c5a3-d1f6-4b13-992c-58a453d78f7c", - "b0a38fcf-f5d5-4e10-84a8-feb07e74aaa4", - "cc2d1921-2abc-4040-9717-04c344d50ef3", - "43ed9a57-41a6-4929-99dd-9ece51b93c58", - "c4f9d0f8-c6d0-4be5-b3da-c586c068cfec", - "958a5103-cbc8-41f3-a3ab-441ad8f496fa", - "5eae837d-95ef-4d48-aefc-fcbd9c076693", - "fd24bc5d-b497-46c6-9cef-c61c0b9417ef", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "10a47084-f978-4dd6-8b93-4fabcc46182d", - self: "/apiDescription/10a47084-f978-4dd6-8b93-4fabcc46182d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: "Contact Moment Component,Dit component ondersteund het opslaan van klant contact momenten", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "5f1e1518-bb43-4dd0-b589-548a6bb9a1df", - self: "/apiComponentlegalEntity/5f1e1518-bb43-4dd0-b589-548a6bb9a1df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "b5ffe0d4-9d50-4f80-9e01-0a32883fb43b", - self: "/api/oc/organizations/b5ffe0d4-9d50-4f80-9e01-0a32883fb43b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "b5ffe0d4-9d50-4f80-9e01-0a32883fb43b", - self: "/api/oc/organizations/b5ffe0d4-9d50-4f80-9e01-0a32883fb43b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "99a18c74-0c10-4fb8-8853-89b6f3ecf865", - self: "/apiComponentnlEntity/99a18c74-0c10-4fb8-8853-89b6f3ecf865", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "ce883e31-9182-4527-b6d2-3b4b9bdde6b9", - self: "/apiComponentnlEntitycommongroundEntity/ce883e31-9182-4527-b6d2-3b4b9bdde6b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "ce883e31-9182-4527-b6d2-3b4b9bdde6b9", - self: "/apiComponentnlEntitycommongroundEntity/ce883e31-9182-4527-b6d2-3b4b9bdde6b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "941fafc5-bfb0-47ff-94c7-7187efe1d961", - self: "/apiComponentmaintenanceEntity/941fafc5-bfb0-47ff-94c7-7187efe1d961", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "9895398f-4126-4e4b-a29b-468c843a1f0f", - self: "/apiContact/9895398f-4126-4e4b-a29b-468c843a1f0f", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "17cbee6b-b5c6-44da-8a57-9e6fab2ab9d2", - self: "/apiContact/17cbee6b-b5c6-44da-8a57-9e6fab2ab9d2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:33+00:00", - dateModified: "2022-10-28T15:17:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d5b1a9bb-01a3-4cf6-98e3-fb8ec060748d", - self: "/apiContact/d5b1a9bb-01a3-4cf6-98e3-fb8ec060748d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:43+00:00", - dateModified: "2022-10-28T15:17:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78259c3b-f9d3-4190-93d0-519a038caa5e", - self: "/apiContact/78259c3b-f9d3-4190-93d0-519a038caa5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:42+00:00", - dateModified: "2022-10-28T15:17:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ebdb078f-9cdf-4727-b21b-1ac593bbea36", - self: "/apiContact/ebdb078f-9cdf-4727-b21b-1ac593bbea36", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:05+00:00", - dateModified: "2022-10-28T15:18:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d052092-4f9c-4a20-9cdc-c15bb6e4674d", - self: "/apiContact/8d052092-4f9c-4a20-9cdc-c15bb6e4674d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:23+00:00", - dateModified: "2022-10-29T00:04:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c615e408-7e92-4986-8e21-b734fa5a25fc", - self: "/apiContact/c615e408-7e92-4986-8e21-b734fa5a25fc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:02+00:00", - dateModified: "2022-10-30T00:09:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d2490dfc-7316-4ed1-94fc-be9fc24ad281", - self: "/apiContact/d2490dfc-7316-4ed1-94fc-be9fc24ad281", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:13+00:00", - dateModified: "2022-10-31T00:10:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "60857be3-4c43-44bd-9269-fefd7a7b0ec7", - self: "/apiContact/60857be3-4c43-44bd-9269-fefd7a7b0ec7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:54+00:00", - dateModified: "2022-10-31T13:45:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "696a57d1-ce64-4135-b2a0-3b9084aed15f", - self: "/apiContact/696a57d1-ce64-4135-b2a0-3b9084aed15f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:52+00:00", - dateModified: "2022-11-01T13:20:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a8a757fc-0913-4244-9eb7-863dd1612dfb", - self: "/apiContact/a8a757fc-0913-4244-9eb7-863dd1612dfb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:05:21+00:00", - dateModified: "2022-11-02T14:05:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4d02f1d-a941-4b60-aa75-d10ec4e19c96", - self: "/apiContact/e4d02f1d-a941-4b60-aa75-d10ec4e19c96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:05+00:00", - dateModified: "2022-11-03T13:55:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e31abc13-f7ea-4f91-a84c-1ca6d22fd277", - self: "/apiContact/e31abc13-f7ea-4f91-a84c-1ca6d22fd277", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:04:10+00:00", - dateModified: "2022-11-04T15:04:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "633cb84f-79cb-4a16-af08-2750c004b54a", - self: "/apiContact/633cb84f-79cb-4a16-af08-2750c004b54a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:49+00:00", - dateModified: "2022-11-10T10:14:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "16af582d-68a3-46c9-8ec7-d4bbc6696d4c", - self: "/apiContact/16af582d-68a3-46c9-8ec7-d4bbc6696d4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:40+00:00", - dateModified: "2022-11-10T13:09:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e63a6117-6b29-4997-afb2-ad634b386ed1", - self: "/apiContact/e63a6117-6b29-4997-afb2-ad634b386ed1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:28+00:00", - dateModified: "2022-11-21T12:53:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aec57c08-5388-4c25-8711-89f8a91430a5", - self: "/apiContact/aec57c08-5388-4c25-8711-89f8a91430a5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:25+00:00", - dateModified: "2022-11-21T12:55:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ad5bf0f-1502-4eb6-bfd8-6f0fcae1aaa4", - self: "/apiContact/3ad5bf0f-1502-4eb6-bfd8-6f0fcae1aaa4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:07:18+00:00", - dateModified: "2022-11-21T13:07:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "de9babb3-9fc5-4c0f-bd88-aebb9cd03116", - self: "/apiContact/de9babb3-9fc5-4c0f-bd88-aebb9cd03116", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:34:19+00:00", - dateModified: "2022-11-22T15:34:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "833f9e6d-00ae-47a8-8064-15bb3da61675", - self: "/apiContact/833f9e6d-00ae-47a8-8064-15bb3da61675", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:07:32+00:00", - dateModified: "2022-11-22T17:07:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d7425b76-c3ee-4aec-a757-0798f92e26a5", - self: "/apiContact/d7425b76-c3ee-4aec-a757-0798f92e26a5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:57:19+00:00", - dateModified: "2022-11-22T16:57:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e73d4ed0-4fea-456e-af39-83de09cf7ea8", - self: "/apiContact/e73d4ed0-4fea-456e-af39-83de09cf7ea8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:02:55+00:00", - dateModified: "2022-11-22T18:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "25aa5b2f-edb1-48cc-984c-47814b612c6f", - self: "/apiContact/25aa5b2f-edb1-48cc-984c-47814b612c6f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:32:44+00:00", - dateModified: "2022-11-22T19:32:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c08b9180-89f0-4c89-9a87-46be6b81f0f5", - self: "/apiContact/c08b9180-89f0-4c89-9a87-46be6b81f0f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:34:18+00:00", - dateModified: "2022-11-22T21:34:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8a249dd-2490-4198-94ec-1fc8ab814916", - self: "/apiContact/d8a249dd-2490-4198-94ec-1fc8ab814916", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:32:17+00:00", - dateModified: "2022-11-22T23:32:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "09365d10-6bbb-4719-8e02-8e68ce365993", - self: "/apiContact/09365d10-6bbb-4719-8e02-8e68ce365993", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:32:50+00:00", - dateModified: "2022-11-23T01:32:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b6f77ac5-40df-48ed-9a9e-1bdb9e2413b6", - self: "/apiContact/b6f77ac5-40df-48ed-9a9e-1bdb9e2413b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:33:59+00:00", - dateModified: "2022-11-23T03:33:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c7f1fa08-0b8a-4df9-abe9-c44a8dbbae60", - self: "/apiContact/c7f1fa08-0b8a-4df9-abe9-c44a8dbbae60", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:33:44+00:00", - dateModified: "2022-11-23T05:33:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb54efe2-b483-4faf-9cbf-4bf99a332f0f", - self: "/apiContact/bb54efe2-b483-4faf-9cbf-4bf99a332f0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:33:32+00:00", - dateModified: "2022-11-23T07:33:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "77ae1304-440a-4f4a-ab73-a3f97835e613", - self: "/apiContact/77ae1304-440a-4f4a-ab73-a3f97835e613", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:02:50+00:00", - dateModified: "2022-11-23T09:02:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9f5d1f93-b23e-4152-b58f-bdaf1289bd52", - self: "/apiContact/9f5d1f93-b23e-4152-b58f-bdaf1289bd52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:00:26+00:00", - dateModified: "2022-11-23T10:00:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "37cbf0fa-c5c5-4bdb-a38c-4482f92dc121", - self: "/apiContact/37cbf0fa-c5c5-4bdb-a38c-4482f92dc121", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:54:26+00:00", - dateModified: "2022-11-23T10:54:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bcf30330-24aa-4c55-8464-8f717eadfff7", - self: "/apiContact/bcf30330-24aa-4c55-8464-8f717eadfff7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:55:02+00:00", - dateModified: "2022-11-23T11:55:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6adcec9e-3b76-4f85-8340-f1b2aae9df3a", - self: "/apiContact/6adcec9e-3b76-4f85-8340-f1b2aae9df3a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:46:22+00:00", - dateModified: "2022-11-23T13:46:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e5a4fb4f-a56b-410b-a14e-c7c324cc2f98", - self: "/apiContact/e5a4fb4f-a56b-410b-a14e-c7c324cc2f98", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:31:32+00:00", - dateModified: "2022-11-23T14:31:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0e165771-d347-440c-a619-b45946e546db", - self: "/apiContact/0e165771-d347-440c-a619-b45946e546db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:47:48+00:00", - dateModified: "2022-11-23T15:47:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b619dfc-d5e8-4e51-b759-0ecd19c66c6b", - self: "/apiContact/9b619dfc-d5e8-4e51-b759-0ecd19c66c6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:42:31+00:00", - dateModified: "2022-11-23T17:42:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "427f4b6c-43e0-4d4d-a81c-116c7f806c79", - self: "/apiContact/427f4b6c-43e0-4d4d-a81c-116c7f806c79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:39:58+00:00", - dateModified: "2022-11-23T19:39:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "efef0c8a-b94b-4b79-9d60-414beff99d95", - self: "/apiContact/efef0c8a-b94b-4b79-9d60-414beff99d95", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:42:47+00:00", - dateModified: "2022-11-23T21:42:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c566ad9f-bbba-491a-a870-ebdd78815031", - self: "/apiContact/c566ad9f-bbba-491a-a870-ebdd78815031", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:36:19+00:00", - dateModified: "2022-11-23T23:36:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a38623a3-5ed0-4eb2-a48a-789ace10cf41", - self: "/apiContact/a38623a3-5ed0-4eb2-a48a-789ace10cf41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:34:25+00:00", - dateModified: "2022-11-24T01:34:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ecea1ca-26ba-4a2c-a7fe-6def2c69f7ad", - self: "/apiContact/5ecea1ca-26ba-4a2c-a7fe-6def2c69f7ad", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:34:08+00:00", - dateModified: "2022-11-24T03:34:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c59ddca-7563-4883-af28-e2470e0c2b02", - self: "/apiContact/2c59ddca-7563-4883-af28-e2470e0c2b02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:34:53+00:00", - dateModified: "2022-11-24T05:34:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1f0a67ac-7fb0-416b-84be-f2255cc4bf8b", - self: "/apiContact/1f0a67ac-7fb0-416b-84be-f2255cc4bf8b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:41:12+00:00", - dateModified: "2022-11-24T07:41:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88c53e31-325b-4101-adb8-228935ee8efa", - self: "/apiContact/88c53e31-325b-4101-adb8-228935ee8efa", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:39:15+00:00", - dateModified: "2022-11-24T09:39:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "632b3669-b735-4fbc-9f8a-f20890a3784c", - self: "/apiContact/632b3669-b735-4fbc-9f8a-f20890a3784c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:37:22+00:00", - dateModified: "2022-11-24T11:37:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a4fa4a10-4ed7-4124-a83a-29885bacdcdf", - self: "/apiContact/a4fa4a10-4ed7-4124-a83a-29885bacdcdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:12:17+00:00", - dateModified: "2022-12-09T11:12:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "55331384-4e25-49cb-ba3c-e148f144e02b", - self: "/apiContact/55331384-4e25-49cb-ba3c-e148f144e02b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:53:35+00:00", - dateModified: "2022-12-09T12:53:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c65b4e62-ab37-4679-a4b7-afa4a75249b8", - self: "/apiContact/c65b4e62-ab37-4679-a4b7-afa4a75249b8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:53:25+00:00", - dateModified: "2022-12-10T14:53:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c8202aed-be39-489c-80a1-028ff449effd", - self: "/apiContact/c8202aed-be39-489c-80a1-028ff449effd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:58:38+00:00", - dateModified: "2022-12-11T14:58:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c0a8f83b-660c-45c7-995b-0ff79617eed0", - self: "/apiContact/c0a8f83b-660c-45c7-995b-0ff79617eed0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:57:54+00:00", - dateModified: "2022-12-12T14:57:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "9895398f-4126-4e4b-a29b-468c843a1f0f", - self: "/apiContact/9895398f-4126-4e4b-a29b-468c843a1f0f", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "17cbee6b-b5c6-44da-8a57-9e6fab2ab9d2", - self: "/apiContact/17cbee6b-b5c6-44da-8a57-9e6fab2ab9d2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:33+00:00", - dateModified: "2022-10-28T15:17:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d5b1a9bb-01a3-4cf6-98e3-fb8ec060748d", - self: "/apiContact/d5b1a9bb-01a3-4cf6-98e3-fb8ec060748d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:43+00:00", - dateModified: "2022-10-28T15:17:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78259c3b-f9d3-4190-93d0-519a038caa5e", - self: "/apiContact/78259c3b-f9d3-4190-93d0-519a038caa5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:42+00:00", - dateModified: "2022-10-28T15:17:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ebdb078f-9cdf-4727-b21b-1ac593bbea36", - self: "/apiContact/ebdb078f-9cdf-4727-b21b-1ac593bbea36", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:05+00:00", - dateModified: "2022-10-28T15:18:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d052092-4f9c-4a20-9cdc-c15bb6e4674d", - self: "/apiContact/8d052092-4f9c-4a20-9cdc-c15bb6e4674d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:23+00:00", - dateModified: "2022-10-29T00:04:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c615e408-7e92-4986-8e21-b734fa5a25fc", - self: "/apiContact/c615e408-7e92-4986-8e21-b734fa5a25fc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:02+00:00", - dateModified: "2022-10-30T00:09:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d2490dfc-7316-4ed1-94fc-be9fc24ad281", - self: "/apiContact/d2490dfc-7316-4ed1-94fc-be9fc24ad281", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:13+00:00", - dateModified: "2022-10-31T00:10:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "60857be3-4c43-44bd-9269-fefd7a7b0ec7", - self: "/apiContact/60857be3-4c43-44bd-9269-fefd7a7b0ec7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:54+00:00", - dateModified: "2022-10-31T13:45:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "696a57d1-ce64-4135-b2a0-3b9084aed15f", - self: "/apiContact/696a57d1-ce64-4135-b2a0-3b9084aed15f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:52+00:00", - dateModified: "2022-11-01T13:20:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a8a757fc-0913-4244-9eb7-863dd1612dfb", - self: "/apiContact/a8a757fc-0913-4244-9eb7-863dd1612dfb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:05:21+00:00", - dateModified: "2022-11-02T14:05:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4d02f1d-a941-4b60-aa75-d10ec4e19c96", - self: "/apiContact/e4d02f1d-a941-4b60-aa75-d10ec4e19c96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:05+00:00", - dateModified: "2022-11-03T13:55:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e31abc13-f7ea-4f91-a84c-1ca6d22fd277", - self: "/apiContact/e31abc13-f7ea-4f91-a84c-1ca6d22fd277", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:04:10+00:00", - dateModified: "2022-11-04T15:04:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "633cb84f-79cb-4a16-af08-2750c004b54a", - self: "/apiContact/633cb84f-79cb-4a16-af08-2750c004b54a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:49+00:00", - dateModified: "2022-11-10T10:14:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "16af582d-68a3-46c9-8ec7-d4bbc6696d4c", - self: "/apiContact/16af582d-68a3-46c9-8ec7-d4bbc6696d4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:40+00:00", - dateModified: "2022-11-10T13:09:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e63a6117-6b29-4997-afb2-ad634b386ed1", - self: "/apiContact/e63a6117-6b29-4997-afb2-ad634b386ed1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:28+00:00", - dateModified: "2022-11-21T12:53:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aec57c08-5388-4c25-8711-89f8a91430a5", - self: "/apiContact/aec57c08-5388-4c25-8711-89f8a91430a5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:25+00:00", - dateModified: "2022-11-21T12:55:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ad5bf0f-1502-4eb6-bfd8-6f0fcae1aaa4", - self: "/apiContact/3ad5bf0f-1502-4eb6-bfd8-6f0fcae1aaa4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:07:18+00:00", - dateModified: "2022-11-21T13:07:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "de9babb3-9fc5-4c0f-bd88-aebb9cd03116", - self: "/apiContact/de9babb3-9fc5-4c0f-bd88-aebb9cd03116", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:34:19+00:00", - dateModified: "2022-11-22T15:34:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "833f9e6d-00ae-47a8-8064-15bb3da61675", - self: "/apiContact/833f9e6d-00ae-47a8-8064-15bb3da61675", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:07:32+00:00", - dateModified: "2022-11-22T17:07:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d7425b76-c3ee-4aec-a757-0798f92e26a5", - self: "/apiContact/d7425b76-c3ee-4aec-a757-0798f92e26a5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:57:19+00:00", - dateModified: "2022-11-22T16:57:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e73d4ed0-4fea-456e-af39-83de09cf7ea8", - self: "/apiContact/e73d4ed0-4fea-456e-af39-83de09cf7ea8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:02:55+00:00", - dateModified: "2022-11-22T18:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "25aa5b2f-edb1-48cc-984c-47814b612c6f", - self: "/apiContact/25aa5b2f-edb1-48cc-984c-47814b612c6f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:32:44+00:00", - dateModified: "2022-11-22T19:32:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c08b9180-89f0-4c89-9a87-46be6b81f0f5", - self: "/apiContact/c08b9180-89f0-4c89-9a87-46be6b81f0f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:34:18+00:00", - dateModified: "2022-11-22T21:34:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8a249dd-2490-4198-94ec-1fc8ab814916", - self: "/apiContact/d8a249dd-2490-4198-94ec-1fc8ab814916", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:32:17+00:00", - dateModified: "2022-11-22T23:32:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "09365d10-6bbb-4719-8e02-8e68ce365993", - self: "/apiContact/09365d10-6bbb-4719-8e02-8e68ce365993", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:32:50+00:00", - dateModified: "2022-11-23T01:32:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b6f77ac5-40df-48ed-9a9e-1bdb9e2413b6", - self: "/apiContact/b6f77ac5-40df-48ed-9a9e-1bdb9e2413b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:33:59+00:00", - dateModified: "2022-11-23T03:33:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c7f1fa08-0b8a-4df9-abe9-c44a8dbbae60", - self: "/apiContact/c7f1fa08-0b8a-4df9-abe9-c44a8dbbae60", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:33:44+00:00", - dateModified: "2022-11-23T05:33:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb54efe2-b483-4faf-9cbf-4bf99a332f0f", - self: "/apiContact/bb54efe2-b483-4faf-9cbf-4bf99a332f0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:33:32+00:00", - dateModified: "2022-11-23T07:33:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "77ae1304-440a-4f4a-ab73-a3f97835e613", - self: "/apiContact/77ae1304-440a-4f4a-ab73-a3f97835e613", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:02:50+00:00", - dateModified: "2022-11-23T09:02:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9f5d1f93-b23e-4152-b58f-bdaf1289bd52", - self: "/apiContact/9f5d1f93-b23e-4152-b58f-bdaf1289bd52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:00:26+00:00", - dateModified: "2022-11-23T10:00:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "37cbf0fa-c5c5-4bdb-a38c-4482f92dc121", - self: "/apiContact/37cbf0fa-c5c5-4bdb-a38c-4482f92dc121", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:54:26+00:00", - dateModified: "2022-11-23T10:54:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bcf30330-24aa-4c55-8464-8f717eadfff7", - self: "/apiContact/bcf30330-24aa-4c55-8464-8f717eadfff7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:55:02+00:00", - dateModified: "2022-11-23T11:55:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6adcec9e-3b76-4f85-8340-f1b2aae9df3a", - self: "/apiContact/6adcec9e-3b76-4f85-8340-f1b2aae9df3a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:46:22+00:00", - dateModified: "2022-11-23T13:46:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e5a4fb4f-a56b-410b-a14e-c7c324cc2f98", - self: "/apiContact/e5a4fb4f-a56b-410b-a14e-c7c324cc2f98", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:31:32+00:00", - dateModified: "2022-11-23T14:31:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0e165771-d347-440c-a619-b45946e546db", - self: "/apiContact/0e165771-d347-440c-a619-b45946e546db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:47:48+00:00", - dateModified: "2022-11-23T15:47:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b619dfc-d5e8-4e51-b759-0ecd19c66c6b", - self: "/apiContact/9b619dfc-d5e8-4e51-b759-0ecd19c66c6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:42:31+00:00", - dateModified: "2022-11-23T17:42:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "427f4b6c-43e0-4d4d-a81c-116c7f806c79", - self: "/apiContact/427f4b6c-43e0-4d4d-a81c-116c7f806c79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:39:58+00:00", - dateModified: "2022-11-23T19:39:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "efef0c8a-b94b-4b79-9d60-414beff99d95", - self: "/apiContact/efef0c8a-b94b-4b79-9d60-414beff99d95", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:42:47+00:00", - dateModified: "2022-11-23T21:42:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c566ad9f-bbba-491a-a870-ebdd78815031", - self: "/apiContact/c566ad9f-bbba-491a-a870-ebdd78815031", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:36:19+00:00", - dateModified: "2022-11-23T23:36:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a38623a3-5ed0-4eb2-a48a-789ace10cf41", - self: "/apiContact/a38623a3-5ed0-4eb2-a48a-789ace10cf41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:34:25+00:00", - dateModified: "2022-11-24T01:34:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ecea1ca-26ba-4a2c-a7fe-6def2c69f7ad", - self: "/apiContact/5ecea1ca-26ba-4a2c-a7fe-6def2c69f7ad", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:34:08+00:00", - dateModified: "2022-11-24T03:34:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c59ddca-7563-4883-af28-e2470e0c2b02", - self: "/apiContact/2c59ddca-7563-4883-af28-e2470e0c2b02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:34:53+00:00", - dateModified: "2022-11-24T05:34:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1f0a67ac-7fb0-416b-84be-f2255cc4bf8b", - self: "/apiContact/1f0a67ac-7fb0-416b-84be-f2255cc4bf8b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:41:12+00:00", - dateModified: "2022-11-24T07:41:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88c53e31-325b-4101-adb8-228935ee8efa", - self: "/apiContact/88c53e31-325b-4101-adb8-228935ee8efa", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:39:15+00:00", - dateModified: "2022-11-24T09:39:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "632b3669-b735-4fbc-9f8a-f20890a3784c", - self: "/apiContact/632b3669-b735-4fbc-9f8a-f20890a3784c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:37:22+00:00", - dateModified: "2022-11-24T11:37:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a4fa4a10-4ed7-4124-a83a-29885bacdcdf", - self: "/apiContact/a4fa4a10-4ed7-4124-a83a-29885bacdcdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:12:17+00:00", - dateModified: "2022-12-09T11:12:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "55331384-4e25-49cb-ba3c-e148f144e02b", - self: "/apiContact/55331384-4e25-49cb-ba3c-e148f144e02b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:53:35+00:00", - dateModified: "2022-12-09T12:53:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c65b4e62-ab37-4679-a4b7-afa4a75249b8", - self: "/apiContact/c65b4e62-ab37-4679-a4b7-afa4a75249b8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:53:25+00:00", - dateModified: "2022-12-10T14:53:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c8202aed-be39-489c-80a1-028ff449effd", - self: "/apiContact/c8202aed-be39-489c-80a1-028ff449effd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:58:38+00:00", - dateModified: "2022-12-11T14:58:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c0a8f83b-660c-45c7-995b-0ff79617eed0", - self: "/apiContact/c0a8f83b-660c-45c7-995b-0ff79617eed0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:57:54+00:00", - dateModified: "2022-12-12T14:57:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "559a2060-99f5-41ec-83db-4434c294d470", - self: "/apiRating/559a2060-99f5-41ec-83db-4434c294d470", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:41+00:00", - dateModified: "2022-11-14T13:54:38+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Contact Moment Component rated", - "The url: https://github.com/ConductionNL/ContactMoment-Component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Contact Moment Component", - "Dit component ondersteund het opslaan van klant contact momenten rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "Contact Moment Component", - embedded: { - url: { - _self: { - id: "4e3b3416-0fd3-4fb5-b406-c60af39e0efc", - self: "/apiRepository/4e3b3416-0fd3-4fb5-b406-c60af39e0efc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:58+00:00", - dateModified: "2022-10-28T15:15:58+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "4227d1e3-2c6b-4ff8-9e2f-58b72cf6cb72", - self: "/api/oc/organizations/4227d1e3-2c6b-4ff8-9e2f-58b72cf6cb72", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:55+00:00", - dateModified: "2022-11-14T13:54:38+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "a1d440bc-77e6-413c-8d46-c5ca83624fe4", - "d2ecd4db-7909-41f3-a13e-7cba9853d96e", - "859a7eb3-e4af-45d1-9f09-b12bc6231615", - "a3382764-76d8-4c02-8f52-7737da309d02", - "96817f39-b200-4528-ac65-d9db640d6f5f", - "0252c9cc-52b6-465b-ba80-a93573069ac9", - "25f8d9bd-00d1-491b-a2c7-6a5b29233b53", - "45ad25f4-75bd-466c-80af-c155335d0d2f", - "046f0b33-426c-4129-aa37-2bc60afa4b3a", - "249b805d-0ec5-4fed-bc73-fe6faf0b471b", - "e5646344-5b61-4878-a256-093618c75d6f", - "518dba81-5bac-4017-8abb-58172b3d0481", - "d9fcebbe-4a08-4595-a26d-b68f283ad8f0", - "08eedfbc-eb42-4e5c-ae84-7db929b3ba1b", - "ce874e3a-c45a-4aca-a309-2195db059503", - "98a3f17a-b944-40ed-bf1e-d9eedab15fe5", - "389b2ecb-45b7-4edb-b5df-b886f390ecd1", - "00989490-3630-4eae-a1d7-b877348d42bd", - "22388e62-7b94-4a03-89ca-31b5fe99b58a", - "c9a1377f-3987-40f3-a56a-71ef85b5eb44", - "7c7ceece-fb02-44f8-8450-ecb128878a98", - "2f3cf3d8-a008-42b9-a48a-1cd628758033", - "ea11c5a3-d1f6-4b13-992c-58a453d78f7c", - "b0a38fcf-f5d5-4e10-84a8-feb07e74aaa4", - "cc2d1921-2abc-4040-9717-04c344d50ef3", - "43ed9a57-41a6-4929-99dd-9ece51b93c58", - "c4f9d0f8-c6d0-4be5-b3da-c586c068cfec", - "958a5103-cbc8-41f3-a3ab-441ad8f496fa", - "5eae837d-95ef-4d48-aefc-fcbd9c076693", - "fd24bc5d-b497-46c6-9cef-c61c0b9417ef", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "ContactMoment-Component", - url: "https://github.com/ConductionNL/ContactMoment-Component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-06-02T14:15:19Z", - stars: 0, - fork_count: 0, - issue_open_count: 4, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "86064", "36959", "14915", "13068", "3898", "3282", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "4227d1e3-2c6b-4ff8-9e2f-58b72cf6cb72", - self: "/api/oc/organizations/4227d1e3-2c6b-4ff8-9e2f-58b72cf6cb72", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:55+00:00", - dateModified: "2022-11-14T13:54:38+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "a1d440bc-77e6-413c-8d46-c5ca83624fe4", - "d2ecd4db-7909-41f3-a13e-7cba9853d96e", - "859a7eb3-e4af-45d1-9f09-b12bc6231615", - "a3382764-76d8-4c02-8f52-7737da309d02", - "96817f39-b200-4528-ac65-d9db640d6f5f", - "0252c9cc-52b6-465b-ba80-a93573069ac9", - "25f8d9bd-00d1-491b-a2c7-6a5b29233b53", - "45ad25f4-75bd-466c-80af-c155335d0d2f", - "046f0b33-426c-4129-aa37-2bc60afa4b3a", - "249b805d-0ec5-4fed-bc73-fe6faf0b471b", - "e5646344-5b61-4878-a256-093618c75d6f", - "518dba81-5bac-4017-8abb-58172b3d0481", - "d9fcebbe-4a08-4595-a26d-b68f283ad8f0", - "08eedfbc-eb42-4e5c-ae84-7db929b3ba1b", - "ce874e3a-c45a-4aca-a309-2195db059503", - "98a3f17a-b944-40ed-bf1e-d9eedab15fe5", - "389b2ecb-45b7-4edb-b5df-b886f390ecd1", - "00989490-3630-4eae-a1d7-b877348d42bd", - "22388e62-7b94-4a03-89ca-31b5fe99b58a", - "c9a1377f-3987-40f3-a56a-71ef85b5eb44", - "7c7ceece-fb02-44f8-8450-ecb128878a98", - "2f3cf3d8-a008-42b9-a48a-1cd628758033", - "ea11c5a3-d1f6-4b13-992c-58a453d78f7c", - "b0a38fcf-f5d5-4e10-84a8-feb07e74aaa4", - "cc2d1921-2abc-4040-9717-04c344d50ef3", - "43ed9a57-41a6-4929-99dd-9ece51b93c58", - "c4f9d0f8-c6d0-4be5-b3da-c586c068cfec", - "958a5103-cbc8-41f3-a3ab-441ad8f496fa", - "5eae837d-95ef-4d48-aefc-fcbd9c076693", - "fd24bc5d-b497-46c6-9cef-c61c0b9417ef", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "10a47084-f978-4dd6-8b93-4fabcc46182d", - self: "/apiDescription/10a47084-f978-4dd6-8b93-4fabcc46182d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: "Contact Moment Component,Dit component ondersteund het opslaan van klant contact momenten", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "5f1e1518-bb43-4dd0-b589-548a6bb9a1df", - self: "/apiComponentlegalEntity/5f1e1518-bb43-4dd0-b589-548a6bb9a1df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "b5ffe0d4-9d50-4f80-9e01-0a32883fb43b", - self: "/api/oc/organizations/b5ffe0d4-9d50-4f80-9e01-0a32883fb43b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "b5ffe0d4-9d50-4f80-9e01-0a32883fb43b", - self: "/api/oc/organizations/b5ffe0d4-9d50-4f80-9e01-0a32883fb43b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "99a18c74-0c10-4fb8-8853-89b6f3ecf865", - self: "/apiComponentnlEntity/99a18c74-0c10-4fb8-8853-89b6f3ecf865", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "ce883e31-9182-4527-b6d2-3b4b9bdde6b9", - self: "/apiComponentnlEntitycommongroundEntity/ce883e31-9182-4527-b6d2-3b4b9bdde6b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "ce883e31-9182-4527-b6d2-3b4b9bdde6b9", - self: "/apiComponentnlEntitycommongroundEntity/ce883e31-9182-4527-b6d2-3b4b9bdde6b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:17:35+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "941fafc5-bfb0-47ff-94c7-7187efe1d961", - self: "/apiComponentmaintenanceEntity/941fafc5-bfb0-47ff-94c7-7187efe1d961", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "9895398f-4126-4e4b-a29b-468c843a1f0f", - self: "/apiContact/9895398f-4126-4e4b-a29b-468c843a1f0f", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "17cbee6b-b5c6-44da-8a57-9e6fab2ab9d2", - self: "/apiContact/17cbee6b-b5c6-44da-8a57-9e6fab2ab9d2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:33+00:00", - dateModified: "2022-10-28T15:17:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d5b1a9bb-01a3-4cf6-98e3-fb8ec060748d", - self: "/apiContact/d5b1a9bb-01a3-4cf6-98e3-fb8ec060748d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:43+00:00", - dateModified: "2022-10-28T15:17:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78259c3b-f9d3-4190-93d0-519a038caa5e", - self: "/apiContact/78259c3b-f9d3-4190-93d0-519a038caa5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:42+00:00", - dateModified: "2022-10-28T15:17:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ebdb078f-9cdf-4727-b21b-1ac593bbea36", - self: "/apiContact/ebdb078f-9cdf-4727-b21b-1ac593bbea36", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:05+00:00", - dateModified: "2022-10-28T15:18:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d052092-4f9c-4a20-9cdc-c15bb6e4674d", - self: "/apiContact/8d052092-4f9c-4a20-9cdc-c15bb6e4674d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:23+00:00", - dateModified: "2022-10-29T00:04:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c615e408-7e92-4986-8e21-b734fa5a25fc", - self: "/apiContact/c615e408-7e92-4986-8e21-b734fa5a25fc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:02+00:00", - dateModified: "2022-10-30T00:09:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d2490dfc-7316-4ed1-94fc-be9fc24ad281", - self: "/apiContact/d2490dfc-7316-4ed1-94fc-be9fc24ad281", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:13+00:00", - dateModified: "2022-10-31T00:10:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "60857be3-4c43-44bd-9269-fefd7a7b0ec7", - self: "/apiContact/60857be3-4c43-44bd-9269-fefd7a7b0ec7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:54+00:00", - dateModified: "2022-10-31T13:45:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "696a57d1-ce64-4135-b2a0-3b9084aed15f", - self: "/apiContact/696a57d1-ce64-4135-b2a0-3b9084aed15f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:52+00:00", - dateModified: "2022-11-01T13:20:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a8a757fc-0913-4244-9eb7-863dd1612dfb", - self: "/apiContact/a8a757fc-0913-4244-9eb7-863dd1612dfb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:05:21+00:00", - dateModified: "2022-11-02T14:05:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4d02f1d-a941-4b60-aa75-d10ec4e19c96", - self: "/apiContact/e4d02f1d-a941-4b60-aa75-d10ec4e19c96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:05+00:00", - dateModified: "2022-11-03T13:55:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e31abc13-f7ea-4f91-a84c-1ca6d22fd277", - self: "/apiContact/e31abc13-f7ea-4f91-a84c-1ca6d22fd277", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:04:10+00:00", - dateModified: "2022-11-04T15:04:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "633cb84f-79cb-4a16-af08-2750c004b54a", - self: "/apiContact/633cb84f-79cb-4a16-af08-2750c004b54a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:49+00:00", - dateModified: "2022-11-10T10:14:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "16af582d-68a3-46c9-8ec7-d4bbc6696d4c", - self: "/apiContact/16af582d-68a3-46c9-8ec7-d4bbc6696d4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:40+00:00", - dateModified: "2022-11-10T13:09:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e63a6117-6b29-4997-afb2-ad634b386ed1", - self: "/apiContact/e63a6117-6b29-4997-afb2-ad634b386ed1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:28+00:00", - dateModified: "2022-11-21T12:53:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aec57c08-5388-4c25-8711-89f8a91430a5", - self: "/apiContact/aec57c08-5388-4c25-8711-89f8a91430a5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:25+00:00", - dateModified: "2022-11-21T12:55:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ad5bf0f-1502-4eb6-bfd8-6f0fcae1aaa4", - self: "/apiContact/3ad5bf0f-1502-4eb6-bfd8-6f0fcae1aaa4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:07:18+00:00", - dateModified: "2022-11-21T13:07:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "de9babb3-9fc5-4c0f-bd88-aebb9cd03116", - self: "/apiContact/de9babb3-9fc5-4c0f-bd88-aebb9cd03116", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:34:19+00:00", - dateModified: "2022-11-22T15:34:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "833f9e6d-00ae-47a8-8064-15bb3da61675", - self: "/apiContact/833f9e6d-00ae-47a8-8064-15bb3da61675", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:07:32+00:00", - dateModified: "2022-11-22T17:07:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d7425b76-c3ee-4aec-a757-0798f92e26a5", - self: "/apiContact/d7425b76-c3ee-4aec-a757-0798f92e26a5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:57:19+00:00", - dateModified: "2022-11-22T16:57:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e73d4ed0-4fea-456e-af39-83de09cf7ea8", - self: "/apiContact/e73d4ed0-4fea-456e-af39-83de09cf7ea8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:02:55+00:00", - dateModified: "2022-11-22T18:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "25aa5b2f-edb1-48cc-984c-47814b612c6f", - self: "/apiContact/25aa5b2f-edb1-48cc-984c-47814b612c6f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:32:44+00:00", - dateModified: "2022-11-22T19:32:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c08b9180-89f0-4c89-9a87-46be6b81f0f5", - self: "/apiContact/c08b9180-89f0-4c89-9a87-46be6b81f0f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:34:18+00:00", - dateModified: "2022-11-22T21:34:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8a249dd-2490-4198-94ec-1fc8ab814916", - self: "/apiContact/d8a249dd-2490-4198-94ec-1fc8ab814916", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:32:17+00:00", - dateModified: "2022-11-22T23:32:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "09365d10-6bbb-4719-8e02-8e68ce365993", - self: "/apiContact/09365d10-6bbb-4719-8e02-8e68ce365993", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:32:50+00:00", - dateModified: "2022-11-23T01:32:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b6f77ac5-40df-48ed-9a9e-1bdb9e2413b6", - self: "/apiContact/b6f77ac5-40df-48ed-9a9e-1bdb9e2413b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:33:59+00:00", - dateModified: "2022-11-23T03:33:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c7f1fa08-0b8a-4df9-abe9-c44a8dbbae60", - self: "/apiContact/c7f1fa08-0b8a-4df9-abe9-c44a8dbbae60", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:33:44+00:00", - dateModified: "2022-11-23T05:33:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb54efe2-b483-4faf-9cbf-4bf99a332f0f", - self: "/apiContact/bb54efe2-b483-4faf-9cbf-4bf99a332f0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:33:32+00:00", - dateModified: "2022-11-23T07:33:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "77ae1304-440a-4f4a-ab73-a3f97835e613", - self: "/apiContact/77ae1304-440a-4f4a-ab73-a3f97835e613", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:02:50+00:00", - dateModified: "2022-11-23T09:02:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9f5d1f93-b23e-4152-b58f-bdaf1289bd52", - self: "/apiContact/9f5d1f93-b23e-4152-b58f-bdaf1289bd52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:00:26+00:00", - dateModified: "2022-11-23T10:00:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "37cbf0fa-c5c5-4bdb-a38c-4482f92dc121", - self: "/apiContact/37cbf0fa-c5c5-4bdb-a38c-4482f92dc121", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:54:26+00:00", - dateModified: "2022-11-23T10:54:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bcf30330-24aa-4c55-8464-8f717eadfff7", - self: "/apiContact/bcf30330-24aa-4c55-8464-8f717eadfff7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:55:02+00:00", - dateModified: "2022-11-23T11:55:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6adcec9e-3b76-4f85-8340-f1b2aae9df3a", - self: "/apiContact/6adcec9e-3b76-4f85-8340-f1b2aae9df3a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:46:22+00:00", - dateModified: "2022-11-23T13:46:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e5a4fb4f-a56b-410b-a14e-c7c324cc2f98", - self: "/apiContact/e5a4fb4f-a56b-410b-a14e-c7c324cc2f98", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:31:32+00:00", - dateModified: "2022-11-23T14:31:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0e165771-d347-440c-a619-b45946e546db", - self: "/apiContact/0e165771-d347-440c-a619-b45946e546db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:47:48+00:00", - dateModified: "2022-11-23T15:47:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b619dfc-d5e8-4e51-b759-0ecd19c66c6b", - self: "/apiContact/9b619dfc-d5e8-4e51-b759-0ecd19c66c6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:42:31+00:00", - dateModified: "2022-11-23T17:42:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "427f4b6c-43e0-4d4d-a81c-116c7f806c79", - self: "/apiContact/427f4b6c-43e0-4d4d-a81c-116c7f806c79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:39:58+00:00", - dateModified: "2022-11-23T19:39:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "efef0c8a-b94b-4b79-9d60-414beff99d95", - self: "/apiContact/efef0c8a-b94b-4b79-9d60-414beff99d95", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:42:47+00:00", - dateModified: "2022-11-23T21:42:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c566ad9f-bbba-491a-a870-ebdd78815031", - self: "/apiContact/c566ad9f-bbba-491a-a870-ebdd78815031", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:36:19+00:00", - dateModified: "2022-11-23T23:36:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a38623a3-5ed0-4eb2-a48a-789ace10cf41", - self: "/apiContact/a38623a3-5ed0-4eb2-a48a-789ace10cf41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:34:25+00:00", - dateModified: "2022-11-24T01:34:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ecea1ca-26ba-4a2c-a7fe-6def2c69f7ad", - self: "/apiContact/5ecea1ca-26ba-4a2c-a7fe-6def2c69f7ad", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:34:08+00:00", - dateModified: "2022-11-24T03:34:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c59ddca-7563-4883-af28-e2470e0c2b02", - self: "/apiContact/2c59ddca-7563-4883-af28-e2470e0c2b02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:34:53+00:00", - dateModified: "2022-11-24T05:34:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1f0a67ac-7fb0-416b-84be-f2255cc4bf8b", - self: "/apiContact/1f0a67ac-7fb0-416b-84be-f2255cc4bf8b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:41:12+00:00", - dateModified: "2022-11-24T07:41:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88c53e31-325b-4101-adb8-228935ee8efa", - self: "/apiContact/88c53e31-325b-4101-adb8-228935ee8efa", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:39:15+00:00", - dateModified: "2022-11-24T09:39:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "632b3669-b735-4fbc-9f8a-f20890a3784c", - self: "/apiContact/632b3669-b735-4fbc-9f8a-f20890a3784c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:37:22+00:00", - dateModified: "2022-11-24T11:37:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a4fa4a10-4ed7-4124-a83a-29885bacdcdf", - self: "/apiContact/a4fa4a10-4ed7-4124-a83a-29885bacdcdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:12:17+00:00", - dateModified: "2022-12-09T11:12:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "55331384-4e25-49cb-ba3c-e148f144e02b", - self: "/apiContact/55331384-4e25-49cb-ba3c-e148f144e02b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:53:35+00:00", - dateModified: "2022-12-09T12:53:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c65b4e62-ab37-4679-a4b7-afa4a75249b8", - self: "/apiContact/c65b4e62-ab37-4679-a4b7-afa4a75249b8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:53:25+00:00", - dateModified: "2022-12-10T14:53:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c8202aed-be39-489c-80a1-028ff449effd", - self: "/apiContact/c8202aed-be39-489c-80a1-028ff449effd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:58:38+00:00", - dateModified: "2022-12-11T14:58:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c0a8f83b-660c-45c7-995b-0ff79617eed0", - self: "/apiContact/c0a8f83b-660c-45c7-995b-0ff79617eed0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:57:54+00:00", - dateModified: "2022-12-12T14:57:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "9895398f-4126-4e4b-a29b-468c843a1f0f", - self: "/apiContact/9895398f-4126-4e4b-a29b-468c843a1f0f", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:59+00:00", - dateModified: "2022-10-28T15:15:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "17cbee6b-b5c6-44da-8a57-9e6fab2ab9d2", - self: "/apiContact/17cbee6b-b5c6-44da-8a57-9e6fab2ab9d2", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:33+00:00", - dateModified: "2022-10-28T15:17:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d5b1a9bb-01a3-4cf6-98e3-fb8ec060748d", - self: "/apiContact/d5b1a9bb-01a3-4cf6-98e3-fb8ec060748d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:43+00:00", - dateModified: "2022-10-28T15:17:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78259c3b-f9d3-4190-93d0-519a038caa5e", - self: "/apiContact/78259c3b-f9d3-4190-93d0-519a038caa5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:42+00:00", - dateModified: "2022-10-28T15:17:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ebdb078f-9cdf-4727-b21b-1ac593bbea36", - self: "/apiContact/ebdb078f-9cdf-4727-b21b-1ac593bbea36", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:18:05+00:00", - dateModified: "2022-10-28T15:18:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8d052092-4f9c-4a20-9cdc-c15bb6e4674d", - self: "/apiContact/8d052092-4f9c-4a20-9cdc-c15bb6e4674d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:23+00:00", - dateModified: "2022-10-29T00:04:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c615e408-7e92-4986-8e21-b734fa5a25fc", - self: "/apiContact/c615e408-7e92-4986-8e21-b734fa5a25fc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:09:02+00:00", - dateModified: "2022-10-30T00:09:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d2490dfc-7316-4ed1-94fc-be9fc24ad281", - self: "/apiContact/d2490dfc-7316-4ed1-94fc-be9fc24ad281", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:10:13+00:00", - dateModified: "2022-10-31T00:10:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "60857be3-4c43-44bd-9269-fefd7a7b0ec7", - self: "/apiContact/60857be3-4c43-44bd-9269-fefd7a7b0ec7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:54+00:00", - dateModified: "2022-10-31T13:45:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "696a57d1-ce64-4135-b2a0-3b9084aed15f", - self: "/apiContact/696a57d1-ce64-4135-b2a0-3b9084aed15f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:52+00:00", - dateModified: "2022-11-01T13:20:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a8a757fc-0913-4244-9eb7-863dd1612dfb", - self: "/apiContact/a8a757fc-0913-4244-9eb7-863dd1612dfb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:05:21+00:00", - dateModified: "2022-11-02T14:05:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4d02f1d-a941-4b60-aa75-d10ec4e19c96", - self: "/apiContact/e4d02f1d-a941-4b60-aa75-d10ec4e19c96", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:55:05+00:00", - dateModified: "2022-11-03T13:55:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e31abc13-f7ea-4f91-a84c-1ca6d22fd277", - self: "/apiContact/e31abc13-f7ea-4f91-a84c-1ca6d22fd277", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:04:10+00:00", - dateModified: "2022-11-04T15:04:10+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "633cb84f-79cb-4a16-af08-2750c004b54a", - self: "/apiContact/633cb84f-79cb-4a16-af08-2750c004b54a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:49+00:00", - dateModified: "2022-11-10T10:14:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "16af582d-68a3-46c9-8ec7-d4bbc6696d4c", - self: "/apiContact/16af582d-68a3-46c9-8ec7-d4bbc6696d4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:40+00:00", - dateModified: "2022-11-10T13:09:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e63a6117-6b29-4997-afb2-ad634b386ed1", - self: "/apiContact/e63a6117-6b29-4997-afb2-ad634b386ed1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:28+00:00", - dateModified: "2022-11-21T12:53:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aec57c08-5388-4c25-8711-89f8a91430a5", - self: "/apiContact/aec57c08-5388-4c25-8711-89f8a91430a5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:55:25+00:00", - dateModified: "2022-11-21T12:55:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3ad5bf0f-1502-4eb6-bfd8-6f0fcae1aaa4", - self: "/apiContact/3ad5bf0f-1502-4eb6-bfd8-6f0fcae1aaa4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:07:18+00:00", - dateModified: "2022-11-21T13:07:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "de9babb3-9fc5-4c0f-bd88-aebb9cd03116", - self: "/apiContact/de9babb3-9fc5-4c0f-bd88-aebb9cd03116", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:34:19+00:00", - dateModified: "2022-11-22T15:34:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "833f9e6d-00ae-47a8-8064-15bb3da61675", - self: "/apiContact/833f9e6d-00ae-47a8-8064-15bb3da61675", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:07:32+00:00", - dateModified: "2022-11-22T17:07:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d7425b76-c3ee-4aec-a757-0798f92e26a5", - self: "/apiContact/d7425b76-c3ee-4aec-a757-0798f92e26a5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:57:19+00:00", - dateModified: "2022-11-22T16:57:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e73d4ed0-4fea-456e-af39-83de09cf7ea8", - self: "/apiContact/e73d4ed0-4fea-456e-af39-83de09cf7ea8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T18:02:55+00:00", - dateModified: "2022-11-22T18:02:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "25aa5b2f-edb1-48cc-984c-47814b612c6f", - self: "/apiContact/25aa5b2f-edb1-48cc-984c-47814b612c6f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:32:44+00:00", - dateModified: "2022-11-22T19:32:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c08b9180-89f0-4c89-9a87-46be6b81f0f5", - self: "/apiContact/c08b9180-89f0-4c89-9a87-46be6b81f0f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:34:18+00:00", - dateModified: "2022-11-22T21:34:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d8a249dd-2490-4198-94ec-1fc8ab814916", - self: "/apiContact/d8a249dd-2490-4198-94ec-1fc8ab814916", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:32:17+00:00", - dateModified: "2022-11-22T23:32:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "09365d10-6bbb-4719-8e02-8e68ce365993", - self: "/apiContact/09365d10-6bbb-4719-8e02-8e68ce365993", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:32:50+00:00", - dateModified: "2022-11-23T01:32:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b6f77ac5-40df-48ed-9a9e-1bdb9e2413b6", - self: "/apiContact/b6f77ac5-40df-48ed-9a9e-1bdb9e2413b6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:33:59+00:00", - dateModified: "2022-11-23T03:33:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c7f1fa08-0b8a-4df9-abe9-c44a8dbbae60", - self: "/apiContact/c7f1fa08-0b8a-4df9-abe9-c44a8dbbae60", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:33:44+00:00", - dateModified: "2022-11-23T05:33:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bb54efe2-b483-4faf-9cbf-4bf99a332f0f", - self: "/apiContact/bb54efe2-b483-4faf-9cbf-4bf99a332f0f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:33:32+00:00", - dateModified: "2022-11-23T07:33:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "77ae1304-440a-4f4a-ab73-a3f97835e613", - self: "/apiContact/77ae1304-440a-4f4a-ab73-a3f97835e613", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:02:50+00:00", - dateModified: "2022-11-23T09:02:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9f5d1f93-b23e-4152-b58f-bdaf1289bd52", - self: "/apiContact/9f5d1f93-b23e-4152-b58f-bdaf1289bd52", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:00:26+00:00", - dateModified: "2022-11-23T10:00:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "37cbf0fa-c5c5-4bdb-a38c-4482f92dc121", - self: "/apiContact/37cbf0fa-c5c5-4bdb-a38c-4482f92dc121", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:54:26+00:00", - dateModified: "2022-11-23T10:54:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bcf30330-24aa-4c55-8464-8f717eadfff7", - self: "/apiContact/bcf30330-24aa-4c55-8464-8f717eadfff7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:55:02+00:00", - dateModified: "2022-11-23T11:55:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6adcec9e-3b76-4f85-8340-f1b2aae9df3a", - self: "/apiContact/6adcec9e-3b76-4f85-8340-f1b2aae9df3a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:46:22+00:00", - dateModified: "2022-11-23T13:46:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e5a4fb4f-a56b-410b-a14e-c7c324cc2f98", - self: "/apiContact/e5a4fb4f-a56b-410b-a14e-c7c324cc2f98", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:31:32+00:00", - dateModified: "2022-11-23T14:31:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0e165771-d347-440c-a619-b45946e546db", - self: "/apiContact/0e165771-d347-440c-a619-b45946e546db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:47:48+00:00", - dateModified: "2022-11-23T15:47:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b619dfc-d5e8-4e51-b759-0ecd19c66c6b", - self: "/apiContact/9b619dfc-d5e8-4e51-b759-0ecd19c66c6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:42:31+00:00", - dateModified: "2022-11-23T17:42:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "427f4b6c-43e0-4d4d-a81c-116c7f806c79", - self: "/apiContact/427f4b6c-43e0-4d4d-a81c-116c7f806c79", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:39:58+00:00", - dateModified: "2022-11-23T19:39:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "efef0c8a-b94b-4b79-9d60-414beff99d95", - self: "/apiContact/efef0c8a-b94b-4b79-9d60-414beff99d95", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:42:47+00:00", - dateModified: "2022-11-23T21:42:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c566ad9f-bbba-491a-a870-ebdd78815031", - self: "/apiContact/c566ad9f-bbba-491a-a870-ebdd78815031", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:36:19+00:00", - dateModified: "2022-11-23T23:36:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a38623a3-5ed0-4eb2-a48a-789ace10cf41", - self: "/apiContact/a38623a3-5ed0-4eb2-a48a-789ace10cf41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:34:25+00:00", - dateModified: "2022-11-24T01:34:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ecea1ca-26ba-4a2c-a7fe-6def2c69f7ad", - self: "/apiContact/5ecea1ca-26ba-4a2c-a7fe-6def2c69f7ad", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:34:08+00:00", - dateModified: "2022-11-24T03:34:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c59ddca-7563-4883-af28-e2470e0c2b02", - self: "/apiContact/2c59ddca-7563-4883-af28-e2470e0c2b02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:34:53+00:00", - dateModified: "2022-11-24T05:34:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1f0a67ac-7fb0-416b-84be-f2255cc4bf8b", - self: "/apiContact/1f0a67ac-7fb0-416b-84be-f2255cc4bf8b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:41:12+00:00", - dateModified: "2022-11-24T07:41:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88c53e31-325b-4101-adb8-228935ee8efa", - self: "/apiContact/88c53e31-325b-4101-adb8-228935ee8efa", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:39:15+00:00", - dateModified: "2022-11-24T09:39:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "632b3669-b735-4fbc-9f8a-f20890a3784c", - self: "/apiContact/632b3669-b735-4fbc-9f8a-f20890a3784c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:37:22+00:00", - dateModified: "2022-11-24T11:37:22+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a4fa4a10-4ed7-4124-a83a-29885bacdcdf", - self: "/apiContact/a4fa4a10-4ed7-4124-a83a-29885bacdcdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:12:17+00:00", - dateModified: "2022-12-09T11:12:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "55331384-4e25-49cb-ba3c-e148f144e02b", - self: "/apiContact/55331384-4e25-49cb-ba3c-e148f144e02b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:53:35+00:00", - dateModified: "2022-12-09T12:53:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c65b4e62-ab37-4679-a4b7-afa4a75249b8", - self: "/apiContact/c65b4e62-ab37-4679-a4b7-afa4a75249b8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:53:25+00:00", - dateModified: "2022-12-10T14:53:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c8202aed-be39-489c-80a1-028ff449effd", - self: "/apiContact/c8202aed-be39-489c-80a1-028ff449effd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:58:38+00:00", - dateModified: "2022-12-11T14:58:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c0a8f83b-660c-45c7-995b-0ff79617eed0", - self: "/apiContact/c0a8f83b-660c-45c7-995b-0ff79617eed0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:57:54+00:00", - dateModified: "2022-12-12T14:57:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "559a2060-99f5-41ec-83db-4434c294d470", - self: "/apiRating/559a2060-99f5-41ec-83db-4434c294d470", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:41+00:00", - dateModified: "2022-11-14T13:54:38+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Contact Moment Component rated", - "The url: https://github.com/ConductionNL/ContactMoment-Component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Contact Moment Component", - "Dit component ondersteund het opslaan van klant contact momenten rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "f96f1ec0-8c6e-4999-95ee-b6f5b00a1418", - }, - { - _id: "a690f23e-8ccd-4228-8c02-4c50d5af1132", - _self: { - id: "a690f23e-8ccd-4228-8c02-4c50d5af1132", - self: "/api/oc/components/a690f23e-8ccd-4228-8c02-4c50d5af1132", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:40+00:00", - dateModified: "2022-12-12T14:56:22+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "b296a228-e8a3-4d38-8af5-9ed9e1198c50", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "119", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "2d50ae47-82ac-4256-96bb-c379cef2cb38", - self: "/apiRepository/2d50ae47-82ac-4256-96bb-c379cef2cb38", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "72a62f94-e8b4-4e3b-9cae-a58187ede38b", - self: "/api/oc/organizations/72a62f94-e8b4-4e3b-9cae-a58187ede38b", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:47+00:00", - dateModified: "2022-11-14T13:54:19+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "a0568bd1-8d41-41ce-8d34-578e4da409da", - "39deea1b-f8b5-4ca6-9240-495f331f3070", - "762b97ba-7009-411f-bb48-1391a3118772", - "2ae2cf59-5c2c-476c-b6ad-73e780169862", - "5a21bdd1-d68b-4357-afc4-d0f818cf285a", - "89dd2598-e6b5-4c65-961e-d48157255184", - "f74a2696-e4a7-4a0c-9b94-3652ff069a44", - "b595f49c-243b-4567-b852-272294eb7ebf", - "2f3bcf71-c3dc-48b8-be33-21e396e9579e", - "139f9d3f-be90-4b27-af53-fb008c9386e0", - "9993310a-8113-4d82-b54a-d0340c491bdc", - "53e3ca30-1ea5-4c7f-a488-5afac188b211", - "3cbe09f8-71bf-4d60-ae6b-9c6db2149b20", - "3d530fc7-5de3-40d2-81dc-9b4f08fcb4d8", - "082534a2-c06d-4ea6-b201-e214e38b3b20", - "a0dd185e-e3e5-4db7-8389-d077da579302", - "29fbd2e2-6273-4caf-b236-97e739742ab2", - "6e3c4d4b-6b4b-4eb7-be81-3a997b514b7e", - "2e951ff0-8283-499f-845e-e6860fd7668a", - "887eb4ad-08fc-481b-b6cf-a0cba4ac3e75", - "5ddda345-9d4b-468f-9617-53d0f91de79c", - "2568068e-08a5-44f6-b575-c199b889afcc", - "ac91b35f-ad3d-476a-83d1-b4cf6a384541", - "0cc86847-e12c-42f0-97ee-ea5c6e3ed987", - "4e108fe9-6d6c-444e-b2ba-7ece4aabd495", - "d1abe447-f128-470a-9e26-85770b0b0cfe", - "129a99e7-3587-4acf-b97f-24ce9d93e973", - "dc73a59c-f941-492e-8c2c-c4227367a7db", - "b8699a30-9b61-4e5b-9dbd-c7808bf039f9", - "62d6e8b0-d9dd-4063-9d33-25a1e00d5de5", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "checkin-component", - url: "https://github.com/ConductionNL/checkin-component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-06-02T14:07:10Z", - stars: 0, - fork_count: 0, - issue_open_count: 4, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "86064", "44824", "36978", "11219", "3898", "3282", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "72a62f94-e8b4-4e3b-9cae-a58187ede38b", - self: "/api/oc/organizations/72a62f94-e8b4-4e3b-9cae-a58187ede38b", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:47+00:00", - dateModified: "2022-11-14T13:54:19+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "a0568bd1-8d41-41ce-8d34-578e4da409da", - "39deea1b-f8b5-4ca6-9240-495f331f3070", - "762b97ba-7009-411f-bb48-1391a3118772", - "2ae2cf59-5c2c-476c-b6ad-73e780169862", - "5a21bdd1-d68b-4357-afc4-d0f818cf285a", - "89dd2598-e6b5-4c65-961e-d48157255184", - "f74a2696-e4a7-4a0c-9b94-3652ff069a44", - "b595f49c-243b-4567-b852-272294eb7ebf", - "2f3bcf71-c3dc-48b8-be33-21e396e9579e", - "139f9d3f-be90-4b27-af53-fb008c9386e0", - "9993310a-8113-4d82-b54a-d0340c491bdc", - "53e3ca30-1ea5-4c7f-a488-5afac188b211", - "3cbe09f8-71bf-4d60-ae6b-9c6db2149b20", - "3d530fc7-5de3-40d2-81dc-9b4f08fcb4d8", - "082534a2-c06d-4ea6-b201-e214e38b3b20", - "a0dd185e-e3e5-4db7-8389-d077da579302", - "29fbd2e2-6273-4caf-b236-97e739742ab2", - "6e3c4d4b-6b4b-4eb7-be81-3a997b514b7e", - "2e951ff0-8283-499f-845e-e6860fd7668a", - "887eb4ad-08fc-481b-b6cf-a0cba4ac3e75", - "5ddda345-9d4b-468f-9617-53d0f91de79c", - "2568068e-08a5-44f6-b575-c199b889afcc", - "ac91b35f-ad3d-476a-83d1-b4cf6a384541", - "0cc86847-e12c-42f0-97ee-ea5c6e3ed987", - "4e108fe9-6d6c-444e-b2ba-7ece4aabd495", - "d1abe447-f128-470a-9e26-85770b0b0cfe", - "129a99e7-3587-4acf-b97f-24ce9d93e973", - "dc73a59c-f941-492e-8c2c-c4227367a7db", - "b8699a30-9b61-4e5b-9dbd-c7808bf039f9", - "62d6e8b0-d9dd-4063-9d33-25a1e00d5de5", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "fc98b412-263f-4ba8-a5eb-77d30371b54d", - self: "/apiDescription/fc98b412-263f-4ba8-a5eb-77d30371b54d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "Checkin Component,Dit component ondersteund inchecken op locatie zo als de horeca vanuit covid-19 maatregelen", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "eab2cd05-306b-4726-ae9c-2b7863133088", - self: "/apiComponentlegalEntity/eab2cd05-306b-4726-ae9c-2b7863133088", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "0cd3dd6e-4b9f-4b42-a2ab-50342cf3a4be", - self: "/api/oc/organizations/0cd3dd6e-4b9f-4b42-a2ab-50342cf3a4be", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:17:15+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "0cd3dd6e-4b9f-4b42-a2ab-50342cf3a4be", - self: "/api/oc/organizations/0cd3dd6e-4b9f-4b42-a2ab-50342cf3a4be", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:17:15+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "2bc4bde0-7fdd-4f6c-a2cd-e9265e591f76", - self: "/apiComponentnlEntity/2bc4bde0-7fdd-4f6c-a2cd-e9265e591f76", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "5f3aadcc-dfab-48b8-a25d-d874058fa191", - self: "/apiComponentnlEntitycommongroundEntity/5f3aadcc-dfab-48b8-a25d-d874058fa191", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:17:15+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "5f3aadcc-dfab-48b8-a25d-d874058fa191", - self: "/apiComponentnlEntitycommongroundEntity/5f3aadcc-dfab-48b8-a25d-d874058fa191", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:17:15+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "e0f27040-d231-417f-90e7-006591b9776d", - self: "/apiComponentmaintenanceEntity/e0f27040-d231-417f-90e7-006591b9776d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "36c69fa1-4263-4848-b128-169fdfa7164b", - self: "/apiContact/36c69fa1-4263-4848-b128-169fdfa7164b", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0fc5eadf-7080-4f4f-9a2d-ed70246341cc", - self: "/apiContact/0fc5eadf-7080-4f4f-9a2d-ed70246341cc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:13+00:00", - dateModified: "2022-10-28T15:17:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "338d3044-62bb-4c04-b80d-7422607a14e1", - self: "/apiContact/338d3044-62bb-4c04-b80d-7422607a14e1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:21+00:00", - dateModified: "2022-10-28T15:17:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d04a8143-fd10-4ba3-99e1-46c88e5b9e5b", - self: "/apiContact/d04a8143-fd10-4ba3-99e1-46c88e5b9e5b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:23+00:00", - dateModified: "2022-10-28T15:17:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "30883795-ed77-407e-9dd4-327b12b27ed6", - self: "/apiContact/30883795-ed77-407e-9dd4-327b12b27ed6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:41+00:00", - dateModified: "2022-10-28T15:17:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "53450f8d-58e7-4594-a204-335a7c7a38db", - self: "/apiContact/53450f8d-58e7-4594-a204-335a7c7a38db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:09+00:00", - dateModified: "2022-10-29T00:04:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e7ea1d9-925f-4036-86ba-017bd0fbcc11", - self: "/apiContact/7e7ea1d9-925f-4036-86ba-017bd0fbcc11", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:43+00:00", - dateModified: "2022-10-30T00:08:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5e548ddf-4e60-4acb-ac3f-2b42fbea3286", - self: "/apiContact/5e548ddf-4e60-4acb-ac3f-2b42fbea3286", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:52+00:00", - dateModified: "2022-10-31T00:09:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4390e67d-fc89-460f-8039-f718e4be393f", - self: "/apiContact/4390e67d-fc89-460f-8039-f718e4be393f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:35+00:00", - dateModified: "2022-10-31T13:45:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "994930a2-1ebf-4755-8fe7-e2974a9eccdf", - self: "/apiContact/994930a2-1ebf-4755-8fe7-e2974a9eccdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:32+00:00", - dateModified: "2022-11-01T13:20:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "599047b6-9214-4ecd-ab99-337e193295ba", - self: "/apiContact/599047b6-9214-4ecd-ab99-337e193295ba", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:04:32+00:00", - dateModified: "2022-11-02T14:04:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3cdf7132-913c-42e3-aba8-5ce8bd804a29", - self: "/apiContact/3cdf7132-913c-42e3-aba8-5ce8bd804a29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:55+00:00", - dateModified: "2022-11-03T13:54:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c9d7b6a-65c2-4842-948f-13e0971df75d", - self: "/apiContact/0c9d7b6a-65c2-4842-948f-13e0971df75d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:03:08+00:00", - dateModified: "2022-11-04T15:03:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a8f43070-f154-4b63-8284-8d68639950ab", - self: "/apiContact/a8f43070-f154-4b63-8284-8d68639950ab", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:44+00:00", - dateModified: "2022-11-10T10:14:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aeed75d8-9925-40fb-8eb0-1893c7596b85", - self: "/apiContact/aeed75d8-9925-40fb-8eb0-1893c7596b85", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:19+00:00", - dateModified: "2022-11-10T13:09:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b4ae854e-b299-45fe-bc64-7e06f2b280e3", - self: "/apiContact/b4ae854e-b299-45fe-bc64-7e06f2b280e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:52:36+00:00", - dateModified: "2022-11-21T12:52:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b934cb7e-9976-49a8-a711-b0615c47fd6d", - self: "/apiContact/b934cb7e-9976-49a8-a711-b0615c47fd6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:26+00:00", - dateModified: "2022-11-21T12:54:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1cb6b955-cfd8-43c5-9e3f-541baf23d4b0", - self: "/apiContact/1cb6b955-cfd8-43c5-9e3f-541baf23d4b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:06:15+00:00", - dateModified: "2022-11-21T13:06:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "12377c97-b8bb-448b-9d30-714d894a193f", - self: "/apiContact/12377c97-b8bb-448b-9d30-714d894a193f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:30:57+00:00", - dateModified: "2022-11-22T15:30:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0435a896-2308-484e-bc69-88bae49c6556", - self: "/apiContact/0435a896-2308-484e-bc69-88bae49c6556", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:00:17+00:00", - dateModified: "2022-11-22T17:00:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "35d6ea1e-e82c-4380-9759-e2933219e751", - self: "/apiContact/35d6ea1e-e82c-4380-9759-e2933219e751", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:50:12+00:00", - dateModified: "2022-11-22T16:50:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "87ec1759-44f5-45ce-b952-ac04ae051b23", - self: "/apiContact/87ec1759-44f5-45ce-b952-ac04ae051b23", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:58:57+00:00", - dateModified: "2022-11-22T17:58:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65550c91-48c8-4f5b-9b5f-29b60cbaebe0", - self: "/apiContact/65550c91-48c8-4f5b-9b5f-29b60cbaebe0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:28:26+00:00", - dateModified: "2022-11-22T19:28:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fd44e1fe-d841-4946-8ad4-416a5c43b32d", - self: "/apiContact/fd44e1fe-d841-4946-8ad4-416a5c43b32d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:30:46+00:00", - dateModified: "2022-11-22T21:30:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f3e2d112-4510-4aae-a95a-70041ee0237c", - self: "/apiContact/f3e2d112-4510-4aae-a95a-70041ee0237c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:28:26+00:00", - dateModified: "2022-11-22T23:28:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2deb4960-8d73-4b86-9545-a1b41a8fdb44", - self: "/apiContact/2deb4960-8d73-4b86-9545-a1b41a8fdb44", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:29:01+00:00", - dateModified: "2022-11-23T01:29:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a827f3bc-5cdd-44f4-a14a-4eebf1239ff1", - self: "/apiContact/a827f3bc-5cdd-44f4-a14a-4eebf1239ff1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:29:47+00:00", - dateModified: "2022-11-23T03:29:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "692b9953-8d1a-4eb8-94cd-9aaa1d4237a3", - self: "/apiContact/692b9953-8d1a-4eb8-94cd-9aaa1d4237a3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:30:08+00:00", - dateModified: "2022-11-23T05:30:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b7a6c57f-4569-4a21-bef5-1948ed0f7a15", - self: "/apiContact/b7a6c57f-4569-4a21-bef5-1948ed0f7a15", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:29:39+00:00", - dateModified: "2022-11-23T07:29:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "188b67aa-6c73-49db-ad83-29888a62dd61", - self: "/apiContact/188b67aa-6c73-49db-ad83-29888a62dd61", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:57:05+00:00", - dateModified: "2022-11-23T08:57:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1716d071-fbde-4c3e-b616-dcdd4015d1ca", - self: "/apiContact/1716d071-fbde-4c3e-b616-dcdd4015d1ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:49:59+00:00", - dateModified: "2022-11-23T09:49:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8b5a828e-8694-49de-9ac4-1e1ce30fe234", - self: "/apiContact/8b5a828e-8694-49de-9ac4-1e1ce30fe234", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:48:46+00:00", - dateModified: "2022-11-23T10:48:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ffd50d70-61cf-492c-a08e-0b6a7ad054ed", - self: "/apiContact/ffd50d70-61cf-492c-a08e-0b6a7ad054ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:51:05+00:00", - dateModified: "2022-11-23T11:51:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed5d01b7-f75e-4927-81b9-06ae83cf9c8f", - self: "/apiContact/ed5d01b7-f75e-4927-81b9-06ae83cf9c8f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:40:43+00:00", - dateModified: "2022-11-23T13:40:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b11c46be-8d14-4afa-b21d-149bf160eb62", - self: "/apiContact/b11c46be-8d14-4afa-b21d-149bf160eb62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:26:18+00:00", - dateModified: "2022-11-23T14:26:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "92b18918-0c59-4677-bde4-066abbf356df", - self: "/apiContact/92b18918-0c59-4677-bde4-066abbf356df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:43:50+00:00", - dateModified: "2022-11-23T15:43:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7fbbec7e-bfa9-4567-8ca2-ea36a4947ebc", - self: "/apiContact/7fbbec7e-bfa9-4567-8ca2-ea36a4947ebc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:37:52+00:00", - dateModified: "2022-11-23T17:37:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "354569be-bf5d-4974-9521-ce15669323ec", - self: "/apiContact/354569be-bf5d-4974-9521-ce15669323ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:35:44+00:00", - dateModified: "2022-11-23T19:35:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31ff5a7a-30ae-4cd4-a2a5-97b54bc6249d", - self: "/apiContact/31ff5a7a-30ae-4cd4-a2a5-97b54bc6249d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:38:12+00:00", - dateModified: "2022-11-23T21:38:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "60fbe862-4964-4abe-9e1a-79d477f8cf05", - self: "/apiContact/60fbe862-4964-4abe-9e1a-79d477f8cf05", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:32:15+00:00", - dateModified: "2022-11-23T23:32:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ea7a3f6-2ab5-4994-980a-515049d8ed47", - self: "/apiContact/5ea7a3f6-2ab5-4994-980a-515049d8ed47", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:30:16+00:00", - dateModified: "2022-11-24T01:30:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8701f08f-7b53-4513-bfff-fee501ca88b7", - self: "/apiContact/8701f08f-7b53-4513-bfff-fee501ca88b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:30:32+00:00", - dateModified: "2022-11-24T03:30:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "41771c3d-ad55-408b-b521-7f797020170c", - self: "/apiContact/41771c3d-ad55-408b-b521-7f797020170c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:30:45+00:00", - dateModified: "2022-11-24T05:30:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e6916ffc-e620-40d4-917a-718ff7203a5e", - self: "/apiContact/e6916ffc-e620-40d4-917a-718ff7203a5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:36:50+00:00", - dateModified: "2022-11-24T07:36:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ed0b0f1-268d-47c0-a2c9-4ecf64df90d9", - self: "/apiContact/5ed0b0f1-268d-47c0-a2c9-4ecf64df90d9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:34:32+00:00", - dateModified: "2022-11-24T09:34:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3e68c7b3-6554-4f47-967b-53a242e50e02", - self: "/apiContact/3e68c7b3-6554-4f47-967b-53a242e50e02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:32:56+00:00", - dateModified: "2022-11-24T11:32:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78c53e9c-2b15-461b-8d21-fe0ad3137d2f", - self: "/apiContact/78c53e9c-2b15-461b-8d21-fe0ad3137d2f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:08:56+00:00", - dateModified: "2022-12-09T11:08:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4c2d6805-b3e4-499d-9fbc-333fe834be29", - self: "/apiContact/4c2d6805-b3e4-499d-9fbc-333fe834be29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:51:18+00:00", - dateModified: "2022-12-09T12:51:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2d8bdeef-133b-4966-bfcd-a1be92d53aaa", - self: "/apiContact/2d8bdeef-133b-4966-bfcd-a1be92d53aaa", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:51:08+00:00", - dateModified: "2022-12-10T14:51:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31a7e88f-2b56-4ab4-9d55-c7502e44502a", - self: "/apiContact/31a7e88f-2b56-4ab4-9d55-c7502e44502a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:56:35+00:00", - dateModified: "2022-12-11T14:56:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1dad0df4-3018-47f6-9b56-28bbe2f5f607", - self: "/apiContact/1dad0df4-3018-47f6-9b56-28bbe2f5f607", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:56:06+00:00", - dateModified: "2022-12-12T14:56:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "36c69fa1-4263-4848-b128-169fdfa7164b", - self: "/apiContact/36c69fa1-4263-4848-b128-169fdfa7164b", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0fc5eadf-7080-4f4f-9a2d-ed70246341cc", - self: "/apiContact/0fc5eadf-7080-4f4f-9a2d-ed70246341cc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:13+00:00", - dateModified: "2022-10-28T15:17:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "338d3044-62bb-4c04-b80d-7422607a14e1", - self: "/apiContact/338d3044-62bb-4c04-b80d-7422607a14e1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:21+00:00", - dateModified: "2022-10-28T15:17:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d04a8143-fd10-4ba3-99e1-46c88e5b9e5b", - self: "/apiContact/d04a8143-fd10-4ba3-99e1-46c88e5b9e5b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:23+00:00", - dateModified: "2022-10-28T15:17:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "30883795-ed77-407e-9dd4-327b12b27ed6", - self: "/apiContact/30883795-ed77-407e-9dd4-327b12b27ed6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:41+00:00", - dateModified: "2022-10-28T15:17:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "53450f8d-58e7-4594-a204-335a7c7a38db", - self: "/apiContact/53450f8d-58e7-4594-a204-335a7c7a38db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:09+00:00", - dateModified: "2022-10-29T00:04:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e7ea1d9-925f-4036-86ba-017bd0fbcc11", - self: "/apiContact/7e7ea1d9-925f-4036-86ba-017bd0fbcc11", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:43+00:00", - dateModified: "2022-10-30T00:08:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5e548ddf-4e60-4acb-ac3f-2b42fbea3286", - self: "/apiContact/5e548ddf-4e60-4acb-ac3f-2b42fbea3286", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:52+00:00", - dateModified: "2022-10-31T00:09:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4390e67d-fc89-460f-8039-f718e4be393f", - self: "/apiContact/4390e67d-fc89-460f-8039-f718e4be393f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:35+00:00", - dateModified: "2022-10-31T13:45:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "994930a2-1ebf-4755-8fe7-e2974a9eccdf", - self: "/apiContact/994930a2-1ebf-4755-8fe7-e2974a9eccdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:32+00:00", - dateModified: "2022-11-01T13:20:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "599047b6-9214-4ecd-ab99-337e193295ba", - self: "/apiContact/599047b6-9214-4ecd-ab99-337e193295ba", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:04:32+00:00", - dateModified: "2022-11-02T14:04:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3cdf7132-913c-42e3-aba8-5ce8bd804a29", - self: "/apiContact/3cdf7132-913c-42e3-aba8-5ce8bd804a29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:55+00:00", - dateModified: "2022-11-03T13:54:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c9d7b6a-65c2-4842-948f-13e0971df75d", - self: "/apiContact/0c9d7b6a-65c2-4842-948f-13e0971df75d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:03:08+00:00", - dateModified: "2022-11-04T15:03:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a8f43070-f154-4b63-8284-8d68639950ab", - self: "/apiContact/a8f43070-f154-4b63-8284-8d68639950ab", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:44+00:00", - dateModified: "2022-11-10T10:14:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aeed75d8-9925-40fb-8eb0-1893c7596b85", - self: "/apiContact/aeed75d8-9925-40fb-8eb0-1893c7596b85", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:19+00:00", - dateModified: "2022-11-10T13:09:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b4ae854e-b299-45fe-bc64-7e06f2b280e3", - self: "/apiContact/b4ae854e-b299-45fe-bc64-7e06f2b280e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:52:36+00:00", - dateModified: "2022-11-21T12:52:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b934cb7e-9976-49a8-a711-b0615c47fd6d", - self: "/apiContact/b934cb7e-9976-49a8-a711-b0615c47fd6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:26+00:00", - dateModified: "2022-11-21T12:54:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1cb6b955-cfd8-43c5-9e3f-541baf23d4b0", - self: "/apiContact/1cb6b955-cfd8-43c5-9e3f-541baf23d4b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:06:15+00:00", - dateModified: "2022-11-21T13:06:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "12377c97-b8bb-448b-9d30-714d894a193f", - self: "/apiContact/12377c97-b8bb-448b-9d30-714d894a193f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:30:57+00:00", - dateModified: "2022-11-22T15:30:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0435a896-2308-484e-bc69-88bae49c6556", - self: "/apiContact/0435a896-2308-484e-bc69-88bae49c6556", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:00:17+00:00", - dateModified: "2022-11-22T17:00:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "35d6ea1e-e82c-4380-9759-e2933219e751", - self: "/apiContact/35d6ea1e-e82c-4380-9759-e2933219e751", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:50:12+00:00", - dateModified: "2022-11-22T16:50:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "87ec1759-44f5-45ce-b952-ac04ae051b23", - self: "/apiContact/87ec1759-44f5-45ce-b952-ac04ae051b23", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:58:57+00:00", - dateModified: "2022-11-22T17:58:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65550c91-48c8-4f5b-9b5f-29b60cbaebe0", - self: "/apiContact/65550c91-48c8-4f5b-9b5f-29b60cbaebe0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:28:26+00:00", - dateModified: "2022-11-22T19:28:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fd44e1fe-d841-4946-8ad4-416a5c43b32d", - self: "/apiContact/fd44e1fe-d841-4946-8ad4-416a5c43b32d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:30:46+00:00", - dateModified: "2022-11-22T21:30:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f3e2d112-4510-4aae-a95a-70041ee0237c", - self: "/apiContact/f3e2d112-4510-4aae-a95a-70041ee0237c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:28:26+00:00", - dateModified: "2022-11-22T23:28:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2deb4960-8d73-4b86-9545-a1b41a8fdb44", - self: "/apiContact/2deb4960-8d73-4b86-9545-a1b41a8fdb44", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:29:01+00:00", - dateModified: "2022-11-23T01:29:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a827f3bc-5cdd-44f4-a14a-4eebf1239ff1", - self: "/apiContact/a827f3bc-5cdd-44f4-a14a-4eebf1239ff1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:29:47+00:00", - dateModified: "2022-11-23T03:29:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "692b9953-8d1a-4eb8-94cd-9aaa1d4237a3", - self: "/apiContact/692b9953-8d1a-4eb8-94cd-9aaa1d4237a3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:30:08+00:00", - dateModified: "2022-11-23T05:30:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b7a6c57f-4569-4a21-bef5-1948ed0f7a15", - self: "/apiContact/b7a6c57f-4569-4a21-bef5-1948ed0f7a15", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:29:39+00:00", - dateModified: "2022-11-23T07:29:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "188b67aa-6c73-49db-ad83-29888a62dd61", - self: "/apiContact/188b67aa-6c73-49db-ad83-29888a62dd61", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:57:05+00:00", - dateModified: "2022-11-23T08:57:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1716d071-fbde-4c3e-b616-dcdd4015d1ca", - self: "/apiContact/1716d071-fbde-4c3e-b616-dcdd4015d1ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:49:59+00:00", - dateModified: "2022-11-23T09:49:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8b5a828e-8694-49de-9ac4-1e1ce30fe234", - self: "/apiContact/8b5a828e-8694-49de-9ac4-1e1ce30fe234", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:48:46+00:00", - dateModified: "2022-11-23T10:48:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ffd50d70-61cf-492c-a08e-0b6a7ad054ed", - self: "/apiContact/ffd50d70-61cf-492c-a08e-0b6a7ad054ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:51:05+00:00", - dateModified: "2022-11-23T11:51:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed5d01b7-f75e-4927-81b9-06ae83cf9c8f", - self: "/apiContact/ed5d01b7-f75e-4927-81b9-06ae83cf9c8f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:40:43+00:00", - dateModified: "2022-11-23T13:40:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b11c46be-8d14-4afa-b21d-149bf160eb62", - self: "/apiContact/b11c46be-8d14-4afa-b21d-149bf160eb62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:26:18+00:00", - dateModified: "2022-11-23T14:26:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "92b18918-0c59-4677-bde4-066abbf356df", - self: "/apiContact/92b18918-0c59-4677-bde4-066abbf356df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:43:50+00:00", - dateModified: "2022-11-23T15:43:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7fbbec7e-bfa9-4567-8ca2-ea36a4947ebc", - self: "/apiContact/7fbbec7e-bfa9-4567-8ca2-ea36a4947ebc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:37:52+00:00", - dateModified: "2022-11-23T17:37:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "354569be-bf5d-4974-9521-ce15669323ec", - self: "/apiContact/354569be-bf5d-4974-9521-ce15669323ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:35:44+00:00", - dateModified: "2022-11-23T19:35:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31ff5a7a-30ae-4cd4-a2a5-97b54bc6249d", - self: "/apiContact/31ff5a7a-30ae-4cd4-a2a5-97b54bc6249d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:38:12+00:00", - dateModified: "2022-11-23T21:38:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "60fbe862-4964-4abe-9e1a-79d477f8cf05", - self: "/apiContact/60fbe862-4964-4abe-9e1a-79d477f8cf05", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:32:15+00:00", - dateModified: "2022-11-23T23:32:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ea7a3f6-2ab5-4994-980a-515049d8ed47", - self: "/apiContact/5ea7a3f6-2ab5-4994-980a-515049d8ed47", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:30:16+00:00", - dateModified: "2022-11-24T01:30:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8701f08f-7b53-4513-bfff-fee501ca88b7", - self: "/apiContact/8701f08f-7b53-4513-bfff-fee501ca88b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:30:32+00:00", - dateModified: "2022-11-24T03:30:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "41771c3d-ad55-408b-b521-7f797020170c", - self: "/apiContact/41771c3d-ad55-408b-b521-7f797020170c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:30:45+00:00", - dateModified: "2022-11-24T05:30:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e6916ffc-e620-40d4-917a-718ff7203a5e", - self: "/apiContact/e6916ffc-e620-40d4-917a-718ff7203a5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:36:50+00:00", - dateModified: "2022-11-24T07:36:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ed0b0f1-268d-47c0-a2c9-4ecf64df90d9", - self: "/apiContact/5ed0b0f1-268d-47c0-a2c9-4ecf64df90d9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:34:32+00:00", - dateModified: "2022-11-24T09:34:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3e68c7b3-6554-4f47-967b-53a242e50e02", - self: "/apiContact/3e68c7b3-6554-4f47-967b-53a242e50e02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:32:56+00:00", - dateModified: "2022-11-24T11:32:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78c53e9c-2b15-461b-8d21-fe0ad3137d2f", - self: "/apiContact/78c53e9c-2b15-461b-8d21-fe0ad3137d2f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:08:56+00:00", - dateModified: "2022-12-09T11:08:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4c2d6805-b3e4-499d-9fbc-333fe834be29", - self: "/apiContact/4c2d6805-b3e4-499d-9fbc-333fe834be29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:51:18+00:00", - dateModified: "2022-12-09T12:51:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2d8bdeef-133b-4966-bfcd-a1be92d53aaa", - self: "/apiContact/2d8bdeef-133b-4966-bfcd-a1be92d53aaa", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:51:08+00:00", - dateModified: "2022-12-10T14:51:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31a7e88f-2b56-4ab4-9d55-c7502e44502a", - self: "/apiContact/31a7e88f-2b56-4ab4-9d55-c7502e44502a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:56:35+00:00", - dateModified: "2022-12-11T14:56:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1dad0df4-3018-47f6-9b56-28bbe2f5f607", - self: "/apiContact/1dad0df4-3018-47f6-9b56-28bbe2f5f607", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:56:06+00:00", - dateModified: "2022-12-12T14:56:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "8b009127-3ff2-450b-b804-617aecfef39f", - self: "/apiRating/8b009127-3ff2-450b-b804-617aecfef39f", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:30+00:00", - dateModified: "2022-11-14T13:54:19+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Checkin Component rated", - "The url: https://github.com/ConductionNL/checkin-component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Checkin Component", - "Dit component ondersteund inchecken op locatie zo als de horeca vanuit covid-19 maatregelen rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "Checkin Component", - embedded: { - url: { - _self: { - id: "2d50ae47-82ac-4256-96bb-c379cef2cb38", - self: "/apiRepository/2d50ae47-82ac-4256-96bb-c379cef2cb38", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "72a62f94-e8b4-4e3b-9cae-a58187ede38b", - self: "/api/oc/organizations/72a62f94-e8b4-4e3b-9cae-a58187ede38b", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:47+00:00", - dateModified: "2022-11-14T13:54:19+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "a0568bd1-8d41-41ce-8d34-578e4da409da", - "39deea1b-f8b5-4ca6-9240-495f331f3070", - "762b97ba-7009-411f-bb48-1391a3118772", - "2ae2cf59-5c2c-476c-b6ad-73e780169862", - "5a21bdd1-d68b-4357-afc4-d0f818cf285a", - "89dd2598-e6b5-4c65-961e-d48157255184", - "f74a2696-e4a7-4a0c-9b94-3652ff069a44", - "b595f49c-243b-4567-b852-272294eb7ebf", - "2f3bcf71-c3dc-48b8-be33-21e396e9579e", - "139f9d3f-be90-4b27-af53-fb008c9386e0", - "9993310a-8113-4d82-b54a-d0340c491bdc", - "53e3ca30-1ea5-4c7f-a488-5afac188b211", - "3cbe09f8-71bf-4d60-ae6b-9c6db2149b20", - "3d530fc7-5de3-40d2-81dc-9b4f08fcb4d8", - "082534a2-c06d-4ea6-b201-e214e38b3b20", - "a0dd185e-e3e5-4db7-8389-d077da579302", - "29fbd2e2-6273-4caf-b236-97e739742ab2", - "6e3c4d4b-6b4b-4eb7-be81-3a997b514b7e", - "2e951ff0-8283-499f-845e-e6860fd7668a", - "887eb4ad-08fc-481b-b6cf-a0cba4ac3e75", - "5ddda345-9d4b-468f-9617-53d0f91de79c", - "2568068e-08a5-44f6-b575-c199b889afcc", - "ac91b35f-ad3d-476a-83d1-b4cf6a384541", - "0cc86847-e12c-42f0-97ee-ea5c6e3ed987", - "4e108fe9-6d6c-444e-b2ba-7ece4aabd495", - "d1abe447-f128-470a-9e26-85770b0b0cfe", - "129a99e7-3587-4acf-b97f-24ce9d93e973", - "dc73a59c-f941-492e-8c2c-c4227367a7db", - "b8699a30-9b61-4e5b-9dbd-c7808bf039f9", - "62d6e8b0-d9dd-4063-9d33-25a1e00d5de5", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "checkin-component", - url: "https://github.com/ConductionNL/checkin-component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-06-02T14:07:10Z", - stars: 0, - fork_count: 0, - issue_open_count: 4, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "86064", "44824", "36978", "11219", "3898", "3282", "962"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "72a62f94-e8b4-4e3b-9cae-a58187ede38b", - self: "/api/oc/organizations/72a62f94-e8b4-4e3b-9cae-a58187ede38b", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:47+00:00", - dateModified: "2022-11-14T13:54:19+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "a0568bd1-8d41-41ce-8d34-578e4da409da", - "39deea1b-f8b5-4ca6-9240-495f331f3070", - "762b97ba-7009-411f-bb48-1391a3118772", - "2ae2cf59-5c2c-476c-b6ad-73e780169862", - "5a21bdd1-d68b-4357-afc4-d0f818cf285a", - "89dd2598-e6b5-4c65-961e-d48157255184", - "f74a2696-e4a7-4a0c-9b94-3652ff069a44", - "b595f49c-243b-4567-b852-272294eb7ebf", - "2f3bcf71-c3dc-48b8-be33-21e396e9579e", - "139f9d3f-be90-4b27-af53-fb008c9386e0", - "9993310a-8113-4d82-b54a-d0340c491bdc", - "53e3ca30-1ea5-4c7f-a488-5afac188b211", - "3cbe09f8-71bf-4d60-ae6b-9c6db2149b20", - "3d530fc7-5de3-40d2-81dc-9b4f08fcb4d8", - "082534a2-c06d-4ea6-b201-e214e38b3b20", - "a0dd185e-e3e5-4db7-8389-d077da579302", - "29fbd2e2-6273-4caf-b236-97e739742ab2", - "6e3c4d4b-6b4b-4eb7-be81-3a997b514b7e", - "2e951ff0-8283-499f-845e-e6860fd7668a", - "887eb4ad-08fc-481b-b6cf-a0cba4ac3e75", - "5ddda345-9d4b-468f-9617-53d0f91de79c", - "2568068e-08a5-44f6-b575-c199b889afcc", - "ac91b35f-ad3d-476a-83d1-b4cf6a384541", - "0cc86847-e12c-42f0-97ee-ea5c6e3ed987", - "4e108fe9-6d6c-444e-b2ba-7ece4aabd495", - "d1abe447-f128-470a-9e26-85770b0b0cfe", - "129a99e7-3587-4acf-b97f-24ce9d93e973", - "dc73a59c-f941-492e-8c2c-c4227367a7db", - "b8699a30-9b61-4e5b-9dbd-c7808bf039f9", - "62d6e8b0-d9dd-4063-9d33-25a1e00d5de5", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "fc98b412-263f-4ba8-a5eb-77d30371b54d", - self: "/apiDescription/fc98b412-263f-4ba8-a5eb-77d30371b54d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "Checkin Component,Dit component ondersteund inchecken op locatie zo als de horeca vanuit covid-19 maatregelen", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "eab2cd05-306b-4726-ae9c-2b7863133088", - self: "/apiComponentlegalEntity/eab2cd05-306b-4726-ae9c-2b7863133088", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "0cd3dd6e-4b9f-4b42-a2ab-50342cf3a4be", - self: "/api/oc/organizations/0cd3dd6e-4b9f-4b42-a2ab-50342cf3a4be", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:17:15+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "0cd3dd6e-4b9f-4b42-a2ab-50342cf3a4be", - self: "/api/oc/organizations/0cd3dd6e-4b9f-4b42-a2ab-50342cf3a4be", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:17:15+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "2bc4bde0-7fdd-4f6c-a2cd-e9265e591f76", - self: "/apiComponentnlEntity/2bc4bde0-7fdd-4f6c-a2cd-e9265e591f76", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "5f3aadcc-dfab-48b8-a25d-d874058fa191", - self: "/apiComponentnlEntitycommongroundEntity/5f3aadcc-dfab-48b8-a25d-d874058fa191", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:17:15+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "5f3aadcc-dfab-48b8-a25d-d874058fa191", - self: "/apiComponentnlEntitycommongroundEntity/5f3aadcc-dfab-48b8-a25d-d874058fa191", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:17:15+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "e0f27040-d231-417f-90e7-006591b9776d", - self: "/apiComponentmaintenanceEntity/e0f27040-d231-417f-90e7-006591b9776d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "36c69fa1-4263-4848-b128-169fdfa7164b", - self: "/apiContact/36c69fa1-4263-4848-b128-169fdfa7164b", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0fc5eadf-7080-4f4f-9a2d-ed70246341cc", - self: "/apiContact/0fc5eadf-7080-4f4f-9a2d-ed70246341cc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:13+00:00", - dateModified: "2022-10-28T15:17:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "338d3044-62bb-4c04-b80d-7422607a14e1", - self: "/apiContact/338d3044-62bb-4c04-b80d-7422607a14e1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:21+00:00", - dateModified: "2022-10-28T15:17:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d04a8143-fd10-4ba3-99e1-46c88e5b9e5b", - self: "/apiContact/d04a8143-fd10-4ba3-99e1-46c88e5b9e5b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:23+00:00", - dateModified: "2022-10-28T15:17:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "30883795-ed77-407e-9dd4-327b12b27ed6", - self: "/apiContact/30883795-ed77-407e-9dd4-327b12b27ed6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:41+00:00", - dateModified: "2022-10-28T15:17:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "53450f8d-58e7-4594-a204-335a7c7a38db", - self: "/apiContact/53450f8d-58e7-4594-a204-335a7c7a38db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:09+00:00", - dateModified: "2022-10-29T00:04:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e7ea1d9-925f-4036-86ba-017bd0fbcc11", - self: "/apiContact/7e7ea1d9-925f-4036-86ba-017bd0fbcc11", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:43+00:00", - dateModified: "2022-10-30T00:08:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5e548ddf-4e60-4acb-ac3f-2b42fbea3286", - self: "/apiContact/5e548ddf-4e60-4acb-ac3f-2b42fbea3286", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:52+00:00", - dateModified: "2022-10-31T00:09:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4390e67d-fc89-460f-8039-f718e4be393f", - self: "/apiContact/4390e67d-fc89-460f-8039-f718e4be393f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:35+00:00", - dateModified: "2022-10-31T13:45:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "994930a2-1ebf-4755-8fe7-e2974a9eccdf", - self: "/apiContact/994930a2-1ebf-4755-8fe7-e2974a9eccdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:32+00:00", - dateModified: "2022-11-01T13:20:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "599047b6-9214-4ecd-ab99-337e193295ba", - self: "/apiContact/599047b6-9214-4ecd-ab99-337e193295ba", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:04:32+00:00", - dateModified: "2022-11-02T14:04:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3cdf7132-913c-42e3-aba8-5ce8bd804a29", - self: "/apiContact/3cdf7132-913c-42e3-aba8-5ce8bd804a29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:55+00:00", - dateModified: "2022-11-03T13:54:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c9d7b6a-65c2-4842-948f-13e0971df75d", - self: "/apiContact/0c9d7b6a-65c2-4842-948f-13e0971df75d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:03:08+00:00", - dateModified: "2022-11-04T15:03:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a8f43070-f154-4b63-8284-8d68639950ab", - self: "/apiContact/a8f43070-f154-4b63-8284-8d68639950ab", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:44+00:00", - dateModified: "2022-11-10T10:14:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aeed75d8-9925-40fb-8eb0-1893c7596b85", - self: "/apiContact/aeed75d8-9925-40fb-8eb0-1893c7596b85", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:19+00:00", - dateModified: "2022-11-10T13:09:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b4ae854e-b299-45fe-bc64-7e06f2b280e3", - self: "/apiContact/b4ae854e-b299-45fe-bc64-7e06f2b280e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:52:36+00:00", - dateModified: "2022-11-21T12:52:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b934cb7e-9976-49a8-a711-b0615c47fd6d", - self: "/apiContact/b934cb7e-9976-49a8-a711-b0615c47fd6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:26+00:00", - dateModified: "2022-11-21T12:54:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1cb6b955-cfd8-43c5-9e3f-541baf23d4b0", - self: "/apiContact/1cb6b955-cfd8-43c5-9e3f-541baf23d4b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:06:15+00:00", - dateModified: "2022-11-21T13:06:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "12377c97-b8bb-448b-9d30-714d894a193f", - self: "/apiContact/12377c97-b8bb-448b-9d30-714d894a193f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:30:57+00:00", - dateModified: "2022-11-22T15:30:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0435a896-2308-484e-bc69-88bae49c6556", - self: "/apiContact/0435a896-2308-484e-bc69-88bae49c6556", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:00:17+00:00", - dateModified: "2022-11-22T17:00:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "35d6ea1e-e82c-4380-9759-e2933219e751", - self: "/apiContact/35d6ea1e-e82c-4380-9759-e2933219e751", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:50:12+00:00", - dateModified: "2022-11-22T16:50:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "87ec1759-44f5-45ce-b952-ac04ae051b23", - self: "/apiContact/87ec1759-44f5-45ce-b952-ac04ae051b23", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:58:57+00:00", - dateModified: "2022-11-22T17:58:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65550c91-48c8-4f5b-9b5f-29b60cbaebe0", - self: "/apiContact/65550c91-48c8-4f5b-9b5f-29b60cbaebe0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:28:26+00:00", - dateModified: "2022-11-22T19:28:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fd44e1fe-d841-4946-8ad4-416a5c43b32d", - self: "/apiContact/fd44e1fe-d841-4946-8ad4-416a5c43b32d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:30:46+00:00", - dateModified: "2022-11-22T21:30:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f3e2d112-4510-4aae-a95a-70041ee0237c", - self: "/apiContact/f3e2d112-4510-4aae-a95a-70041ee0237c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:28:26+00:00", - dateModified: "2022-11-22T23:28:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2deb4960-8d73-4b86-9545-a1b41a8fdb44", - self: "/apiContact/2deb4960-8d73-4b86-9545-a1b41a8fdb44", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:29:01+00:00", - dateModified: "2022-11-23T01:29:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a827f3bc-5cdd-44f4-a14a-4eebf1239ff1", - self: "/apiContact/a827f3bc-5cdd-44f4-a14a-4eebf1239ff1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:29:47+00:00", - dateModified: "2022-11-23T03:29:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "692b9953-8d1a-4eb8-94cd-9aaa1d4237a3", - self: "/apiContact/692b9953-8d1a-4eb8-94cd-9aaa1d4237a3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:30:08+00:00", - dateModified: "2022-11-23T05:30:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b7a6c57f-4569-4a21-bef5-1948ed0f7a15", - self: "/apiContact/b7a6c57f-4569-4a21-bef5-1948ed0f7a15", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:29:39+00:00", - dateModified: "2022-11-23T07:29:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "188b67aa-6c73-49db-ad83-29888a62dd61", - self: "/apiContact/188b67aa-6c73-49db-ad83-29888a62dd61", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:57:05+00:00", - dateModified: "2022-11-23T08:57:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1716d071-fbde-4c3e-b616-dcdd4015d1ca", - self: "/apiContact/1716d071-fbde-4c3e-b616-dcdd4015d1ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:49:59+00:00", - dateModified: "2022-11-23T09:49:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8b5a828e-8694-49de-9ac4-1e1ce30fe234", - self: "/apiContact/8b5a828e-8694-49de-9ac4-1e1ce30fe234", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:48:46+00:00", - dateModified: "2022-11-23T10:48:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ffd50d70-61cf-492c-a08e-0b6a7ad054ed", - self: "/apiContact/ffd50d70-61cf-492c-a08e-0b6a7ad054ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:51:05+00:00", - dateModified: "2022-11-23T11:51:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed5d01b7-f75e-4927-81b9-06ae83cf9c8f", - self: "/apiContact/ed5d01b7-f75e-4927-81b9-06ae83cf9c8f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:40:43+00:00", - dateModified: "2022-11-23T13:40:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b11c46be-8d14-4afa-b21d-149bf160eb62", - self: "/apiContact/b11c46be-8d14-4afa-b21d-149bf160eb62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:26:18+00:00", - dateModified: "2022-11-23T14:26:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "92b18918-0c59-4677-bde4-066abbf356df", - self: "/apiContact/92b18918-0c59-4677-bde4-066abbf356df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:43:50+00:00", - dateModified: "2022-11-23T15:43:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7fbbec7e-bfa9-4567-8ca2-ea36a4947ebc", - self: "/apiContact/7fbbec7e-bfa9-4567-8ca2-ea36a4947ebc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:37:52+00:00", - dateModified: "2022-11-23T17:37:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "354569be-bf5d-4974-9521-ce15669323ec", - self: "/apiContact/354569be-bf5d-4974-9521-ce15669323ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:35:44+00:00", - dateModified: "2022-11-23T19:35:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31ff5a7a-30ae-4cd4-a2a5-97b54bc6249d", - self: "/apiContact/31ff5a7a-30ae-4cd4-a2a5-97b54bc6249d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:38:12+00:00", - dateModified: "2022-11-23T21:38:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "60fbe862-4964-4abe-9e1a-79d477f8cf05", - self: "/apiContact/60fbe862-4964-4abe-9e1a-79d477f8cf05", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:32:15+00:00", - dateModified: "2022-11-23T23:32:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ea7a3f6-2ab5-4994-980a-515049d8ed47", - self: "/apiContact/5ea7a3f6-2ab5-4994-980a-515049d8ed47", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:30:16+00:00", - dateModified: "2022-11-24T01:30:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8701f08f-7b53-4513-bfff-fee501ca88b7", - self: "/apiContact/8701f08f-7b53-4513-bfff-fee501ca88b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:30:32+00:00", - dateModified: "2022-11-24T03:30:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "41771c3d-ad55-408b-b521-7f797020170c", - self: "/apiContact/41771c3d-ad55-408b-b521-7f797020170c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:30:45+00:00", - dateModified: "2022-11-24T05:30:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e6916ffc-e620-40d4-917a-718ff7203a5e", - self: "/apiContact/e6916ffc-e620-40d4-917a-718ff7203a5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:36:50+00:00", - dateModified: "2022-11-24T07:36:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ed0b0f1-268d-47c0-a2c9-4ecf64df90d9", - self: "/apiContact/5ed0b0f1-268d-47c0-a2c9-4ecf64df90d9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:34:32+00:00", - dateModified: "2022-11-24T09:34:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3e68c7b3-6554-4f47-967b-53a242e50e02", - self: "/apiContact/3e68c7b3-6554-4f47-967b-53a242e50e02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:32:56+00:00", - dateModified: "2022-11-24T11:32:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78c53e9c-2b15-461b-8d21-fe0ad3137d2f", - self: "/apiContact/78c53e9c-2b15-461b-8d21-fe0ad3137d2f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:08:56+00:00", - dateModified: "2022-12-09T11:08:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4c2d6805-b3e4-499d-9fbc-333fe834be29", - self: "/apiContact/4c2d6805-b3e4-499d-9fbc-333fe834be29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:51:18+00:00", - dateModified: "2022-12-09T12:51:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2d8bdeef-133b-4966-bfcd-a1be92d53aaa", - self: "/apiContact/2d8bdeef-133b-4966-bfcd-a1be92d53aaa", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:51:08+00:00", - dateModified: "2022-12-10T14:51:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31a7e88f-2b56-4ab4-9d55-c7502e44502a", - self: "/apiContact/31a7e88f-2b56-4ab4-9d55-c7502e44502a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:56:35+00:00", - dateModified: "2022-12-11T14:56:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1dad0df4-3018-47f6-9b56-28bbe2f5f607", - self: "/apiContact/1dad0df4-3018-47f6-9b56-28bbe2f5f607", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:56:06+00:00", - dateModified: "2022-12-12T14:56:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "36c69fa1-4263-4848-b128-169fdfa7164b", - self: "/apiContact/36c69fa1-4263-4848-b128-169fdfa7164b", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:41+00:00", - dateModified: "2022-10-28T15:15:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0fc5eadf-7080-4f4f-9a2d-ed70246341cc", - self: "/apiContact/0fc5eadf-7080-4f4f-9a2d-ed70246341cc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:13+00:00", - dateModified: "2022-10-28T15:17:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "338d3044-62bb-4c04-b80d-7422607a14e1", - self: "/apiContact/338d3044-62bb-4c04-b80d-7422607a14e1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:21+00:00", - dateModified: "2022-10-28T15:17:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d04a8143-fd10-4ba3-99e1-46c88e5b9e5b", - self: "/apiContact/d04a8143-fd10-4ba3-99e1-46c88e5b9e5b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:23+00:00", - dateModified: "2022-10-28T15:17:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "30883795-ed77-407e-9dd4-327b12b27ed6", - self: "/apiContact/30883795-ed77-407e-9dd4-327b12b27ed6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:41+00:00", - dateModified: "2022-10-28T15:17:41+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "53450f8d-58e7-4594-a204-335a7c7a38db", - self: "/apiContact/53450f8d-58e7-4594-a204-335a7c7a38db", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:09+00:00", - dateModified: "2022-10-29T00:04:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e7ea1d9-925f-4036-86ba-017bd0fbcc11", - self: "/apiContact/7e7ea1d9-925f-4036-86ba-017bd0fbcc11", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:43+00:00", - dateModified: "2022-10-30T00:08:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5e548ddf-4e60-4acb-ac3f-2b42fbea3286", - self: "/apiContact/5e548ddf-4e60-4acb-ac3f-2b42fbea3286", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:52+00:00", - dateModified: "2022-10-31T00:09:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4390e67d-fc89-460f-8039-f718e4be393f", - self: "/apiContact/4390e67d-fc89-460f-8039-f718e4be393f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:35+00:00", - dateModified: "2022-10-31T13:45:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "994930a2-1ebf-4755-8fe7-e2974a9eccdf", - self: "/apiContact/994930a2-1ebf-4755-8fe7-e2974a9eccdf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:32+00:00", - dateModified: "2022-11-01T13:20:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "599047b6-9214-4ecd-ab99-337e193295ba", - self: "/apiContact/599047b6-9214-4ecd-ab99-337e193295ba", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:04:32+00:00", - dateModified: "2022-11-02T14:04:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3cdf7132-913c-42e3-aba8-5ce8bd804a29", - self: "/apiContact/3cdf7132-913c-42e3-aba8-5ce8bd804a29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:55+00:00", - dateModified: "2022-11-03T13:54:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0c9d7b6a-65c2-4842-948f-13e0971df75d", - self: "/apiContact/0c9d7b6a-65c2-4842-948f-13e0971df75d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:03:08+00:00", - dateModified: "2022-11-04T15:03:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a8f43070-f154-4b63-8284-8d68639950ab", - self: "/apiContact/a8f43070-f154-4b63-8284-8d68639950ab", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:44+00:00", - dateModified: "2022-11-10T10:14:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aeed75d8-9925-40fb-8eb0-1893c7596b85", - self: "/apiContact/aeed75d8-9925-40fb-8eb0-1893c7596b85", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:19+00:00", - dateModified: "2022-11-10T13:09:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b4ae854e-b299-45fe-bc64-7e06f2b280e3", - self: "/apiContact/b4ae854e-b299-45fe-bc64-7e06f2b280e3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:52:36+00:00", - dateModified: "2022-11-21T12:52:36+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b934cb7e-9976-49a8-a711-b0615c47fd6d", - self: "/apiContact/b934cb7e-9976-49a8-a711-b0615c47fd6d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:26+00:00", - dateModified: "2022-11-21T12:54:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1cb6b955-cfd8-43c5-9e3f-541baf23d4b0", - self: "/apiContact/1cb6b955-cfd8-43c5-9e3f-541baf23d4b0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:06:15+00:00", - dateModified: "2022-11-21T13:06:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "12377c97-b8bb-448b-9d30-714d894a193f", - self: "/apiContact/12377c97-b8bb-448b-9d30-714d894a193f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:30:57+00:00", - dateModified: "2022-11-22T15:30:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0435a896-2308-484e-bc69-88bae49c6556", - self: "/apiContact/0435a896-2308-484e-bc69-88bae49c6556", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:00:17+00:00", - dateModified: "2022-11-22T17:00:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "35d6ea1e-e82c-4380-9759-e2933219e751", - self: "/apiContact/35d6ea1e-e82c-4380-9759-e2933219e751", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:50:12+00:00", - dateModified: "2022-11-22T16:50:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "87ec1759-44f5-45ce-b952-ac04ae051b23", - self: "/apiContact/87ec1759-44f5-45ce-b952-ac04ae051b23", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:58:57+00:00", - dateModified: "2022-11-22T17:58:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "65550c91-48c8-4f5b-9b5f-29b60cbaebe0", - self: "/apiContact/65550c91-48c8-4f5b-9b5f-29b60cbaebe0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:28:26+00:00", - dateModified: "2022-11-22T19:28:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fd44e1fe-d841-4946-8ad4-416a5c43b32d", - self: "/apiContact/fd44e1fe-d841-4946-8ad4-416a5c43b32d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:30:46+00:00", - dateModified: "2022-11-22T21:30:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f3e2d112-4510-4aae-a95a-70041ee0237c", - self: "/apiContact/f3e2d112-4510-4aae-a95a-70041ee0237c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:28:26+00:00", - dateModified: "2022-11-22T23:28:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2deb4960-8d73-4b86-9545-a1b41a8fdb44", - self: "/apiContact/2deb4960-8d73-4b86-9545-a1b41a8fdb44", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:29:01+00:00", - dateModified: "2022-11-23T01:29:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a827f3bc-5cdd-44f4-a14a-4eebf1239ff1", - self: "/apiContact/a827f3bc-5cdd-44f4-a14a-4eebf1239ff1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:29:47+00:00", - dateModified: "2022-11-23T03:29:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "692b9953-8d1a-4eb8-94cd-9aaa1d4237a3", - self: "/apiContact/692b9953-8d1a-4eb8-94cd-9aaa1d4237a3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:30:08+00:00", - dateModified: "2022-11-23T05:30:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b7a6c57f-4569-4a21-bef5-1948ed0f7a15", - self: "/apiContact/b7a6c57f-4569-4a21-bef5-1948ed0f7a15", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:29:39+00:00", - dateModified: "2022-11-23T07:29:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "188b67aa-6c73-49db-ad83-29888a62dd61", - self: "/apiContact/188b67aa-6c73-49db-ad83-29888a62dd61", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:57:05+00:00", - dateModified: "2022-11-23T08:57:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1716d071-fbde-4c3e-b616-dcdd4015d1ca", - self: "/apiContact/1716d071-fbde-4c3e-b616-dcdd4015d1ca", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:49:59+00:00", - dateModified: "2022-11-23T09:49:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8b5a828e-8694-49de-9ac4-1e1ce30fe234", - self: "/apiContact/8b5a828e-8694-49de-9ac4-1e1ce30fe234", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:48:46+00:00", - dateModified: "2022-11-23T10:48:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ffd50d70-61cf-492c-a08e-0b6a7ad054ed", - self: "/apiContact/ffd50d70-61cf-492c-a08e-0b6a7ad054ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:51:05+00:00", - dateModified: "2022-11-23T11:51:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ed5d01b7-f75e-4927-81b9-06ae83cf9c8f", - self: "/apiContact/ed5d01b7-f75e-4927-81b9-06ae83cf9c8f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:40:43+00:00", - dateModified: "2022-11-23T13:40:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b11c46be-8d14-4afa-b21d-149bf160eb62", - self: "/apiContact/b11c46be-8d14-4afa-b21d-149bf160eb62", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:26:18+00:00", - dateModified: "2022-11-23T14:26:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "92b18918-0c59-4677-bde4-066abbf356df", - self: "/apiContact/92b18918-0c59-4677-bde4-066abbf356df", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:43:50+00:00", - dateModified: "2022-11-23T15:43:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7fbbec7e-bfa9-4567-8ca2-ea36a4947ebc", - self: "/apiContact/7fbbec7e-bfa9-4567-8ca2-ea36a4947ebc", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:37:52+00:00", - dateModified: "2022-11-23T17:37:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "354569be-bf5d-4974-9521-ce15669323ec", - self: "/apiContact/354569be-bf5d-4974-9521-ce15669323ec", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:35:44+00:00", - dateModified: "2022-11-23T19:35:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31ff5a7a-30ae-4cd4-a2a5-97b54bc6249d", - self: "/apiContact/31ff5a7a-30ae-4cd4-a2a5-97b54bc6249d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:38:12+00:00", - dateModified: "2022-11-23T21:38:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "60fbe862-4964-4abe-9e1a-79d477f8cf05", - self: "/apiContact/60fbe862-4964-4abe-9e1a-79d477f8cf05", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:32:15+00:00", - dateModified: "2022-11-23T23:32:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ea7a3f6-2ab5-4994-980a-515049d8ed47", - self: "/apiContact/5ea7a3f6-2ab5-4994-980a-515049d8ed47", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:30:16+00:00", - dateModified: "2022-11-24T01:30:16+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8701f08f-7b53-4513-bfff-fee501ca88b7", - self: "/apiContact/8701f08f-7b53-4513-bfff-fee501ca88b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:30:32+00:00", - dateModified: "2022-11-24T03:30:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "41771c3d-ad55-408b-b521-7f797020170c", - self: "/apiContact/41771c3d-ad55-408b-b521-7f797020170c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:30:45+00:00", - dateModified: "2022-11-24T05:30:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e6916ffc-e620-40d4-917a-718ff7203a5e", - self: "/apiContact/e6916ffc-e620-40d4-917a-718ff7203a5e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:36:50+00:00", - dateModified: "2022-11-24T07:36:50+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ed0b0f1-268d-47c0-a2c9-4ecf64df90d9", - self: "/apiContact/5ed0b0f1-268d-47c0-a2c9-4ecf64df90d9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:34:32+00:00", - dateModified: "2022-11-24T09:34:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3e68c7b3-6554-4f47-967b-53a242e50e02", - self: "/apiContact/3e68c7b3-6554-4f47-967b-53a242e50e02", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:32:56+00:00", - dateModified: "2022-11-24T11:32:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "78c53e9c-2b15-461b-8d21-fe0ad3137d2f", - self: "/apiContact/78c53e9c-2b15-461b-8d21-fe0ad3137d2f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:08:56+00:00", - dateModified: "2022-12-09T11:08:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4c2d6805-b3e4-499d-9fbc-333fe834be29", - self: "/apiContact/4c2d6805-b3e4-499d-9fbc-333fe834be29", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:51:18+00:00", - dateModified: "2022-12-09T12:51:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2d8bdeef-133b-4966-bfcd-a1be92d53aaa", - self: "/apiContact/2d8bdeef-133b-4966-bfcd-a1be92d53aaa", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:51:08+00:00", - dateModified: "2022-12-10T14:51:08+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "31a7e88f-2b56-4ab4-9d55-c7502e44502a", - self: "/apiContact/31a7e88f-2b56-4ab4-9d55-c7502e44502a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:56:35+00:00", - dateModified: "2022-12-11T14:56:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1dad0df4-3018-47f6-9b56-28bbe2f5f607", - self: "/apiContact/1dad0df4-3018-47f6-9b56-28bbe2f5f607", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:56:06+00:00", - dateModified: "2022-12-12T14:56:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "8b009127-3ff2-450b-b804-617aecfef39f", - self: "/apiRating/8b009127-3ff2-450b-b804-617aecfef39f", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:30+00:00", - dateModified: "2022-11-14T13:54:19+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Checkin Component rated", - "The url: https://github.com/ConductionNL/checkin-component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Checkin Component", - "Dit component ondersteund inchecken op locatie zo als de horeca vanuit covid-19 maatregelen rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "a690f23e-8ccd-4228-8c02-4c50d5af1132", - }, - { - _id: "53f875f0-8427-4439-87c9-e603c3271b1a", - _self: { - id: "53f875f0-8427-4439-87c9-e603c3271b1a", - self: "/api/oc/components/53f875f0-8427-4439-87c9-e603c3271b1a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:33+00:00", - dateModified: "2022-12-12T14:55:38+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "9d77d130-e036-449b-8c27-9c617c7044cc", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "118", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "7736aa63-42a1-49c8-8840-bede79230931", - self: "/apiRepository/7736aa63-42a1-49c8-8840-bede79230931", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:34+00:00", - dateModified: "2022-10-28T15:15:34+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "244b3f1f-3b27-4287-a1d6-47f4aa227cdf", - self: "/api/oc/organizations/244b3f1f-3b27-4287-a1d6-47f4aa227cdf", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:43+00:00", - dateModified: "2022-11-14T13:53:14+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "da533bd6-6fce-4b1a-a088-814fccdac700", - "5002937b-880e-4920-9de5-f61ae9b3498d", - "3d850deb-e259-45f2-92a7-7ef71efb1c3c", - "fcce5a4b-7506-46ec-aba2-a387ca6f3c4d", - "9b7afeca-55bd-43ed-bcac-d930428ddd57", - "49585c3c-ecd5-4cc0-b567-184155e17efa", - "daaf23fa-8b33-4ab5-aaac-f53abb4dd582", - "99fbbf3f-5247-400a-81db-df677ef71935", - "e78f45b3-77ae-478d-ba43-c4b2e3335eea", - "f56c1beb-5724-4ecd-9bd8-ffdb9d8db44b", - "0d2f8e50-8aba-486d-9a61-59fe8dae55d1", - "87cf7634-1734-4707-8e6c-82882e71e4da", - "ee837ead-fd45-4c44-b858-34138094c03c", - "0f22bc83-b4d1-4d7a-bb21-748d0b067530", - "549705e7-181c-4df7-8d18-73d11da76973", - "aeb369d5-5074-4335-afd7-5d63d87247e8", - "5d821fe8-385a-4d00-90b9-bc5d641ccf76", - "1814f9ac-02b2-4a17-9bd0-5d003a15a520", - "9747cd08-6a3e-45bd-b622-e0833d8b87c0", - "508b28cc-7819-4918-bae2-c2f2f7f5006a", - "2cb8ec46-1a64-41f4-9007-3372fde06e14", - "f79c37f2-d56d-4f29-b402-4d4fb4ab849d", - "ff9651ca-6be1-47d0-a28d-8d77b096e03b", - "ebd0b419-5a74-43e3-b254-510c09eef677", - "b372dec5-b502-4a03-b7a6-0934285883a7", - "52960f86-25bb-4e3a-adcc-fca02c127875", - "bd21892e-c165-4a8d-b090-f4dcd5b22605", - "50d503ef-14ae-4830-88bb-e73e7042b670", - "00f11a8d-0d97-4df2-a332-5d4769b8ece8", - "e8d7b8fb-217c-4a1c-9f0b-e81254169877", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "Challenge-component", - url: "https://github.com/ConductionNL/Challenge-component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-06-02T14:03:58Z", - stars: 0, - fork_count: 0, - issue_open_count: 5, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "116175", "86064", "37010", "11479", "3898", "3282", "844"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "244b3f1f-3b27-4287-a1d6-47f4aa227cdf", - self: "/api/oc/organizations/244b3f1f-3b27-4287-a1d6-47f4aa227cdf", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:43+00:00", - dateModified: "2022-11-14T13:53:14+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "da533bd6-6fce-4b1a-a088-814fccdac700", - "5002937b-880e-4920-9de5-f61ae9b3498d", - "3d850deb-e259-45f2-92a7-7ef71efb1c3c", - "fcce5a4b-7506-46ec-aba2-a387ca6f3c4d", - "9b7afeca-55bd-43ed-bcac-d930428ddd57", - "49585c3c-ecd5-4cc0-b567-184155e17efa", - "daaf23fa-8b33-4ab5-aaac-f53abb4dd582", - "99fbbf3f-5247-400a-81db-df677ef71935", - "e78f45b3-77ae-478d-ba43-c4b2e3335eea", - "f56c1beb-5724-4ecd-9bd8-ffdb9d8db44b", - "0d2f8e50-8aba-486d-9a61-59fe8dae55d1", - "87cf7634-1734-4707-8e6c-82882e71e4da", - "ee837ead-fd45-4c44-b858-34138094c03c", - "0f22bc83-b4d1-4d7a-bb21-748d0b067530", - "549705e7-181c-4df7-8d18-73d11da76973", - "aeb369d5-5074-4335-afd7-5d63d87247e8", - "5d821fe8-385a-4d00-90b9-bc5d641ccf76", - "1814f9ac-02b2-4a17-9bd0-5d003a15a520", - "9747cd08-6a3e-45bd-b622-e0833d8b87c0", - "508b28cc-7819-4918-bae2-c2f2f7f5006a", - "2cb8ec46-1a64-41f4-9007-3372fde06e14", - "f79c37f2-d56d-4f29-b402-4d4fb4ab849d", - "ff9651ca-6be1-47d0-a28d-8d77b096e03b", - "ebd0b419-5a74-43e3-b254-510c09eef677", - "b372dec5-b502-4a03-b7a6-0934285883a7", - "52960f86-25bb-4e3a-adcc-fca02c127875", - "bd21892e-c165-4a8d-b090-f4dcd5b22605", - "50d503ef-14ae-4830-88bb-e73e7042b670", - "00f11a8d-0d97-4df2-a332-5d4769b8ece8", - "e8d7b8fb-217c-4a1c-9f0b-e81254169877", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "7389a26a-60da-4603-8543-750e686b7a40", - self: "/apiDescription/7389a26a-60da-4603-8543-750e686b7a40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "Challenge-component,Dit component ondersteund challanges in de form van bijvoorbeeld kickstarter of https://startupinresidence.com/", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "2b350540-2919-413d-9087-b4d414c2072a", - self: "/apiComponentlegalEntity/2b350540-2919-413d-9087-b4d414c2072a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "77969723-c305-471c-beea-220745e6cd9f", - self: "/api/oc/organizations/77969723-c305-471c-beea-220745e6cd9f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:17:09+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "77969723-c305-471c-beea-220745e6cd9f", - self: "/api/oc/organizations/77969723-c305-471c-beea-220745e6cd9f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:17:09+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "fb0230d6-be2a-4aec-8ff2-3276352a8556", - self: "/apiComponentnlEntity/fb0230d6-be2a-4aec-8ff2-3276352a8556", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "b49403e6-9cb6-4c33-9b00-2c7ef9f09d2f", - self: "/apiComponentnlEntitycommongroundEntity/b49403e6-9cb6-4c33-9b00-2c7ef9f09d2f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:17:09+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "b49403e6-9cb6-4c33-9b00-2c7ef9f09d2f", - self: "/apiComponentnlEntitycommongroundEntity/b49403e6-9cb6-4c33-9b00-2c7ef9f09d2f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:17:09+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "0b63bf59-aab2-47ff-b58b-a505945ac3eb", - self: "/apiComponentmaintenanceEntity/0b63bf59-aab2-47ff-b58b-a505945ac3eb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "27f71be3-c23b-4948-8b41-62840c935fdc", - self: "/apiContact/27f71be3-c23b-4948-8b41-62840c935fdc", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d4ff08aa-b268-4f1a-b84b-c213ddcabe00", - self: "/apiContact/d4ff08aa-b268-4f1a-b84b-c213ddcabe00", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:07+00:00", - dateModified: "2022-10-28T15:17:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fb2bb719-ce96-49a5-9144-ca0c95ebc410", - self: "/apiContact/fb2bb719-ce96-49a5-9144-ca0c95ebc410", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:14+00:00", - dateModified: "2022-10-28T15:17:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7fafddd4-d202-49ae-a976-90245220c02f", - self: "/apiContact/7fafddd4-d202-49ae-a976-90245220c02f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:17+00:00", - dateModified: "2022-10-28T15:17:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "003652bd-1ced-4b68-a857-395b40442f8b", - self: "/apiContact/003652bd-1ced-4b68-a857-395b40442f8b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:32+00:00", - dateModified: "2022-10-28T15:17:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "664a7e7c-093b-4d53-bb65-636a65d9155c", - self: "/apiContact/664a7e7c-093b-4d53-bb65-636a65d9155c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:05+00:00", - dateModified: "2022-10-29T00:04:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00fcf5e2-488c-410e-b9ee-cab7d0cf0365", - self: "/apiContact/00fcf5e2-488c-410e-b9ee-cab7d0cf0365", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:37+00:00", - dateModified: "2022-10-30T00:08:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "105d6208-f7f9-46f8-ba0d-d2e8004cb1f3", - self: "/apiContact/105d6208-f7f9-46f8-ba0d-d2e8004cb1f3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:46+00:00", - dateModified: "2022-10-31T00:09:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7c431b4b-b10a-4a37-a4db-2980dc65fd19", - self: "/apiContact/7c431b4b-b10a-4a37-a4db-2980dc65fd19", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:27+00:00", - dateModified: "2022-10-31T13:45:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0358fc10-ba65-4039-9cf2-5ae7e1a20b69", - self: "/apiContact/0358fc10-ba65-4039-9cf2-5ae7e1a20b69", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:25+00:00", - dateModified: "2022-11-01T13:20:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dfaa9fdc-8153-4cf1-8823-ed7910338fa5", - self: "/apiContact/dfaa9fdc-8153-4cf1-8823-ed7910338fa5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:04:18+00:00", - dateModified: "2022-11-02T14:04:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a29fe34c-7c0b-4b09-8b78-4bbf05925aa0", - self: "/apiContact/a29fe34c-7c0b-4b09-8b78-4bbf05925aa0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:53+00:00", - dateModified: "2022-11-03T13:54:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "70c26165-5046-4c15-9a65-f298b0e1727c", - self: "/apiContact/70c26165-5046-4c15-9a65-f298b0e1727c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:02:45+00:00", - dateModified: "2022-11-04T15:02:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7cd3a82a-4c37-43e9-92b6-6f72ca0903a7", - self: "/apiContact/7cd3a82a-4c37-43e9-92b6-6f72ca0903a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:42+00:00", - dateModified: "2022-11-10T10:14:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "90eca4d3-3feb-4a1b-b035-761fcbd91eb1", - self: "/apiContact/90eca4d3-3feb-4a1b-b035-761fcbd91eb1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:12+00:00", - dateModified: "2022-11-10T13:09:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "11d526a4-bd53-4f5d-90a3-314118621614", - self: "/apiContact/11d526a4-bd53-4f5d-90a3-314118621614", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:52:23+00:00", - dateModified: "2022-11-21T12:52:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ad2be8c0-d3cb-40cd-b65b-a34661dfc105", - self: "/apiContact/ad2be8c0-d3cb-40cd-b65b-a34661dfc105", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:17+00:00", - dateModified: "2022-11-21T12:54:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a37793ea-69d9-46a0-8233-bf59a7c0bd5a", - self: "/apiContact/a37793ea-69d9-46a0-8233-bf59a7c0bd5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:05:58+00:00", - dateModified: "2022-11-21T13:05:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a239866-eeb1-4385-8dec-eb3938730811", - self: "/apiContact/5a239866-eeb1-4385-8dec-eb3938730811", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:29:06+00:00", - dateModified: "2022-11-22T15:29:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "83d87091-c50a-4578-acfb-2937bcacb188", - self: "/apiContact/83d87091-c50a-4578-acfb-2937bcacb188", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:57:30+00:00", - dateModified: "2022-11-22T16:57:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc2c227f-4fc2-4f95-be66-874fc64fb2eb", - self: "/apiContact/cc2c227f-4fc2-4f95-be66-874fc64fb2eb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:47:04+00:00", - dateModified: "2022-11-22T16:47:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfbf4865-233c-4aa0-b656-63bb8ea32e88", - self: "/apiContact/bfbf4865-233c-4aa0-b656-63bb8ea32e88", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:57:17+00:00", - dateModified: "2022-11-22T17:57:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "84ffe83a-bbe5-4663-8d48-76bebd45320d", - self: "/apiContact/84ffe83a-bbe5-4663-8d48-76bebd45320d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:26:35+00:00", - dateModified: "2022-11-22T19:26:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c2af6645-ccc8-4f7e-9d20-022e5a9af2b7", - self: "/apiContact/c2af6645-ccc8-4f7e-9d20-022e5a9af2b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:29:02+00:00", - dateModified: "2022-11-22T21:29:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b9ddd6e7-902f-4400-bfe7-eb8204fd901a", - self: "/apiContact/b9ddd6e7-902f-4400-bfe7-eb8204fd901a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:26:58+00:00", - dateModified: "2022-11-22T23:26:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aef0d38c-8e25-403b-b04f-90cfa789ec35", - self: "/apiContact/aef0d38c-8e25-403b-b04f-90cfa789ec35", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:27:40+00:00", - dateModified: "2022-11-23T01:27:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ee1bb32-3ff7-478d-9c10-ffb04e05b012", - self: "/apiContact/5ee1bb32-3ff7-478d-9c10-ffb04e05b012", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:28:21+00:00", - dateModified: "2022-11-23T03:28:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "39bfe7d2-a183-4117-8996-257a88f2be1d", - self: "/apiContact/39bfe7d2-a183-4117-8996-257a88f2be1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:28:29+00:00", - dateModified: "2022-11-23T05:28:29+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2fec9d83-53bc-4e16-8485-044c69ed2d17", - self: "/apiContact/2fec9d83-53bc-4e16-8485-044c69ed2d17", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:28:20+00:00", - dateModified: "2022-11-23T07:28:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aecd7d00-f1dc-489f-9427-d977cc78fc0c", - self: "/apiContact/aecd7d00-f1dc-489f-9427-d977cc78fc0c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:54:14+00:00", - dateModified: "2022-11-23T08:54:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "36dd303d-04b0-4110-8313-281c4e71e206", - self: "/apiContact/36dd303d-04b0-4110-8313-281c4e71e206", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:47:25+00:00", - dateModified: "2022-11-23T09:47:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e04695c-c6f7-4636-b1a3-ffc882ecceed", - self: "/apiContact/7e04695c-c6f7-4636-b1a3-ffc882ecceed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:46:02+00:00", - dateModified: "2022-11-23T10:46:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc8f2c6e-cf7c-4027-aece-31368068d771", - self: "/apiContact/cc8f2c6e-cf7c-4027-aece-31368068d771", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:49:28+00:00", - dateModified: "2022-11-23T11:49:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "946a172c-ce59-4cfe-a81a-9171a2685474", - self: "/apiContact/946a172c-ce59-4cfe-a81a-9171a2685474", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:37:59+00:00", - dateModified: "2022-11-23T13:37:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2e09f945-38f0-4be3-8a0e-c2f093927d5f", - self: "/apiContact/2e09f945-38f0-4be3-8a0e-c2f093927d5f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:24:00+00:00", - dateModified: "2022-11-23T14:24:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9ac21314-6fdd-4131-912a-d8ed00ae5509", - self: "/apiContact/9ac21314-6fdd-4131-912a-d8ed00ae5509", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:42:14+00:00", - dateModified: "2022-11-23T15:42:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b53209a-a6b2-4e50-a428-c8bc46bc019d", - self: "/apiContact/9b53209a-a6b2-4e50-a428-c8bc46bc019d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:35:52+00:00", - dateModified: "2022-11-23T17:35:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9fb5de9b-1036-427a-b6a4-e0cc66b22015", - self: "/apiContact/9fb5de9b-1036-427a-b6a4-e0cc66b22015", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:33:57+00:00", - dateModified: "2022-11-23T19:33:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b25ace78-13d8-417f-95b3-e36e87caff37", - self: "/apiContact/b25ace78-13d8-417f-95b3-e36e87caff37", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:36:26+00:00", - dateModified: "2022-11-23T21:36:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "735abe02-491d-47bb-a260-27925a639d9b", - self: "/apiContact/735abe02-491d-47bb-a260-27925a639d9b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:30:26+00:00", - dateModified: "2022-11-23T23:30:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1a754ecd-6d32-4332-a779-06d533d5a985", - self: "/apiContact/1a754ecd-6d32-4332-a779-06d533d5a985", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:28:40+00:00", - dateModified: "2022-11-24T01:28:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e40a24d6-41a6-486b-8fff-29c42ebd6253", - self: "/apiContact/e40a24d6-41a6-486b-8fff-29c42ebd6253", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:28:51+00:00", - dateModified: "2022-11-24T03:28:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d17399e5-8498-43ce-9186-39c831b31734", - self: "/apiContact/d17399e5-8498-43ce-9186-39c831b31734", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:28:49+00:00", - dateModified: "2022-11-24T05:28:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e9b1c655-1b04-45bf-8b48-d0727eb61e3e", - self: "/apiContact/e9b1c655-1b04-45bf-8b48-d0727eb61e3e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:34:45+00:00", - dateModified: "2022-11-24T07:34:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b38548de-6b2f-4543-b9ec-fc2fd6a7516b", - self: "/apiContact/b38548de-6b2f-4543-b9ec-fc2fd6a7516b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:32:25+00:00", - dateModified: "2022-11-24T09:32:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6270d331-8167-46c6-8e64-c13e141aaf4d", - self: "/apiContact/6270d331-8167-46c6-8e64-c13e141aaf4d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:31:19+00:00", - dateModified: "2022-11-24T11:31:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1ad7a42c-24e5-4097-bf96-5c9ace18f176", - self: "/apiContact/1ad7a42c-24e5-4097-bf96-5c9ace18f176", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:07:27+00:00", - dateModified: "2022-12-09T11:07:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6c4affb-3431-4bc2-82f1-b8fb1d52077b", - self: "/apiContact/f6c4affb-3431-4bc2-82f1-b8fb1d52077b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:50:21+00:00", - dateModified: "2022-12-09T12:50:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "870a8ecd-84ad-481a-bff8-bdf1752ea1dd", - self: "/apiContact/870a8ecd-84ad-481a-bff8-bdf1752ea1dd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:50:12+00:00", - dateModified: "2022-12-10T14:50:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fbe31612-c0c8-4ef8-be3b-516fda12816a", - self: "/apiContact/fbe31612-c0c8-4ef8-be3b-516fda12816a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:55:44+00:00", - dateModified: "2022-12-11T14:55:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3f8eb541-5929-4934-8376-14d5d382dd97", - self: "/apiContact/3f8eb541-5929-4934-8376-14d5d382dd97", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:55:23+00:00", - dateModified: "2022-12-12T14:55:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "27f71be3-c23b-4948-8b41-62840c935fdc", - self: "/apiContact/27f71be3-c23b-4948-8b41-62840c935fdc", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d4ff08aa-b268-4f1a-b84b-c213ddcabe00", - self: "/apiContact/d4ff08aa-b268-4f1a-b84b-c213ddcabe00", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:07+00:00", - dateModified: "2022-10-28T15:17:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fb2bb719-ce96-49a5-9144-ca0c95ebc410", - self: "/apiContact/fb2bb719-ce96-49a5-9144-ca0c95ebc410", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:14+00:00", - dateModified: "2022-10-28T15:17:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7fafddd4-d202-49ae-a976-90245220c02f", - self: "/apiContact/7fafddd4-d202-49ae-a976-90245220c02f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:17+00:00", - dateModified: "2022-10-28T15:17:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "003652bd-1ced-4b68-a857-395b40442f8b", - self: "/apiContact/003652bd-1ced-4b68-a857-395b40442f8b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:32+00:00", - dateModified: "2022-10-28T15:17:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "664a7e7c-093b-4d53-bb65-636a65d9155c", - self: "/apiContact/664a7e7c-093b-4d53-bb65-636a65d9155c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:05+00:00", - dateModified: "2022-10-29T00:04:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00fcf5e2-488c-410e-b9ee-cab7d0cf0365", - self: "/apiContact/00fcf5e2-488c-410e-b9ee-cab7d0cf0365", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:37+00:00", - dateModified: "2022-10-30T00:08:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "105d6208-f7f9-46f8-ba0d-d2e8004cb1f3", - self: "/apiContact/105d6208-f7f9-46f8-ba0d-d2e8004cb1f3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:46+00:00", - dateModified: "2022-10-31T00:09:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7c431b4b-b10a-4a37-a4db-2980dc65fd19", - self: "/apiContact/7c431b4b-b10a-4a37-a4db-2980dc65fd19", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:27+00:00", - dateModified: "2022-10-31T13:45:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0358fc10-ba65-4039-9cf2-5ae7e1a20b69", - self: "/apiContact/0358fc10-ba65-4039-9cf2-5ae7e1a20b69", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:25+00:00", - dateModified: "2022-11-01T13:20:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dfaa9fdc-8153-4cf1-8823-ed7910338fa5", - self: "/apiContact/dfaa9fdc-8153-4cf1-8823-ed7910338fa5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:04:18+00:00", - dateModified: "2022-11-02T14:04:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a29fe34c-7c0b-4b09-8b78-4bbf05925aa0", - self: "/apiContact/a29fe34c-7c0b-4b09-8b78-4bbf05925aa0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:53+00:00", - dateModified: "2022-11-03T13:54:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "70c26165-5046-4c15-9a65-f298b0e1727c", - self: "/apiContact/70c26165-5046-4c15-9a65-f298b0e1727c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:02:45+00:00", - dateModified: "2022-11-04T15:02:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7cd3a82a-4c37-43e9-92b6-6f72ca0903a7", - self: "/apiContact/7cd3a82a-4c37-43e9-92b6-6f72ca0903a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:42+00:00", - dateModified: "2022-11-10T10:14:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "90eca4d3-3feb-4a1b-b035-761fcbd91eb1", - self: "/apiContact/90eca4d3-3feb-4a1b-b035-761fcbd91eb1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:12+00:00", - dateModified: "2022-11-10T13:09:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "11d526a4-bd53-4f5d-90a3-314118621614", - self: "/apiContact/11d526a4-bd53-4f5d-90a3-314118621614", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:52:23+00:00", - dateModified: "2022-11-21T12:52:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ad2be8c0-d3cb-40cd-b65b-a34661dfc105", - self: "/apiContact/ad2be8c0-d3cb-40cd-b65b-a34661dfc105", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:17+00:00", - dateModified: "2022-11-21T12:54:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a37793ea-69d9-46a0-8233-bf59a7c0bd5a", - self: "/apiContact/a37793ea-69d9-46a0-8233-bf59a7c0bd5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:05:58+00:00", - dateModified: "2022-11-21T13:05:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a239866-eeb1-4385-8dec-eb3938730811", - self: "/apiContact/5a239866-eeb1-4385-8dec-eb3938730811", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:29:06+00:00", - dateModified: "2022-11-22T15:29:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "83d87091-c50a-4578-acfb-2937bcacb188", - self: "/apiContact/83d87091-c50a-4578-acfb-2937bcacb188", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:57:30+00:00", - dateModified: "2022-11-22T16:57:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc2c227f-4fc2-4f95-be66-874fc64fb2eb", - self: "/apiContact/cc2c227f-4fc2-4f95-be66-874fc64fb2eb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:47:04+00:00", - dateModified: "2022-11-22T16:47:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfbf4865-233c-4aa0-b656-63bb8ea32e88", - self: "/apiContact/bfbf4865-233c-4aa0-b656-63bb8ea32e88", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:57:17+00:00", - dateModified: "2022-11-22T17:57:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "84ffe83a-bbe5-4663-8d48-76bebd45320d", - self: "/apiContact/84ffe83a-bbe5-4663-8d48-76bebd45320d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:26:35+00:00", - dateModified: "2022-11-22T19:26:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c2af6645-ccc8-4f7e-9d20-022e5a9af2b7", - self: "/apiContact/c2af6645-ccc8-4f7e-9d20-022e5a9af2b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:29:02+00:00", - dateModified: "2022-11-22T21:29:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b9ddd6e7-902f-4400-bfe7-eb8204fd901a", - self: "/apiContact/b9ddd6e7-902f-4400-bfe7-eb8204fd901a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:26:58+00:00", - dateModified: "2022-11-22T23:26:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aef0d38c-8e25-403b-b04f-90cfa789ec35", - self: "/apiContact/aef0d38c-8e25-403b-b04f-90cfa789ec35", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:27:40+00:00", - dateModified: "2022-11-23T01:27:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ee1bb32-3ff7-478d-9c10-ffb04e05b012", - self: "/apiContact/5ee1bb32-3ff7-478d-9c10-ffb04e05b012", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:28:21+00:00", - dateModified: "2022-11-23T03:28:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "39bfe7d2-a183-4117-8996-257a88f2be1d", - self: "/apiContact/39bfe7d2-a183-4117-8996-257a88f2be1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:28:29+00:00", - dateModified: "2022-11-23T05:28:29+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2fec9d83-53bc-4e16-8485-044c69ed2d17", - self: "/apiContact/2fec9d83-53bc-4e16-8485-044c69ed2d17", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:28:20+00:00", - dateModified: "2022-11-23T07:28:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aecd7d00-f1dc-489f-9427-d977cc78fc0c", - self: "/apiContact/aecd7d00-f1dc-489f-9427-d977cc78fc0c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:54:14+00:00", - dateModified: "2022-11-23T08:54:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "36dd303d-04b0-4110-8313-281c4e71e206", - self: "/apiContact/36dd303d-04b0-4110-8313-281c4e71e206", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:47:25+00:00", - dateModified: "2022-11-23T09:47:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e04695c-c6f7-4636-b1a3-ffc882ecceed", - self: "/apiContact/7e04695c-c6f7-4636-b1a3-ffc882ecceed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:46:02+00:00", - dateModified: "2022-11-23T10:46:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc8f2c6e-cf7c-4027-aece-31368068d771", - self: "/apiContact/cc8f2c6e-cf7c-4027-aece-31368068d771", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:49:28+00:00", - dateModified: "2022-11-23T11:49:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "946a172c-ce59-4cfe-a81a-9171a2685474", - self: "/apiContact/946a172c-ce59-4cfe-a81a-9171a2685474", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:37:59+00:00", - dateModified: "2022-11-23T13:37:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2e09f945-38f0-4be3-8a0e-c2f093927d5f", - self: "/apiContact/2e09f945-38f0-4be3-8a0e-c2f093927d5f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:24:00+00:00", - dateModified: "2022-11-23T14:24:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9ac21314-6fdd-4131-912a-d8ed00ae5509", - self: "/apiContact/9ac21314-6fdd-4131-912a-d8ed00ae5509", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:42:14+00:00", - dateModified: "2022-11-23T15:42:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b53209a-a6b2-4e50-a428-c8bc46bc019d", - self: "/apiContact/9b53209a-a6b2-4e50-a428-c8bc46bc019d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:35:52+00:00", - dateModified: "2022-11-23T17:35:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9fb5de9b-1036-427a-b6a4-e0cc66b22015", - self: "/apiContact/9fb5de9b-1036-427a-b6a4-e0cc66b22015", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:33:57+00:00", - dateModified: "2022-11-23T19:33:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b25ace78-13d8-417f-95b3-e36e87caff37", - self: "/apiContact/b25ace78-13d8-417f-95b3-e36e87caff37", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:36:26+00:00", - dateModified: "2022-11-23T21:36:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "735abe02-491d-47bb-a260-27925a639d9b", - self: "/apiContact/735abe02-491d-47bb-a260-27925a639d9b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:30:26+00:00", - dateModified: "2022-11-23T23:30:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1a754ecd-6d32-4332-a779-06d533d5a985", - self: "/apiContact/1a754ecd-6d32-4332-a779-06d533d5a985", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:28:40+00:00", - dateModified: "2022-11-24T01:28:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e40a24d6-41a6-486b-8fff-29c42ebd6253", - self: "/apiContact/e40a24d6-41a6-486b-8fff-29c42ebd6253", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:28:51+00:00", - dateModified: "2022-11-24T03:28:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d17399e5-8498-43ce-9186-39c831b31734", - self: "/apiContact/d17399e5-8498-43ce-9186-39c831b31734", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:28:49+00:00", - dateModified: "2022-11-24T05:28:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e9b1c655-1b04-45bf-8b48-d0727eb61e3e", - self: "/apiContact/e9b1c655-1b04-45bf-8b48-d0727eb61e3e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:34:45+00:00", - dateModified: "2022-11-24T07:34:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b38548de-6b2f-4543-b9ec-fc2fd6a7516b", - self: "/apiContact/b38548de-6b2f-4543-b9ec-fc2fd6a7516b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:32:25+00:00", - dateModified: "2022-11-24T09:32:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6270d331-8167-46c6-8e64-c13e141aaf4d", - self: "/apiContact/6270d331-8167-46c6-8e64-c13e141aaf4d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:31:19+00:00", - dateModified: "2022-11-24T11:31:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1ad7a42c-24e5-4097-bf96-5c9ace18f176", - self: "/apiContact/1ad7a42c-24e5-4097-bf96-5c9ace18f176", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:07:27+00:00", - dateModified: "2022-12-09T11:07:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6c4affb-3431-4bc2-82f1-b8fb1d52077b", - self: "/apiContact/f6c4affb-3431-4bc2-82f1-b8fb1d52077b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:50:21+00:00", - dateModified: "2022-12-09T12:50:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "870a8ecd-84ad-481a-bff8-bdf1752ea1dd", - self: "/apiContact/870a8ecd-84ad-481a-bff8-bdf1752ea1dd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:50:12+00:00", - dateModified: "2022-12-10T14:50:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fbe31612-c0c8-4ef8-be3b-516fda12816a", - self: "/apiContact/fbe31612-c0c8-4ef8-be3b-516fda12816a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:55:44+00:00", - dateModified: "2022-12-11T14:55:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3f8eb541-5929-4934-8376-14d5d382dd97", - self: "/apiContact/3f8eb541-5929-4934-8376-14d5d382dd97", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:55:23+00:00", - dateModified: "2022-12-12T14:55:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "18dd68ae-6ba9-47a6-929a-eabb396f435d", - self: "/apiRating/18dd68ae-6ba9-47a6-929a-eabb396f435d", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:28+00:00", - dateModified: "2022-11-14T13:53:14+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Challenge-component rated", - "The url: https://github.com/ConductionNL/Challenge-component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Challenge-component", - "Dit component ondersteund challanges in de form van bijvoorbeeld kickstarter of https://startupinresidence.com/ rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "Challenge-component", - embedded: { - url: { - _self: { - id: "7736aa63-42a1-49c8-8840-bede79230931", - self: "/apiRepository/7736aa63-42a1-49c8-8840-bede79230931", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:34+00:00", - dateModified: "2022-10-28T15:15:34+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "244b3f1f-3b27-4287-a1d6-47f4aa227cdf", - self: "/api/oc/organizations/244b3f1f-3b27-4287-a1d6-47f4aa227cdf", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:43+00:00", - dateModified: "2022-11-14T13:53:14+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "da533bd6-6fce-4b1a-a088-814fccdac700", - "5002937b-880e-4920-9de5-f61ae9b3498d", - "3d850deb-e259-45f2-92a7-7ef71efb1c3c", - "fcce5a4b-7506-46ec-aba2-a387ca6f3c4d", - "9b7afeca-55bd-43ed-bcac-d930428ddd57", - "49585c3c-ecd5-4cc0-b567-184155e17efa", - "daaf23fa-8b33-4ab5-aaac-f53abb4dd582", - "99fbbf3f-5247-400a-81db-df677ef71935", - "e78f45b3-77ae-478d-ba43-c4b2e3335eea", - "f56c1beb-5724-4ecd-9bd8-ffdb9d8db44b", - "0d2f8e50-8aba-486d-9a61-59fe8dae55d1", - "87cf7634-1734-4707-8e6c-82882e71e4da", - "ee837ead-fd45-4c44-b858-34138094c03c", - "0f22bc83-b4d1-4d7a-bb21-748d0b067530", - "549705e7-181c-4df7-8d18-73d11da76973", - "aeb369d5-5074-4335-afd7-5d63d87247e8", - "5d821fe8-385a-4d00-90b9-bc5d641ccf76", - "1814f9ac-02b2-4a17-9bd0-5d003a15a520", - "9747cd08-6a3e-45bd-b622-e0833d8b87c0", - "508b28cc-7819-4918-bae2-c2f2f7f5006a", - "2cb8ec46-1a64-41f4-9007-3372fde06e14", - "f79c37f2-d56d-4f29-b402-4d4fb4ab849d", - "ff9651ca-6be1-47d0-a28d-8d77b096e03b", - "ebd0b419-5a74-43e3-b254-510c09eef677", - "b372dec5-b502-4a03-b7a6-0934285883a7", - "52960f86-25bb-4e3a-adcc-fca02c127875", - "bd21892e-c165-4a8d-b090-f4dcd5b22605", - "50d503ef-14ae-4830-88bb-e73e7042b670", - "00f11a8d-0d97-4df2-a332-5d4769b8ece8", - "e8d7b8fb-217c-4a1c-9f0b-e81254169877", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "Challenge-component", - url: "https://github.com/ConductionNL/Challenge-component", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-06-02T14:03:58Z", - stars: 0, - fork_count: 0, - issue_open_count: 5, - merge_request_open_count: null, - programming_languages: ["194184", "140404", "116175", "86064", "37010", "11479", "3898", "3282", "844"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "244b3f1f-3b27-4287-a1d6-47f4aa227cdf", - self: "/api/oc/organizations/244b3f1f-3b27-4287-a1d6-47f4aa227cdf", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:43+00:00", - dateModified: "2022-11-14T13:53:14+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "da533bd6-6fce-4b1a-a088-814fccdac700", - "5002937b-880e-4920-9de5-f61ae9b3498d", - "3d850deb-e259-45f2-92a7-7ef71efb1c3c", - "fcce5a4b-7506-46ec-aba2-a387ca6f3c4d", - "9b7afeca-55bd-43ed-bcac-d930428ddd57", - "49585c3c-ecd5-4cc0-b567-184155e17efa", - "daaf23fa-8b33-4ab5-aaac-f53abb4dd582", - "99fbbf3f-5247-400a-81db-df677ef71935", - "e78f45b3-77ae-478d-ba43-c4b2e3335eea", - "f56c1beb-5724-4ecd-9bd8-ffdb9d8db44b", - "0d2f8e50-8aba-486d-9a61-59fe8dae55d1", - "87cf7634-1734-4707-8e6c-82882e71e4da", - "ee837ead-fd45-4c44-b858-34138094c03c", - "0f22bc83-b4d1-4d7a-bb21-748d0b067530", - "549705e7-181c-4df7-8d18-73d11da76973", - "aeb369d5-5074-4335-afd7-5d63d87247e8", - "5d821fe8-385a-4d00-90b9-bc5d641ccf76", - "1814f9ac-02b2-4a17-9bd0-5d003a15a520", - "9747cd08-6a3e-45bd-b622-e0833d8b87c0", - "508b28cc-7819-4918-bae2-c2f2f7f5006a", - "2cb8ec46-1a64-41f4-9007-3372fde06e14", - "f79c37f2-d56d-4f29-b402-4d4fb4ab849d", - "ff9651ca-6be1-47d0-a28d-8d77b096e03b", - "ebd0b419-5a74-43e3-b254-510c09eef677", - "b372dec5-b502-4a03-b7a6-0934285883a7", - "52960f86-25bb-4e3a-adcc-fca02c127875", - "bd21892e-c165-4a8d-b090-f4dcd5b22605", - "50d503ef-14ae-4830-88bb-e73e7042b670", - "00f11a8d-0d97-4df2-a332-5d4769b8ece8", - "e8d7b8fb-217c-4a1c-9f0b-e81254169877", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "7389a26a-60da-4603-8543-750e686b7a40", - self: "/apiDescription/7389a26a-60da-4603-8543-750e686b7a40", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "Challenge-component,Dit component ondersteund challanges in de form van bijvoorbeeld kickstarter of https://startupinresidence.com/", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "2b350540-2919-413d-9087-b4d414c2072a", - self: "/apiComponentlegalEntity/2b350540-2919-413d-9087-b4d414c2072a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "77969723-c305-471c-beea-220745e6cd9f", - self: "/api/oc/organizations/77969723-c305-471c-beea-220745e6cd9f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:17:09+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "77969723-c305-471c-beea-220745e6cd9f", - self: "/api/oc/organizations/77969723-c305-471c-beea-220745e6cd9f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:17:09+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "fb0230d6-be2a-4aec-8ff2-3276352a8556", - self: "/apiComponentnlEntity/fb0230d6-be2a-4aec-8ff2-3276352a8556", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "b49403e6-9cb6-4c33-9b00-2c7ef9f09d2f", - self: "/apiComponentnlEntitycommongroundEntity/b49403e6-9cb6-4c33-9b00-2c7ef9f09d2f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:17:09+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - embedded: { - commonground: { - _self: { - id: "b49403e6-9cb6-4c33-9b00-2c7ef9f09d2f", - self: "/apiComponentnlEntitycommongroundEntity/b49403e6-9cb6-4c33-9b00-2c7ef9f09d2f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:17:09+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "data", - }, - }, - }, - maintenance: { - _self: { - id: "0b63bf59-aab2-47ff-b58b-a505945ac3eb", - self: "/apiComponentmaintenanceEntity/0b63bf59-aab2-47ff-b58b-a505945ac3eb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "27f71be3-c23b-4948-8b41-62840c935fdc", - self: "/apiContact/27f71be3-c23b-4948-8b41-62840c935fdc", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d4ff08aa-b268-4f1a-b84b-c213ddcabe00", - self: "/apiContact/d4ff08aa-b268-4f1a-b84b-c213ddcabe00", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:07+00:00", - dateModified: "2022-10-28T15:17:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fb2bb719-ce96-49a5-9144-ca0c95ebc410", - self: "/apiContact/fb2bb719-ce96-49a5-9144-ca0c95ebc410", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:14+00:00", - dateModified: "2022-10-28T15:17:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7fafddd4-d202-49ae-a976-90245220c02f", - self: "/apiContact/7fafddd4-d202-49ae-a976-90245220c02f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:17+00:00", - dateModified: "2022-10-28T15:17:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "003652bd-1ced-4b68-a857-395b40442f8b", - self: "/apiContact/003652bd-1ced-4b68-a857-395b40442f8b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:32+00:00", - dateModified: "2022-10-28T15:17:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "664a7e7c-093b-4d53-bb65-636a65d9155c", - self: "/apiContact/664a7e7c-093b-4d53-bb65-636a65d9155c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:05+00:00", - dateModified: "2022-10-29T00:04:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00fcf5e2-488c-410e-b9ee-cab7d0cf0365", - self: "/apiContact/00fcf5e2-488c-410e-b9ee-cab7d0cf0365", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:37+00:00", - dateModified: "2022-10-30T00:08:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "105d6208-f7f9-46f8-ba0d-d2e8004cb1f3", - self: "/apiContact/105d6208-f7f9-46f8-ba0d-d2e8004cb1f3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:46+00:00", - dateModified: "2022-10-31T00:09:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7c431b4b-b10a-4a37-a4db-2980dc65fd19", - self: "/apiContact/7c431b4b-b10a-4a37-a4db-2980dc65fd19", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:27+00:00", - dateModified: "2022-10-31T13:45:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0358fc10-ba65-4039-9cf2-5ae7e1a20b69", - self: "/apiContact/0358fc10-ba65-4039-9cf2-5ae7e1a20b69", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:25+00:00", - dateModified: "2022-11-01T13:20:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dfaa9fdc-8153-4cf1-8823-ed7910338fa5", - self: "/apiContact/dfaa9fdc-8153-4cf1-8823-ed7910338fa5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:04:18+00:00", - dateModified: "2022-11-02T14:04:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a29fe34c-7c0b-4b09-8b78-4bbf05925aa0", - self: "/apiContact/a29fe34c-7c0b-4b09-8b78-4bbf05925aa0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:53+00:00", - dateModified: "2022-11-03T13:54:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "70c26165-5046-4c15-9a65-f298b0e1727c", - self: "/apiContact/70c26165-5046-4c15-9a65-f298b0e1727c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:02:45+00:00", - dateModified: "2022-11-04T15:02:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7cd3a82a-4c37-43e9-92b6-6f72ca0903a7", - self: "/apiContact/7cd3a82a-4c37-43e9-92b6-6f72ca0903a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:42+00:00", - dateModified: "2022-11-10T10:14:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "90eca4d3-3feb-4a1b-b035-761fcbd91eb1", - self: "/apiContact/90eca4d3-3feb-4a1b-b035-761fcbd91eb1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:12+00:00", - dateModified: "2022-11-10T13:09:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "11d526a4-bd53-4f5d-90a3-314118621614", - self: "/apiContact/11d526a4-bd53-4f5d-90a3-314118621614", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:52:23+00:00", - dateModified: "2022-11-21T12:52:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ad2be8c0-d3cb-40cd-b65b-a34661dfc105", - self: "/apiContact/ad2be8c0-d3cb-40cd-b65b-a34661dfc105", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:17+00:00", - dateModified: "2022-11-21T12:54:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a37793ea-69d9-46a0-8233-bf59a7c0bd5a", - self: "/apiContact/a37793ea-69d9-46a0-8233-bf59a7c0bd5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:05:58+00:00", - dateModified: "2022-11-21T13:05:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a239866-eeb1-4385-8dec-eb3938730811", - self: "/apiContact/5a239866-eeb1-4385-8dec-eb3938730811", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:29:06+00:00", - dateModified: "2022-11-22T15:29:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "83d87091-c50a-4578-acfb-2937bcacb188", - self: "/apiContact/83d87091-c50a-4578-acfb-2937bcacb188", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:57:30+00:00", - dateModified: "2022-11-22T16:57:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc2c227f-4fc2-4f95-be66-874fc64fb2eb", - self: "/apiContact/cc2c227f-4fc2-4f95-be66-874fc64fb2eb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:47:04+00:00", - dateModified: "2022-11-22T16:47:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfbf4865-233c-4aa0-b656-63bb8ea32e88", - self: "/apiContact/bfbf4865-233c-4aa0-b656-63bb8ea32e88", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:57:17+00:00", - dateModified: "2022-11-22T17:57:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "84ffe83a-bbe5-4663-8d48-76bebd45320d", - self: "/apiContact/84ffe83a-bbe5-4663-8d48-76bebd45320d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:26:35+00:00", - dateModified: "2022-11-22T19:26:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c2af6645-ccc8-4f7e-9d20-022e5a9af2b7", - self: "/apiContact/c2af6645-ccc8-4f7e-9d20-022e5a9af2b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:29:02+00:00", - dateModified: "2022-11-22T21:29:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b9ddd6e7-902f-4400-bfe7-eb8204fd901a", - self: "/apiContact/b9ddd6e7-902f-4400-bfe7-eb8204fd901a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:26:58+00:00", - dateModified: "2022-11-22T23:26:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aef0d38c-8e25-403b-b04f-90cfa789ec35", - self: "/apiContact/aef0d38c-8e25-403b-b04f-90cfa789ec35", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:27:40+00:00", - dateModified: "2022-11-23T01:27:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ee1bb32-3ff7-478d-9c10-ffb04e05b012", - self: "/apiContact/5ee1bb32-3ff7-478d-9c10-ffb04e05b012", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:28:21+00:00", - dateModified: "2022-11-23T03:28:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "39bfe7d2-a183-4117-8996-257a88f2be1d", - self: "/apiContact/39bfe7d2-a183-4117-8996-257a88f2be1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:28:29+00:00", - dateModified: "2022-11-23T05:28:29+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2fec9d83-53bc-4e16-8485-044c69ed2d17", - self: "/apiContact/2fec9d83-53bc-4e16-8485-044c69ed2d17", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:28:20+00:00", - dateModified: "2022-11-23T07:28:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aecd7d00-f1dc-489f-9427-d977cc78fc0c", - self: "/apiContact/aecd7d00-f1dc-489f-9427-d977cc78fc0c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:54:14+00:00", - dateModified: "2022-11-23T08:54:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "36dd303d-04b0-4110-8313-281c4e71e206", - self: "/apiContact/36dd303d-04b0-4110-8313-281c4e71e206", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:47:25+00:00", - dateModified: "2022-11-23T09:47:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e04695c-c6f7-4636-b1a3-ffc882ecceed", - self: "/apiContact/7e04695c-c6f7-4636-b1a3-ffc882ecceed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:46:02+00:00", - dateModified: "2022-11-23T10:46:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc8f2c6e-cf7c-4027-aece-31368068d771", - self: "/apiContact/cc8f2c6e-cf7c-4027-aece-31368068d771", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:49:28+00:00", - dateModified: "2022-11-23T11:49:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "946a172c-ce59-4cfe-a81a-9171a2685474", - self: "/apiContact/946a172c-ce59-4cfe-a81a-9171a2685474", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:37:59+00:00", - dateModified: "2022-11-23T13:37:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2e09f945-38f0-4be3-8a0e-c2f093927d5f", - self: "/apiContact/2e09f945-38f0-4be3-8a0e-c2f093927d5f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:24:00+00:00", - dateModified: "2022-11-23T14:24:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9ac21314-6fdd-4131-912a-d8ed00ae5509", - self: "/apiContact/9ac21314-6fdd-4131-912a-d8ed00ae5509", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:42:14+00:00", - dateModified: "2022-11-23T15:42:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b53209a-a6b2-4e50-a428-c8bc46bc019d", - self: "/apiContact/9b53209a-a6b2-4e50-a428-c8bc46bc019d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:35:52+00:00", - dateModified: "2022-11-23T17:35:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9fb5de9b-1036-427a-b6a4-e0cc66b22015", - self: "/apiContact/9fb5de9b-1036-427a-b6a4-e0cc66b22015", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:33:57+00:00", - dateModified: "2022-11-23T19:33:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b25ace78-13d8-417f-95b3-e36e87caff37", - self: "/apiContact/b25ace78-13d8-417f-95b3-e36e87caff37", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:36:26+00:00", - dateModified: "2022-11-23T21:36:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "735abe02-491d-47bb-a260-27925a639d9b", - self: "/apiContact/735abe02-491d-47bb-a260-27925a639d9b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:30:26+00:00", - dateModified: "2022-11-23T23:30:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1a754ecd-6d32-4332-a779-06d533d5a985", - self: "/apiContact/1a754ecd-6d32-4332-a779-06d533d5a985", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:28:40+00:00", - dateModified: "2022-11-24T01:28:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e40a24d6-41a6-486b-8fff-29c42ebd6253", - self: "/apiContact/e40a24d6-41a6-486b-8fff-29c42ebd6253", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:28:51+00:00", - dateModified: "2022-11-24T03:28:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d17399e5-8498-43ce-9186-39c831b31734", - self: "/apiContact/d17399e5-8498-43ce-9186-39c831b31734", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:28:49+00:00", - dateModified: "2022-11-24T05:28:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e9b1c655-1b04-45bf-8b48-d0727eb61e3e", - self: "/apiContact/e9b1c655-1b04-45bf-8b48-d0727eb61e3e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:34:45+00:00", - dateModified: "2022-11-24T07:34:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b38548de-6b2f-4543-b9ec-fc2fd6a7516b", - self: "/apiContact/b38548de-6b2f-4543-b9ec-fc2fd6a7516b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:32:25+00:00", - dateModified: "2022-11-24T09:32:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6270d331-8167-46c6-8e64-c13e141aaf4d", - self: "/apiContact/6270d331-8167-46c6-8e64-c13e141aaf4d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:31:19+00:00", - dateModified: "2022-11-24T11:31:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1ad7a42c-24e5-4097-bf96-5c9ace18f176", - self: "/apiContact/1ad7a42c-24e5-4097-bf96-5c9ace18f176", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:07:27+00:00", - dateModified: "2022-12-09T11:07:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6c4affb-3431-4bc2-82f1-b8fb1d52077b", - self: "/apiContact/f6c4affb-3431-4bc2-82f1-b8fb1d52077b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:50:21+00:00", - dateModified: "2022-12-09T12:50:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "870a8ecd-84ad-481a-bff8-bdf1752ea1dd", - self: "/apiContact/870a8ecd-84ad-481a-bff8-bdf1752ea1dd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:50:12+00:00", - dateModified: "2022-12-10T14:50:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fbe31612-c0c8-4ef8-be3b-516fda12816a", - self: "/apiContact/fbe31612-c0c8-4ef8-be3b-516fda12816a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:55:44+00:00", - dateModified: "2022-12-11T14:55:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3f8eb541-5929-4934-8376-14d5d382dd97", - self: "/apiContact/3f8eb541-5929-4934-8376-14d5d382dd97", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:55:23+00:00", - dateModified: "2022-12-12T14:55:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "27f71be3-c23b-4948-8b41-62840c935fdc", - self: "/apiContact/27f71be3-c23b-4948-8b41-62840c935fdc", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:35+00:00", - dateModified: "2022-10-28T15:15:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d4ff08aa-b268-4f1a-b84b-c213ddcabe00", - self: "/apiContact/d4ff08aa-b268-4f1a-b84b-c213ddcabe00", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:07+00:00", - dateModified: "2022-10-28T15:17:07+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fb2bb719-ce96-49a5-9144-ca0c95ebc410", - self: "/apiContact/fb2bb719-ce96-49a5-9144-ca0c95ebc410", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:14+00:00", - dateModified: "2022-10-28T15:17:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7fafddd4-d202-49ae-a976-90245220c02f", - self: "/apiContact/7fafddd4-d202-49ae-a976-90245220c02f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:17+00:00", - dateModified: "2022-10-28T15:17:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "003652bd-1ced-4b68-a857-395b40442f8b", - self: "/apiContact/003652bd-1ced-4b68-a857-395b40442f8b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:32+00:00", - dateModified: "2022-10-28T15:17:32+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "664a7e7c-093b-4d53-bb65-636a65d9155c", - self: "/apiContact/664a7e7c-093b-4d53-bb65-636a65d9155c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:04:05+00:00", - dateModified: "2022-10-29T00:04:05+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00fcf5e2-488c-410e-b9ee-cab7d0cf0365", - self: "/apiContact/00fcf5e2-488c-410e-b9ee-cab7d0cf0365", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:37+00:00", - dateModified: "2022-10-30T00:08:37+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "105d6208-f7f9-46f8-ba0d-d2e8004cb1f3", - self: "/apiContact/105d6208-f7f9-46f8-ba0d-d2e8004cb1f3", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:46+00:00", - dateModified: "2022-10-31T00:09:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7c431b4b-b10a-4a37-a4db-2980dc65fd19", - self: "/apiContact/7c431b4b-b10a-4a37-a4db-2980dc65fd19", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:45:27+00:00", - dateModified: "2022-10-31T13:45:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "0358fc10-ba65-4039-9cf2-5ae7e1a20b69", - self: "/apiContact/0358fc10-ba65-4039-9cf2-5ae7e1a20b69", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:20:25+00:00", - dateModified: "2022-11-01T13:20:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "dfaa9fdc-8153-4cf1-8823-ed7910338fa5", - self: "/apiContact/dfaa9fdc-8153-4cf1-8823-ed7910338fa5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:04:18+00:00", - dateModified: "2022-11-02T14:04:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a29fe34c-7c0b-4b09-8b78-4bbf05925aa0", - self: "/apiContact/a29fe34c-7c0b-4b09-8b78-4bbf05925aa0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:53+00:00", - dateModified: "2022-11-03T13:54:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "70c26165-5046-4c15-9a65-f298b0e1727c", - self: "/apiContact/70c26165-5046-4c15-9a65-f298b0e1727c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:02:45+00:00", - dateModified: "2022-11-04T15:02:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7cd3a82a-4c37-43e9-92b6-6f72ca0903a7", - self: "/apiContact/7cd3a82a-4c37-43e9-92b6-6f72ca0903a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:42+00:00", - dateModified: "2022-11-10T10:14:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "90eca4d3-3feb-4a1b-b035-761fcbd91eb1", - self: "/apiContact/90eca4d3-3feb-4a1b-b035-761fcbd91eb1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:09:12+00:00", - dateModified: "2022-11-10T13:09:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "11d526a4-bd53-4f5d-90a3-314118621614", - self: "/apiContact/11d526a4-bd53-4f5d-90a3-314118621614", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:52:23+00:00", - dateModified: "2022-11-21T12:52:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ad2be8c0-d3cb-40cd-b65b-a34661dfc105", - self: "/apiContact/ad2be8c0-d3cb-40cd-b65b-a34661dfc105", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:54:17+00:00", - dateModified: "2022-11-21T12:54:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a37793ea-69d9-46a0-8233-bf59a7c0bd5a", - self: "/apiContact/a37793ea-69d9-46a0-8233-bf59a7c0bd5a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:05:58+00:00", - dateModified: "2022-11-21T13:05:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5a239866-eeb1-4385-8dec-eb3938730811", - self: "/apiContact/5a239866-eeb1-4385-8dec-eb3938730811", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:29:06+00:00", - dateModified: "2022-11-22T15:29:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "83d87091-c50a-4578-acfb-2937bcacb188", - self: "/apiContact/83d87091-c50a-4578-acfb-2937bcacb188", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:57:30+00:00", - dateModified: "2022-11-22T16:57:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc2c227f-4fc2-4f95-be66-874fc64fb2eb", - self: "/apiContact/cc2c227f-4fc2-4f95-be66-874fc64fb2eb", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:47:04+00:00", - dateModified: "2022-11-22T16:47:04+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "bfbf4865-233c-4aa0-b656-63bb8ea32e88", - self: "/apiContact/bfbf4865-233c-4aa0-b656-63bb8ea32e88", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:57:17+00:00", - dateModified: "2022-11-22T17:57:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "84ffe83a-bbe5-4663-8d48-76bebd45320d", - self: "/apiContact/84ffe83a-bbe5-4663-8d48-76bebd45320d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:26:35+00:00", - dateModified: "2022-11-22T19:26:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c2af6645-ccc8-4f7e-9d20-022e5a9af2b7", - self: "/apiContact/c2af6645-ccc8-4f7e-9d20-022e5a9af2b7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:29:02+00:00", - dateModified: "2022-11-22T21:29:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b9ddd6e7-902f-4400-bfe7-eb8204fd901a", - self: "/apiContact/b9ddd6e7-902f-4400-bfe7-eb8204fd901a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:26:58+00:00", - dateModified: "2022-11-22T23:26:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aef0d38c-8e25-403b-b04f-90cfa789ec35", - self: "/apiContact/aef0d38c-8e25-403b-b04f-90cfa789ec35", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:27:40+00:00", - dateModified: "2022-11-23T01:27:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ee1bb32-3ff7-478d-9c10-ffb04e05b012", - self: "/apiContact/5ee1bb32-3ff7-478d-9c10-ffb04e05b012", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:28:21+00:00", - dateModified: "2022-11-23T03:28:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "39bfe7d2-a183-4117-8996-257a88f2be1d", - self: "/apiContact/39bfe7d2-a183-4117-8996-257a88f2be1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:28:29+00:00", - dateModified: "2022-11-23T05:28:29+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2fec9d83-53bc-4e16-8485-044c69ed2d17", - self: "/apiContact/2fec9d83-53bc-4e16-8485-044c69ed2d17", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:28:20+00:00", - dateModified: "2022-11-23T07:28:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "aecd7d00-f1dc-489f-9427-d977cc78fc0c", - self: "/apiContact/aecd7d00-f1dc-489f-9427-d977cc78fc0c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:54:14+00:00", - dateModified: "2022-11-23T08:54:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "36dd303d-04b0-4110-8313-281c4e71e206", - self: "/apiContact/36dd303d-04b0-4110-8313-281c4e71e206", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:47:25+00:00", - dateModified: "2022-11-23T09:47:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "7e04695c-c6f7-4636-b1a3-ffc882ecceed", - self: "/apiContact/7e04695c-c6f7-4636-b1a3-ffc882ecceed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:46:02+00:00", - dateModified: "2022-11-23T10:46:02+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "cc8f2c6e-cf7c-4027-aece-31368068d771", - self: "/apiContact/cc8f2c6e-cf7c-4027-aece-31368068d771", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:49:28+00:00", - dateModified: "2022-11-23T11:49:28+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "946a172c-ce59-4cfe-a81a-9171a2685474", - self: "/apiContact/946a172c-ce59-4cfe-a81a-9171a2685474", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:37:59+00:00", - dateModified: "2022-11-23T13:37:59+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2e09f945-38f0-4be3-8a0e-c2f093927d5f", - self: "/apiContact/2e09f945-38f0-4be3-8a0e-c2f093927d5f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:24:00+00:00", - dateModified: "2022-11-23T14:24:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9ac21314-6fdd-4131-912a-d8ed00ae5509", - self: "/apiContact/9ac21314-6fdd-4131-912a-d8ed00ae5509", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:42:14+00:00", - dateModified: "2022-11-23T15:42:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9b53209a-a6b2-4e50-a428-c8bc46bc019d", - self: "/apiContact/9b53209a-a6b2-4e50-a428-c8bc46bc019d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:35:52+00:00", - dateModified: "2022-11-23T17:35:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9fb5de9b-1036-427a-b6a4-e0cc66b22015", - self: "/apiContact/9fb5de9b-1036-427a-b6a4-e0cc66b22015", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:33:57+00:00", - dateModified: "2022-11-23T19:33:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b25ace78-13d8-417f-95b3-e36e87caff37", - self: "/apiContact/b25ace78-13d8-417f-95b3-e36e87caff37", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:36:26+00:00", - dateModified: "2022-11-23T21:36:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "735abe02-491d-47bb-a260-27925a639d9b", - self: "/apiContact/735abe02-491d-47bb-a260-27925a639d9b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:30:26+00:00", - dateModified: "2022-11-23T23:30:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1a754ecd-6d32-4332-a779-06d533d5a985", - self: "/apiContact/1a754ecd-6d32-4332-a779-06d533d5a985", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:28:40+00:00", - dateModified: "2022-11-24T01:28:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e40a24d6-41a6-486b-8fff-29c42ebd6253", - self: "/apiContact/e40a24d6-41a6-486b-8fff-29c42ebd6253", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:28:51+00:00", - dateModified: "2022-11-24T03:28:51+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d17399e5-8498-43ce-9186-39c831b31734", - self: "/apiContact/d17399e5-8498-43ce-9186-39c831b31734", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:28:49+00:00", - dateModified: "2022-11-24T05:28:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e9b1c655-1b04-45bf-8b48-d0727eb61e3e", - self: "/apiContact/e9b1c655-1b04-45bf-8b48-d0727eb61e3e", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:34:45+00:00", - dateModified: "2022-11-24T07:34:45+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b38548de-6b2f-4543-b9ec-fc2fd6a7516b", - self: "/apiContact/b38548de-6b2f-4543-b9ec-fc2fd6a7516b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:32:25+00:00", - dateModified: "2022-11-24T09:32:25+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "6270d331-8167-46c6-8e64-c13e141aaf4d", - self: "/apiContact/6270d331-8167-46c6-8e64-c13e141aaf4d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:31:19+00:00", - dateModified: "2022-11-24T11:31:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1ad7a42c-24e5-4097-bf96-5c9ace18f176", - self: "/apiContact/1ad7a42c-24e5-4097-bf96-5c9ace18f176", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:07:27+00:00", - dateModified: "2022-12-09T11:07:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6c4affb-3431-4bc2-82f1-b8fb1d52077b", - self: "/apiContact/f6c4affb-3431-4bc2-82f1-b8fb1d52077b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:50:21+00:00", - dateModified: "2022-12-09T12:50:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "870a8ecd-84ad-481a-bff8-bdf1752ea1dd", - self: "/apiContact/870a8ecd-84ad-481a-bff8-bdf1752ea1dd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:50:12+00:00", - dateModified: "2022-12-10T14:50:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "fbe31612-c0c8-4ef8-be3b-516fda12816a", - self: "/apiContact/fbe31612-c0c8-4ef8-be3b-516fda12816a", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:55:44+00:00", - dateModified: "2022-12-11T14:55:44+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3f8eb541-5929-4934-8376-14d5d382dd97", - self: "/apiContact/3f8eb541-5929-4934-8376-14d5d382dd97", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:55:23+00:00", - dateModified: "2022-12-12T14:55:23+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "18dd68ae-6ba9-47a6-929a-eabb396f435d", - self: "/apiRating/18dd68ae-6ba9-47a6-929a-eabb396f435d", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:28+00:00", - dateModified: "2022-11-14T13:53:14+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: Challenge-component rated", - "The url: https://github.com/ConductionNL/Challenge-component rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: Challenge-component", - "Dit component ondersteund challanges in de form van bijvoorbeeld kickstarter of https://startupinresidence.com/ rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "53f875f0-8427-4439-87c9-e603c3271b1a", - }, - { - _id: "d20a6201-17e1-4f7a-8c79-a1874399ee67", - _self: { - id: "d20a6201-17e1-4f7a-8c79-a1874399ee67", - self: "/api/oc/components/d20a6201-17e1-4f7a-8c79-a1874399ee67", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:16+00:00", - dateModified: "2022-12-12T14:53:40+00:00", - level: 1, - schema: { id: "db65635d-787e-4f43-a8e1-1a63ad7e55de", ref: "https://opencatalogi.nl/component.schema.json" }, - synchronizations: [ - { - id: "2a2388c7-81e2-427a-8e0e-da1e0bb05547", - gateway: { - id: "ea046fad-14a4-4681-8508-136f52a9e797", - name: "componentencatalogus", - location: "https://componentencatalogus.commonground.nl/api", - }, - endpoint: null, - sourceId: "128", - dateCreated: {}, - dateModified: {}, - lastChecked: {}, - lastSynced: {}, - sourceLastChanged: {}, - }, - ], - }, - applicationId: null, - applicationSuite: null, - url: { - _self: { - id: "73b11792-f01d-45d0-898f-31eed0e398ac", - self: "/apiRepository/73b11792-f01d-45d0-898f-31eed0e398ac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "6349d5b5-000c-4fc7-b750-ed6ef704b2b8", - self: "/api/oc/organizations/6349d5b5-000c-4fc7-b750-ed6ef704b2b8", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:24+00:00", - dateModified: "2022-11-21T11:31:48+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "925e0544-e0f1-433a-b065-9ce74ade4d79", - "6b817cb3-c7de-48fb-a4e5-69ef50b726d5", - "7b265c67-ced6-4a67-8fe1-7dcaacbf0385", - "192e1685-0dd0-4457-abbb-e6276a0fda82", - "c95af8c9-7ac4-481d-9862-14a412036230", - "5febc5c1-1811-4a61-9af6-323514883d57", - "8e4be115-8829-4d23-a4d5-45520ffaadec", - "60c737c9-2a45-4314-b413-354c41baa788", - "39fdb1c9-7c03-45fe-9a86-63c994f71ade", - "3055dd41-347a-42bb-9f1a-816529ce62f0", - "d7dabf73-3b13-4ee4-b7f3-6342a4e079a0", - "5e7f4b64-1a58-4bc7-9229-ff6e2a48764a", - "bad40f1d-e0c1-4e2c-9ce4-3dc92a0eff32", - "dee66480-9800-4c7c-a536-bff08b9f11fa", - "8f873579-a8f8-417b-be60-37f5a4b58f95", - "fc7f5aa0-b542-4a5d-905c-c13ad8619b89", - "802aae9b-957c-4f33-879f-c29cfb3ff9c2", - "c7f1b7fb-50f7-4899-aaae-f8bb68a34d22", - "a77016f6-b109-46f3-bae1-bd01dae7b2d9", - "96061f44-9314-48fe-94e1-f15c3e80badd", - "65697101-9cc9-4cea-a0a2-81a0dca7ba42", - "54b08758-942b-4eab-a532-92ee3eeabf51", - "a1cb6218-c3bc-41cf-9fbe-74631234d127", - "766f2ccc-9c60-4d13-91e1-d169280c367b", - "c3df46ac-98ed-4631-970c-1d6f0ba17da9", - "6aa3dd51-53a3-4e6a-af58-cce8441df6cc", - "703435ea-36b7-4f30-9b72-8abaa94ee279", - "ddfa1a8f-ddf4-4a76-a762-27ea3d9d3bf4", - "d56b6b06-39b7-48d3-8ce4-a97d206eb4ba", - "260eb8c3-7092-4b01-bee9-99d9359c74e0", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "brpservice", - url: "https://github.com/ConductionNL/brpservice", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-10-18T17:35:32Z", - stars: 0, - fork_count: 0, - issue_open_count: 6, - merge_request_open_count: null, - programming_languages: ["267337", "194184", "140404", "86064", "35445", "12089", "3889", "2410", "2038"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "6349d5b5-000c-4fc7-b750-ed6ef704b2b8", - self: "/api/oc/organizations/6349d5b5-000c-4fc7-b750-ed6ef704b2b8", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:24+00:00", - dateModified: "2022-11-21T11:31:48+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "925e0544-e0f1-433a-b065-9ce74ade4d79", - "6b817cb3-c7de-48fb-a4e5-69ef50b726d5", - "7b265c67-ced6-4a67-8fe1-7dcaacbf0385", - "192e1685-0dd0-4457-abbb-e6276a0fda82", - "c95af8c9-7ac4-481d-9862-14a412036230", - "5febc5c1-1811-4a61-9af6-323514883d57", - "8e4be115-8829-4d23-a4d5-45520ffaadec", - "60c737c9-2a45-4314-b413-354c41baa788", - "39fdb1c9-7c03-45fe-9a86-63c994f71ade", - "3055dd41-347a-42bb-9f1a-816529ce62f0", - "d7dabf73-3b13-4ee4-b7f3-6342a4e079a0", - "5e7f4b64-1a58-4bc7-9229-ff6e2a48764a", - "bad40f1d-e0c1-4e2c-9ce4-3dc92a0eff32", - "dee66480-9800-4c7c-a536-bff08b9f11fa", - "8f873579-a8f8-417b-be60-37f5a4b58f95", - "fc7f5aa0-b542-4a5d-905c-c13ad8619b89", - "802aae9b-957c-4f33-879f-c29cfb3ff9c2", - "c7f1b7fb-50f7-4899-aaae-f8bb68a34d22", - "a77016f6-b109-46f3-bae1-bd01dae7b2d9", - "96061f44-9314-48fe-94e1-f15c3e80badd", - "65697101-9cc9-4cea-a0a2-81a0dca7ba42", - "54b08758-942b-4eab-a532-92ee3eeabf51", - "a1cb6218-c3bc-41cf-9fbe-74631234d127", - "766f2ccc-9c60-4d13-91e1-d169280c367b", - "c3df46ac-98ed-4631-970c-1d6f0ba17da9", - "6aa3dd51-53a3-4e6a-af58-cce8441df6cc", - "703435ea-36b7-4f30-9b72-8abaa94ee279", - "ddfa1a8f-ddf4-4a76-a762-27ea3d9d3bf4", - "d56b6b06-39b7-48d3-8ce4-a97d206eb4ba", - "260eb8c3-7092-4b01-bee9-99d9359c74e0", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - landingURL: null, - isBasedOn: null, - softwareVersion: null, - releaseDate: null, - logo: null, - platforms: [], - categories: [], - roadmap: null, - developmentStatus: "stable", - softwareType: null, - intendedAudience: null, - description: { - _self: { - id: "0908f1cc-9e27-4720-b611-eba6ade09a7b", - self: "/apiDescription/0908f1cc-9e27-4720-b611-eba6ade09a7b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "BRP API + STUF,Dit component is dual inzetbaar voor het faciliteren van de Haal Centraal BRP api, het kan zowel los worden gebruikt als development mock (waarbij aan de hand van excel test data kan worden ingelezen) als dat hij in productie kan worden gebruikt als stuf brug (als dan niet met dubbele bevraging)", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "8e01dc53-1d1e-4d7f-9ae6-2298d13a915b", - self: "/apiComponentlegalEntity/8e01dc53-1d1e-4d7f-9ae6-2298d13a915b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "9d55ae48-6491-4337-aead-0dde6c229cbf", - self: "/api/oc/organizations/9d55ae48-6491-4337-aead-0dde6c229cbf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:16:41+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "9d55ae48-6491-4337-aead-0dde6c229cbf", - self: "/api/oc/organizations/9d55ae48-6491-4337-aead-0dde6c229cbf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:16:41+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "485e66b4-952a-4485-a45b-2d6625713107", - self: "/apiComponentnlEntity/485e66b4-952a-4485-a45b-2d6625713107", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "aedeb9dc-d6b7-4cdf-9af8-905fc032647d", - self: "/apiComponentnlEntitycommongroundEntity/aedeb9dc-d6b7-4cdf-9af8-905fc032647d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:16:41+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - embedded: { - commonground: { - _self: { - id: "aedeb9dc-d6b7-4cdf-9af8-905fc032647d", - self: "/apiComponentnlEntitycommongroundEntity/aedeb9dc-d6b7-4cdf-9af8-905fc032647d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:16:41+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - }, - }, - maintenance: { - _self: { - id: "45771241-e268-4f86-bb5e-e87da1cfcc00", - self: "/apiComponentmaintenanceEntity/45771241-e268-4f86-bb5e-e87da1cfcc00", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "d26f2fc5-35f3-4fb1-9a14-5a97d1115bd0", - self: "/apiContact/d26f2fc5-35f3-4fb1-9a14-5a97d1115bd0", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f44f2746-4554-49b9-872a-a710b3ff01ce", - self: "/apiContact/f44f2746-4554-49b9-872a-a710b3ff01ce", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:39+00:00", - dateModified: "2022-10-28T15:16:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "34aa7218-c8d0-4ba0-afd4-c4709dae7bb6", - self: "/apiContact/34aa7218-c8d0-4ba0-afd4-c4709dae7bb6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:52+00:00", - dateModified: "2022-10-28T15:16:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ae6360c3-5160-4ab5-8993-14fbe8c377bd", - self: "/apiContact/ae6360c3-5160-4ab5-8993-14fbe8c377bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:52+00:00", - dateModified: "2022-10-28T15:16:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4980014-05cf-46ca-a1c6-855a8e0dec6b", - self: "/apiContact/e4980014-05cf-46ca-a1c6-855a8e0dec6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:06+00:00", - dateModified: "2022-10-28T15:17:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e64bf3e0-1dee-4ad0-9316-c05d34f9bc16", - self: "/apiContact/e64bf3e0-1dee-4ad0-9316-c05d34f9bc16", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:03:47+00:00", - dateModified: "2022-10-29T00:03:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a370f37-f016-499c-91b6-0c5b56e8bac4", - self: "/apiContact/4a370f37-f016-499c-91b6-0c5b56e8bac4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:15+00:00", - dateModified: "2022-10-30T00:08:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c4095523-299b-4739-ab95-61bbba9be822", - self: "/apiContact/c4095523-299b-4739-ab95-61bbba9be822", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:21+00:00", - dateModified: "2022-10-31T00:09:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b80dfaac-553e-447d-b333-d47bc38ecc28", - self: "/apiContact/b80dfaac-553e-447d-b333-d47bc38ecc28", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:44:55+00:00", - dateModified: "2022-10-31T13:44:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f3af374e-f4f3-49a8-87ac-b100efe924a7", - self: "/apiContact/f3af374e-f4f3-49a8-87ac-b100efe924a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:19:56+00:00", - dateModified: "2022-11-01T13:19:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "462ff6f0-d4e6-44c2-a00e-712de7a1a2d5", - self: "/apiContact/462ff6f0-d4e6-44c2-a00e-712de7a1a2d5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:03:21+00:00", - dateModified: "2022-11-02T14:03:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "137dbaf1-793d-44f5-8ea3-e69e6909d529", - self: "/apiContact/137dbaf1-793d-44f5-8ea3-e69e6909d529", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:43+00:00", - dateModified: "2022-11-03T13:54:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "248387dc-d2e3-4cdd-b91f-ac0557501bf4", - self: "/apiContact/248387dc-d2e3-4cdd-b91f-ac0557501bf4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:01:21+00:00", - dateModified: "2022-11-04T15:01:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "87550b1d-8eea-44aa-bb05-ecd606b7d108", - self: "/apiContact/87550b1d-8eea-44aa-bb05-ecd606b7d108", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:35+00:00", - dateModified: "2022-11-10T10:14:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "77e0eb0f-6baf-4ebe-bdb9-3de20cc96b1d", - self: "/apiContact/77e0eb0f-6baf-4ebe-bdb9-3de20cc96b1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:08:38+00:00", - dateModified: "2022-11-10T13:08:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1661585f-bf65-43a3-92fb-37a6897c7e41", - self: "/apiContact/1661585f-bf65-43a3-92fb-37a6897c7e41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:51:26+00:00", - dateModified: "2022-11-21T12:51:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "242b9083-eb8d-4bc7-a406-0f92c156d0f0", - self: "/apiContact/242b9083-eb8d-4bc7-a406-0f92c156d0f0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:27+00:00", - dateModified: "2022-11-21T12:53:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "51c25bee-fb70-4fe8-9574-374e1892c80f", - self: "/apiContact/51c25bee-fb70-4fe8-9574-374e1892c80f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:04:57+00:00", - dateModified: "2022-11-21T13:04:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c5e64d33-1315-459b-93b7-10f8b7dd583b", - self: "/apiContact/c5e64d33-1315-459b-93b7-10f8b7dd583b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:25:19+00:00", - dateModified: "2022-11-22T15:25:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "669cd402-a88a-4ec1-8154-37750d5ac5e1", - self: "/apiContact/669cd402-a88a-4ec1-8154-37750d5ac5e1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:49:24+00:00", - dateModified: "2022-11-22T16:49:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b3a55d8b-e075-4c0b-826b-6d32d5af8627", - self: "/apiContact/b3a55d8b-e075-4c0b-826b-6d32d5af8627", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:38:40+00:00", - dateModified: "2022-11-22T16:38:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "48363df3-7ea4-42d9-ae5e-126da463160f", - self: "/apiContact/48363df3-7ea4-42d9-ae5e-126da463160f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:52:15+00:00", - dateModified: "2022-11-22T17:52:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "80492e77-ba2a-4e2a-b576-f008596a5337", - self: "/apiContact/80492e77-ba2a-4e2a-b576-f008596a5337", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:22:52+00:00", - dateModified: "2022-11-22T19:22:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "85a79780-dd1c-4ce8-b355-e8a575deab20", - self: "/apiContact/85a79780-dd1c-4ce8-b355-e8a575deab20", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:24:55+00:00", - dateModified: "2022-11-22T21:24:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d63818d6-519a-4625-b803-aab14eac28ed", - self: "/apiContact/d63818d6-519a-4625-b803-aab14eac28ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:23:14+00:00", - dateModified: "2022-11-22T23:23:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "784e888d-72f4-47c9-857d-97fde2b58f65", - self: "/apiContact/784e888d-72f4-47c9-857d-97fde2b58f65", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:23:55+00:00", - dateModified: "2022-11-23T01:23:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "51855d7a-2f70-4487-af7f-401921344931", - self: "/apiContact/51855d7a-2f70-4487-af7f-401921344931", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:24:30+00:00", - dateModified: "2022-11-23T03:24:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c157272-89b8-4917-a3ee-bdae20a51fc7", - self: "/apiContact/2c157272-89b8-4917-a3ee-bdae20a51fc7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:24:39+00:00", - dateModified: "2022-11-23T05:24:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "46a98bad-5981-43a3-8f3d-d8e85c587d6b", - self: "/apiContact/46a98bad-5981-43a3-8f3d-d8e85c587d6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:24:17+00:00", - dateModified: "2022-11-23T07:24:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88a8f50e-131a-4409-ac23-f51ba6e6b828", - self: "/apiContact/88a8f50e-131a-4409-ac23-f51ba6e6b828", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:48:01+00:00", - dateModified: "2022-11-23T08:48:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8aa9f6ba-8678-4df1-8bc6-ae3602f54122", - self: "/apiContact/8aa9f6ba-8678-4df1-8bc6-ae3602f54122", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:38:33+00:00", - dateModified: "2022-11-23T09:38:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d964fb44-650e-41c0-a687-38e0abe1d421", - self: "/apiContact/d964fb44-650e-41c0-a687-38e0abe1d421", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:37:46+00:00", - dateModified: "2022-11-23T10:37:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9ca031c9-b0fc-48b5-bd50-a135913a1067", - self: "/apiContact/9ca031c9-b0fc-48b5-bd50-a135913a1067", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:44:53+00:00", - dateModified: "2022-11-23T11:44:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5e87b786-42c2-4242-8c6a-eafc7558b884", - self: "/apiContact/5e87b786-42c2-4242-8c6a-eafc7558b884", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:31:48+00:00", - dateModified: "2022-11-23T13:31:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d5daae34-95c1-4793-ba19-4ea32f98e7d4", - self: "/apiContact/d5daae34-95c1-4793-ba19-4ea32f98e7d4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:18:13+00:00", - dateModified: "2022-11-23T14:18:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "73aa64f2-22ca-4524-9cb8-ff507bf8f5a6", - self: "/apiContact/73aa64f2-22ca-4524-9cb8-ff507bf8f5a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:38:09+00:00", - dateModified: "2022-11-23T15:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f2bea84b-1c1a-4842-8afb-becfbade51f5", - self: "/apiContact/f2bea84b-1c1a-4842-8afb-becfbade51f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:31:12+00:00", - dateModified: "2022-11-23T17:31:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3d2aa695-6b92-45b0-804a-0f694fa02398", - self: "/apiContact/3d2aa695-6b92-45b0-804a-0f694fa02398", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:29:20+00:00", - dateModified: "2022-11-23T19:29:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f95ada37-fbd6-4b32-ac7c-64ef7dbb6d36", - self: "/apiContact/f95ada37-fbd6-4b32-ac7c-64ef7dbb6d36", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:31:39+00:00", - dateModified: "2022-11-23T21:31:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f23eb68d-fe73-4a55-9f6b-2c9d95c5c5b9", - self: "/apiContact/f23eb68d-fe73-4a55-9f6b-2c9d95c5c5b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:26:18+00:00", - dateModified: "2022-11-23T23:26:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c734438-5b2b-451d-b05d-b14774849437", - self: "/apiContact/2c734438-5b2b-451d-b05d-b14774849437", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:24:33+00:00", - dateModified: "2022-11-24T01:24:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "58ddab3f-3428-4b9c-8f31-21fe5d1572f1", - self: "/apiContact/58ddab3f-3428-4b9c-8f31-21fe5d1572f1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:24:49+00:00", - dateModified: "2022-11-24T03:24:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "627dccce-5e2d-46db-8464-7433838d8351", - self: "/apiContact/627dccce-5e2d-46db-8464-7433838d8351", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:24:42+00:00", - dateModified: "2022-11-24T05:24:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00847089-f007-476f-954d-f8134ae42e34", - self: "/apiContact/00847089-f007-476f-954d-f8134ae42e34", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:30:18+00:00", - dateModified: "2022-11-24T07:30:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d48430ee-160e-4e17-a245-091f7c222f4c", - self: "/apiContact/d48430ee-160e-4e17-a245-091f7c222f4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:28:00+00:00", - dateModified: "2022-11-24T09:28:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a407786f-2036-40e4-9f15-f1cb64e34982", - self: "/apiContact/a407786f-2036-40e4-9f15-f1cb64e34982", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:26:31+00:00", - dateModified: "2022-11-24T11:26:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ff88e4ac-1c60-4615-bd6c-5019048eb9da", - self: "/apiContact/ff88e4ac-1c60-4615-bd6c-5019048eb9da", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:03:54+00:00", - dateModified: "2022-12-09T11:03:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ea7ffd4-1de7-4118-affa-aa04623c74e8", - self: "/apiContact/5ea7ffd4-1de7-4118-affa-aa04623c74e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:48:12+00:00", - dateModified: "2022-12-09T12:48:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "da5e3c94-3193-4dc1-8d0e-257590995944", - self: "/apiContact/da5e3c94-3193-4dc1-8d0e-257590995944", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:47:58+00:00", - dateModified: "2022-12-10T14:47:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "23c2e169-2f6d-4bff-be4e-1bf8b0085131", - self: "/apiContact/23c2e169-2f6d-4bff-be4e-1bf8b0085131", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:53:26+00:00", - dateModified: "2022-12-11T14:53:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6d4fb86-90fb-4f0e-9b7e-c9427788ec80", - self: "/apiContact/f6d4fb86-90fb-4f0e-9b7e-c9427788ec80", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:53:24+00:00", - dateModified: "2022-12-12T14:53:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "d26f2fc5-35f3-4fb1-9a14-5a97d1115bd0", - self: "/apiContact/d26f2fc5-35f3-4fb1-9a14-5a97d1115bd0", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f44f2746-4554-49b9-872a-a710b3ff01ce", - self: "/apiContact/f44f2746-4554-49b9-872a-a710b3ff01ce", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:39+00:00", - dateModified: "2022-10-28T15:16:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "34aa7218-c8d0-4ba0-afd4-c4709dae7bb6", - self: "/apiContact/34aa7218-c8d0-4ba0-afd4-c4709dae7bb6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:52+00:00", - dateModified: "2022-10-28T15:16:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ae6360c3-5160-4ab5-8993-14fbe8c377bd", - self: "/apiContact/ae6360c3-5160-4ab5-8993-14fbe8c377bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:52+00:00", - dateModified: "2022-10-28T15:16:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4980014-05cf-46ca-a1c6-855a8e0dec6b", - self: "/apiContact/e4980014-05cf-46ca-a1c6-855a8e0dec6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:06+00:00", - dateModified: "2022-10-28T15:17:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e64bf3e0-1dee-4ad0-9316-c05d34f9bc16", - self: "/apiContact/e64bf3e0-1dee-4ad0-9316-c05d34f9bc16", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:03:47+00:00", - dateModified: "2022-10-29T00:03:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a370f37-f016-499c-91b6-0c5b56e8bac4", - self: "/apiContact/4a370f37-f016-499c-91b6-0c5b56e8bac4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:15+00:00", - dateModified: "2022-10-30T00:08:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c4095523-299b-4739-ab95-61bbba9be822", - self: "/apiContact/c4095523-299b-4739-ab95-61bbba9be822", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:21+00:00", - dateModified: "2022-10-31T00:09:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b80dfaac-553e-447d-b333-d47bc38ecc28", - self: "/apiContact/b80dfaac-553e-447d-b333-d47bc38ecc28", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:44:55+00:00", - dateModified: "2022-10-31T13:44:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f3af374e-f4f3-49a8-87ac-b100efe924a7", - self: "/apiContact/f3af374e-f4f3-49a8-87ac-b100efe924a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:19:56+00:00", - dateModified: "2022-11-01T13:19:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "462ff6f0-d4e6-44c2-a00e-712de7a1a2d5", - self: "/apiContact/462ff6f0-d4e6-44c2-a00e-712de7a1a2d5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:03:21+00:00", - dateModified: "2022-11-02T14:03:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "137dbaf1-793d-44f5-8ea3-e69e6909d529", - self: "/apiContact/137dbaf1-793d-44f5-8ea3-e69e6909d529", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:43+00:00", - dateModified: "2022-11-03T13:54:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "248387dc-d2e3-4cdd-b91f-ac0557501bf4", - self: "/apiContact/248387dc-d2e3-4cdd-b91f-ac0557501bf4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:01:21+00:00", - dateModified: "2022-11-04T15:01:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "87550b1d-8eea-44aa-bb05-ecd606b7d108", - self: "/apiContact/87550b1d-8eea-44aa-bb05-ecd606b7d108", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:35+00:00", - dateModified: "2022-11-10T10:14:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "77e0eb0f-6baf-4ebe-bdb9-3de20cc96b1d", - self: "/apiContact/77e0eb0f-6baf-4ebe-bdb9-3de20cc96b1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:08:38+00:00", - dateModified: "2022-11-10T13:08:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1661585f-bf65-43a3-92fb-37a6897c7e41", - self: "/apiContact/1661585f-bf65-43a3-92fb-37a6897c7e41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:51:26+00:00", - dateModified: "2022-11-21T12:51:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "242b9083-eb8d-4bc7-a406-0f92c156d0f0", - self: "/apiContact/242b9083-eb8d-4bc7-a406-0f92c156d0f0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:27+00:00", - dateModified: "2022-11-21T12:53:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "51c25bee-fb70-4fe8-9574-374e1892c80f", - self: "/apiContact/51c25bee-fb70-4fe8-9574-374e1892c80f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:04:57+00:00", - dateModified: "2022-11-21T13:04:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c5e64d33-1315-459b-93b7-10f8b7dd583b", - self: "/apiContact/c5e64d33-1315-459b-93b7-10f8b7dd583b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:25:19+00:00", - dateModified: "2022-11-22T15:25:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "669cd402-a88a-4ec1-8154-37750d5ac5e1", - self: "/apiContact/669cd402-a88a-4ec1-8154-37750d5ac5e1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:49:24+00:00", - dateModified: "2022-11-22T16:49:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b3a55d8b-e075-4c0b-826b-6d32d5af8627", - self: "/apiContact/b3a55d8b-e075-4c0b-826b-6d32d5af8627", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:38:40+00:00", - dateModified: "2022-11-22T16:38:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "48363df3-7ea4-42d9-ae5e-126da463160f", - self: "/apiContact/48363df3-7ea4-42d9-ae5e-126da463160f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:52:15+00:00", - dateModified: "2022-11-22T17:52:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "80492e77-ba2a-4e2a-b576-f008596a5337", - self: "/apiContact/80492e77-ba2a-4e2a-b576-f008596a5337", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:22:52+00:00", - dateModified: "2022-11-22T19:22:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "85a79780-dd1c-4ce8-b355-e8a575deab20", - self: "/apiContact/85a79780-dd1c-4ce8-b355-e8a575deab20", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:24:55+00:00", - dateModified: "2022-11-22T21:24:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d63818d6-519a-4625-b803-aab14eac28ed", - self: "/apiContact/d63818d6-519a-4625-b803-aab14eac28ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:23:14+00:00", - dateModified: "2022-11-22T23:23:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "784e888d-72f4-47c9-857d-97fde2b58f65", - self: "/apiContact/784e888d-72f4-47c9-857d-97fde2b58f65", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:23:55+00:00", - dateModified: "2022-11-23T01:23:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "51855d7a-2f70-4487-af7f-401921344931", - self: "/apiContact/51855d7a-2f70-4487-af7f-401921344931", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:24:30+00:00", - dateModified: "2022-11-23T03:24:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c157272-89b8-4917-a3ee-bdae20a51fc7", - self: "/apiContact/2c157272-89b8-4917-a3ee-bdae20a51fc7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:24:39+00:00", - dateModified: "2022-11-23T05:24:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "46a98bad-5981-43a3-8f3d-d8e85c587d6b", - self: "/apiContact/46a98bad-5981-43a3-8f3d-d8e85c587d6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:24:17+00:00", - dateModified: "2022-11-23T07:24:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88a8f50e-131a-4409-ac23-f51ba6e6b828", - self: "/apiContact/88a8f50e-131a-4409-ac23-f51ba6e6b828", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:48:01+00:00", - dateModified: "2022-11-23T08:48:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8aa9f6ba-8678-4df1-8bc6-ae3602f54122", - self: "/apiContact/8aa9f6ba-8678-4df1-8bc6-ae3602f54122", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:38:33+00:00", - dateModified: "2022-11-23T09:38:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d964fb44-650e-41c0-a687-38e0abe1d421", - self: "/apiContact/d964fb44-650e-41c0-a687-38e0abe1d421", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:37:46+00:00", - dateModified: "2022-11-23T10:37:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9ca031c9-b0fc-48b5-bd50-a135913a1067", - self: "/apiContact/9ca031c9-b0fc-48b5-bd50-a135913a1067", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:44:53+00:00", - dateModified: "2022-11-23T11:44:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5e87b786-42c2-4242-8c6a-eafc7558b884", - self: "/apiContact/5e87b786-42c2-4242-8c6a-eafc7558b884", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:31:48+00:00", - dateModified: "2022-11-23T13:31:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d5daae34-95c1-4793-ba19-4ea32f98e7d4", - self: "/apiContact/d5daae34-95c1-4793-ba19-4ea32f98e7d4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:18:13+00:00", - dateModified: "2022-11-23T14:18:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "73aa64f2-22ca-4524-9cb8-ff507bf8f5a6", - self: "/apiContact/73aa64f2-22ca-4524-9cb8-ff507bf8f5a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:38:09+00:00", - dateModified: "2022-11-23T15:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f2bea84b-1c1a-4842-8afb-becfbade51f5", - self: "/apiContact/f2bea84b-1c1a-4842-8afb-becfbade51f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:31:12+00:00", - dateModified: "2022-11-23T17:31:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3d2aa695-6b92-45b0-804a-0f694fa02398", - self: "/apiContact/3d2aa695-6b92-45b0-804a-0f694fa02398", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:29:20+00:00", - dateModified: "2022-11-23T19:29:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f95ada37-fbd6-4b32-ac7c-64ef7dbb6d36", - self: "/apiContact/f95ada37-fbd6-4b32-ac7c-64ef7dbb6d36", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:31:39+00:00", - dateModified: "2022-11-23T21:31:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f23eb68d-fe73-4a55-9f6b-2c9d95c5c5b9", - self: "/apiContact/f23eb68d-fe73-4a55-9f6b-2c9d95c5c5b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:26:18+00:00", - dateModified: "2022-11-23T23:26:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c734438-5b2b-451d-b05d-b14774849437", - self: "/apiContact/2c734438-5b2b-451d-b05d-b14774849437", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:24:33+00:00", - dateModified: "2022-11-24T01:24:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "58ddab3f-3428-4b9c-8f31-21fe5d1572f1", - self: "/apiContact/58ddab3f-3428-4b9c-8f31-21fe5d1572f1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:24:49+00:00", - dateModified: "2022-11-24T03:24:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "627dccce-5e2d-46db-8464-7433838d8351", - self: "/apiContact/627dccce-5e2d-46db-8464-7433838d8351", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:24:42+00:00", - dateModified: "2022-11-24T05:24:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00847089-f007-476f-954d-f8134ae42e34", - self: "/apiContact/00847089-f007-476f-954d-f8134ae42e34", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:30:18+00:00", - dateModified: "2022-11-24T07:30:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d48430ee-160e-4e17-a245-091f7c222f4c", - self: "/apiContact/d48430ee-160e-4e17-a245-091f7c222f4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:28:00+00:00", - dateModified: "2022-11-24T09:28:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a407786f-2036-40e4-9f15-f1cb64e34982", - self: "/apiContact/a407786f-2036-40e4-9f15-f1cb64e34982", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:26:31+00:00", - dateModified: "2022-11-24T11:26:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ff88e4ac-1c60-4615-bd6c-5019048eb9da", - self: "/apiContact/ff88e4ac-1c60-4615-bd6c-5019048eb9da", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:03:54+00:00", - dateModified: "2022-12-09T11:03:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ea7ffd4-1de7-4118-affa-aa04623c74e8", - self: "/apiContact/5ea7ffd4-1de7-4118-affa-aa04623c74e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:48:12+00:00", - dateModified: "2022-12-09T12:48:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "da5e3c94-3193-4dc1-8d0e-257590995944", - self: "/apiContact/da5e3c94-3193-4dc1-8d0e-257590995944", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:47:58+00:00", - dateModified: "2022-12-10T14:47:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "23c2e169-2f6d-4bff-be4e-1bf8b0085131", - self: "/apiContact/23c2e169-2f6d-4bff-be4e-1bf8b0085131", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:53:26+00:00", - dateModified: "2022-12-11T14:53:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6d4fb86-90fb-4f0e-9b7e-c9427788ec80", - self: "/apiContact/f6d4fb86-90fb-4f0e-9b7e-c9427788ec80", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:53:24+00:00", - dateModified: "2022-12-12T14:53:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - localisation: null, - dependsOn: null, - inputTypes: [], - outputTypes: [], - rating: { - _self: { - id: "77f12c18-3459-4e78-a067-f1519bb4d6b4", - self: "/apiRating/77f12c18-3459-4e78-a067-f1519bb4d6b4", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:20+00:00", - dateModified: "2022-11-21T11:31:48+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: BRP API + STUF rated", - "The url: https://github.com/ConductionNL/brpservice rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: BRP API + STUF", - "Dit component is dual inzetbaar voor het faciliteren van de Haal Centraal BRP api", - " het kan zowel los worden gebruikt als development mock (waarbij aan de hand van excel test data kan worden ingelezen) als dat hij in productie kan worden gebruikt als stuf brug (als dan niet met dubbele bevraging) rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - name: "BRP API + STUF", - embedded: { - url: { - _self: { - id: "73b11792-f01d-45d0-898f-31eed0e398ac", - self: "/apiRepository/73b11792-f01d-45d0-898f-31eed0e398ac", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "67770655-bc1c-45b7-939b-2f5897fccdf9", ref: null }, - synchronizations: null, - }, - organisation: { - _self: { - id: "6349d5b5-000c-4fc7-b750-ed6ef704b2b8", - self: "/api/oc/organizations/6349d5b5-000c-4fc7-b750-ed6ef704b2b8", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:24+00:00", - dateModified: "2022-11-21T11:31:48+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "925e0544-e0f1-433a-b065-9ce74ade4d79", - "6b817cb3-c7de-48fb-a4e5-69ef50b726d5", - "7b265c67-ced6-4a67-8fe1-7dcaacbf0385", - "192e1685-0dd0-4457-abbb-e6276a0fda82", - "c95af8c9-7ac4-481d-9862-14a412036230", - "5febc5c1-1811-4a61-9af6-323514883d57", - "8e4be115-8829-4d23-a4d5-45520ffaadec", - "60c737c9-2a45-4314-b413-354c41baa788", - "39fdb1c9-7c03-45fe-9a86-63c994f71ade", - "3055dd41-347a-42bb-9f1a-816529ce62f0", - "d7dabf73-3b13-4ee4-b7f3-6342a4e079a0", - "5e7f4b64-1a58-4bc7-9229-ff6e2a48764a", - "bad40f1d-e0c1-4e2c-9ce4-3dc92a0eff32", - "dee66480-9800-4c7c-a536-bff08b9f11fa", - "8f873579-a8f8-417b-be60-37f5a4b58f95", - "fc7f5aa0-b542-4a5d-905c-c13ad8619b89", - "802aae9b-957c-4f33-879f-c29cfb3ff9c2", - "c7f1b7fb-50f7-4899-aaae-f8bb68a34d22", - "a77016f6-b109-46f3-bae1-bd01dae7b2d9", - "96061f44-9314-48fe-94e1-f15c3e80badd", - "65697101-9cc9-4cea-a0a2-81a0dca7ba42", - "54b08758-942b-4eab-a532-92ee3eeabf51", - "a1cb6218-c3bc-41cf-9fbe-74631234d127", - "766f2ccc-9c60-4d13-91e1-d169280c367b", - "c3df46ac-98ed-4631-970c-1d6f0ba17da9", - "6aa3dd51-53a3-4e6a-af58-cce8441df6cc", - "703435ea-36b7-4f30-9b72-8abaa94ee279", - "ddfa1a8f-ddf4-4a76-a762-27ea3d9d3bf4", - "d56b6b06-39b7-48d3-8ce4-a97d206eb4ba", - "260eb8c3-7092-4b01-bee9-99d9359c74e0", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - component: null, - source: "github", - name: "brpservice", - url: "https://github.com/ConductionNL/brpservice", - avatar_url: "https://avatars.githubusercontent.com/u/46676163?v=4", - last_change: "2021-10-18T17:35:32Z", - stars: 0, - fork_count: 0, - issue_open_count: 6, - merge_request_open_count: null, - programming_languages: ["267337", "194184", "140404", "86064", "35445", "12089", "3889", "2410", "2038"], - topics: [], - content: null, - publiccode_url: null, - default_owner: null, - embedded: { - organisation: { - _self: { - id: "6349d5b5-000c-4fc7-b750-ed6ef704b2b8", - self: "/api/oc/organizations/6349d5b5-000c-4fc7-b750-ed6ef704b2b8", - owner: null, - organization: null, - application: null, - dateCreated: "2022-11-01T00:24:24+00:00", - dateModified: "2022-11-21T11:31:48+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "ConductionNL", - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - owns: [ - "925e0544-e0f1-433a-b065-9ce74ade4d79", - "6b817cb3-c7de-48fb-a4e5-69ef50b726d5", - "7b265c67-ced6-4a67-8fe1-7dcaacbf0385", - "192e1685-0dd0-4457-abbb-e6276a0fda82", - "c95af8c9-7ac4-481d-9862-14a412036230", - "5febc5c1-1811-4a61-9af6-323514883d57", - "8e4be115-8829-4d23-a4d5-45520ffaadec", - "60c737c9-2a45-4314-b413-354c41baa788", - "39fdb1c9-7c03-45fe-9a86-63c994f71ade", - "3055dd41-347a-42bb-9f1a-816529ce62f0", - "d7dabf73-3b13-4ee4-b7f3-6342a4e079a0", - "5e7f4b64-1a58-4bc7-9229-ff6e2a48764a", - "bad40f1d-e0c1-4e2c-9ce4-3dc92a0eff32", - "dee66480-9800-4c7c-a536-bff08b9f11fa", - "8f873579-a8f8-417b-be60-37f5a4b58f95", - "fc7f5aa0-b542-4a5d-905c-c13ad8619b89", - "802aae9b-957c-4f33-879f-c29cfb3ff9c2", - "c7f1b7fb-50f7-4899-aaae-f8bb68a34d22", - "a77016f6-b109-46f3-bae1-bd01dae7b2d9", - "96061f44-9314-48fe-94e1-f15c3e80badd", - "65697101-9cc9-4cea-a0a2-81a0dca7ba42", - "54b08758-942b-4eab-a532-92ee3eeabf51", - "a1cb6218-c3bc-41cf-9fbe-74631234d127", - "766f2ccc-9c60-4d13-91e1-d169280c367b", - "c3df46ac-98ed-4631-970c-1d6f0ba17da9", - "6aa3dd51-53a3-4e6a-af58-cce8441df6cc", - "703435ea-36b7-4f30-9b72-8abaa94ee279", - "ddfa1a8f-ddf4-4a76-a762-27ea3d9d3bf4", - "d56b6b06-39b7-48d3-8ce4-a97d206eb4ba", - "260eb8c3-7092-4b01-bee9-99d9359c74e0", - ], - uses: [], - token: null, - github: "https://github.com/ConductionNL", - gitlab: null, - website: "https://conduction.nl", - phone: null, - email: "info@conduction.nl", - type: "public", - catalogusAPI: "", - }, - }, - }, - description: { - _self: { - id: "0908f1cc-9e27-4720-b611-eba6ade09a7b", - self: "/apiDescription/0908f1cc-9e27-4720-b611-eba6ade09a7b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "ba1b66ce-74b6-4f8d-aa20-040bced5fba6", ref: null }, - synchronizations: null, - }, - localisedName: null, - shortDescription: null, - longDescription: - "BRP API + STUF,Dit component is dual inzetbaar voor het faciliteren van de Haal Centraal BRP api, het kan zowel los worden gebruikt als development mock (waarbij aan de hand van excel test data kan worden ingelezen) als dat hij in productie kan worden gebruikt als stuf brug (als dan niet met dubbele bevraging)", - documentation: null, - apiDocumentation: null, - features: [], - screenshots: [], - videos: [], - awards: [], - }, - legal: { - _self: { - id: "8e01dc53-1d1e-4d7f-9ae6-2298d13a915b", - self: "/apiComponentlegalEntity/8e01dc53-1d1e-4d7f-9ae6-2298d13a915b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "7cb6e907-2873-48b9-8ae7-33658e42a2bf", ref: null }, - synchronizations: null, - }, - license: null, - mainCopyrightOwner: null, - repoOwner: { - _self: { - id: "9d55ae48-6491-4337-aead-0dde6c229cbf", - self: "/api/oc/organizations/9d55ae48-6491-4337-aead-0dde6c229cbf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:16:41+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - authorsFile: null, - embedded: { - repoOwner: { - _self: { - id: "9d55ae48-6491-4337-aead-0dde6c229cbf", - self: "/api/oc/organizations/9d55ae48-6491-4337-aead-0dde6c229cbf", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:16:41+00:00", - level: 1, - schema: { - id: "f1541d7e-4c8a-4e71-98bb-56198b995938", - ref: "https://opencatalogi.nl/organisation.schema.json", - }, - synchronizations: null, - }, - name: "Ruben van der Linde", - description: null, - logo: "https://account.pleio.nl/media/avatars/2019/07/04/60221507/large_jjMfUkz.jpg", - supports: [], - owns: [], - uses: [], - token: null, - github: null, - gitlab: null, - website: null, - phone: null, - email: "ruben@conduction.nl", - type: null, - catalogusAPI: null, - }, - }, - }, - nl: { - _self: { - id: "485e66b4-952a-4485-a45b-2d6625713107", - self: "/apiComponentnlEntity/485e66b4-952a-4485-a45b-2d6625713107", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "b774307f-c584-4589-b1a1-b594e1c50179", ref: null }, - synchronizations: null, - }, - gemma: null, - apm: null, - upl: [], - commonground: { - _self: { - id: "aedeb9dc-d6b7-4cdf-9af8-905fc032647d", - self: "/apiComponentnlEntitycommongroundEntity/aedeb9dc-d6b7-4cdf-9af8-905fc032647d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:16:41+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - embedded: { - commonground: { - _self: { - id: "aedeb9dc-d6b7-4cdf-9af8-905fc032647d", - self: "/apiComponentnlEntitycommongroundEntity/aedeb9dc-d6b7-4cdf-9af8-905fc032647d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:16:41+00:00", - level: 1, - schema: { id: "e6e5a102-85f1-40f5-b4b5-a8e6e0ab4bf0", ref: null }, - synchronizations: null, - }, - intendedOrganisations: [], - installationType: "self", - layerType: "service", - }, - }, - }, - maintenance: { - _self: { - id: "45771241-e268-4f86-bb5e-e87da1cfcc00", - self: "/apiComponentmaintenanceEntity/45771241-e268-4f86-bb5e-e87da1cfcc00", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "20078ed3-8463-41c7-94b8-7a387bb058f7", ref: null }, - synchronizations: null, - }, - type: "internal", - contacts: [ - { - _self: { - id: "d26f2fc5-35f3-4fb1-9a14-5a97d1115bd0", - self: "/apiContact/d26f2fc5-35f3-4fb1-9a14-5a97d1115bd0", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f44f2746-4554-49b9-872a-a710b3ff01ce", - self: "/apiContact/f44f2746-4554-49b9-872a-a710b3ff01ce", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:39+00:00", - dateModified: "2022-10-28T15:16:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "34aa7218-c8d0-4ba0-afd4-c4709dae7bb6", - self: "/apiContact/34aa7218-c8d0-4ba0-afd4-c4709dae7bb6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:52+00:00", - dateModified: "2022-10-28T15:16:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ae6360c3-5160-4ab5-8993-14fbe8c377bd", - self: "/apiContact/ae6360c3-5160-4ab5-8993-14fbe8c377bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:52+00:00", - dateModified: "2022-10-28T15:16:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4980014-05cf-46ca-a1c6-855a8e0dec6b", - self: "/apiContact/e4980014-05cf-46ca-a1c6-855a8e0dec6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:06+00:00", - dateModified: "2022-10-28T15:17:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e64bf3e0-1dee-4ad0-9316-c05d34f9bc16", - self: "/apiContact/e64bf3e0-1dee-4ad0-9316-c05d34f9bc16", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:03:47+00:00", - dateModified: "2022-10-29T00:03:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a370f37-f016-499c-91b6-0c5b56e8bac4", - self: "/apiContact/4a370f37-f016-499c-91b6-0c5b56e8bac4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:15+00:00", - dateModified: "2022-10-30T00:08:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c4095523-299b-4739-ab95-61bbba9be822", - self: "/apiContact/c4095523-299b-4739-ab95-61bbba9be822", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:21+00:00", - dateModified: "2022-10-31T00:09:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b80dfaac-553e-447d-b333-d47bc38ecc28", - self: "/apiContact/b80dfaac-553e-447d-b333-d47bc38ecc28", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:44:55+00:00", - dateModified: "2022-10-31T13:44:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f3af374e-f4f3-49a8-87ac-b100efe924a7", - self: "/apiContact/f3af374e-f4f3-49a8-87ac-b100efe924a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:19:56+00:00", - dateModified: "2022-11-01T13:19:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "462ff6f0-d4e6-44c2-a00e-712de7a1a2d5", - self: "/apiContact/462ff6f0-d4e6-44c2-a00e-712de7a1a2d5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:03:21+00:00", - dateModified: "2022-11-02T14:03:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "137dbaf1-793d-44f5-8ea3-e69e6909d529", - self: "/apiContact/137dbaf1-793d-44f5-8ea3-e69e6909d529", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:43+00:00", - dateModified: "2022-11-03T13:54:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "248387dc-d2e3-4cdd-b91f-ac0557501bf4", - self: "/apiContact/248387dc-d2e3-4cdd-b91f-ac0557501bf4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:01:21+00:00", - dateModified: "2022-11-04T15:01:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "87550b1d-8eea-44aa-bb05-ecd606b7d108", - self: "/apiContact/87550b1d-8eea-44aa-bb05-ecd606b7d108", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:35+00:00", - dateModified: "2022-11-10T10:14:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "77e0eb0f-6baf-4ebe-bdb9-3de20cc96b1d", - self: "/apiContact/77e0eb0f-6baf-4ebe-bdb9-3de20cc96b1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:08:38+00:00", - dateModified: "2022-11-10T13:08:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1661585f-bf65-43a3-92fb-37a6897c7e41", - self: "/apiContact/1661585f-bf65-43a3-92fb-37a6897c7e41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:51:26+00:00", - dateModified: "2022-11-21T12:51:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "242b9083-eb8d-4bc7-a406-0f92c156d0f0", - self: "/apiContact/242b9083-eb8d-4bc7-a406-0f92c156d0f0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:27+00:00", - dateModified: "2022-11-21T12:53:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "51c25bee-fb70-4fe8-9574-374e1892c80f", - self: "/apiContact/51c25bee-fb70-4fe8-9574-374e1892c80f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:04:57+00:00", - dateModified: "2022-11-21T13:04:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c5e64d33-1315-459b-93b7-10f8b7dd583b", - self: "/apiContact/c5e64d33-1315-459b-93b7-10f8b7dd583b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:25:19+00:00", - dateModified: "2022-11-22T15:25:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "669cd402-a88a-4ec1-8154-37750d5ac5e1", - self: "/apiContact/669cd402-a88a-4ec1-8154-37750d5ac5e1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:49:24+00:00", - dateModified: "2022-11-22T16:49:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b3a55d8b-e075-4c0b-826b-6d32d5af8627", - self: "/apiContact/b3a55d8b-e075-4c0b-826b-6d32d5af8627", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:38:40+00:00", - dateModified: "2022-11-22T16:38:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "48363df3-7ea4-42d9-ae5e-126da463160f", - self: "/apiContact/48363df3-7ea4-42d9-ae5e-126da463160f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:52:15+00:00", - dateModified: "2022-11-22T17:52:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "80492e77-ba2a-4e2a-b576-f008596a5337", - self: "/apiContact/80492e77-ba2a-4e2a-b576-f008596a5337", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:22:52+00:00", - dateModified: "2022-11-22T19:22:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "85a79780-dd1c-4ce8-b355-e8a575deab20", - self: "/apiContact/85a79780-dd1c-4ce8-b355-e8a575deab20", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:24:55+00:00", - dateModified: "2022-11-22T21:24:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d63818d6-519a-4625-b803-aab14eac28ed", - self: "/apiContact/d63818d6-519a-4625-b803-aab14eac28ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:23:14+00:00", - dateModified: "2022-11-22T23:23:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "784e888d-72f4-47c9-857d-97fde2b58f65", - self: "/apiContact/784e888d-72f4-47c9-857d-97fde2b58f65", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:23:55+00:00", - dateModified: "2022-11-23T01:23:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "51855d7a-2f70-4487-af7f-401921344931", - self: "/apiContact/51855d7a-2f70-4487-af7f-401921344931", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:24:30+00:00", - dateModified: "2022-11-23T03:24:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c157272-89b8-4917-a3ee-bdae20a51fc7", - self: "/apiContact/2c157272-89b8-4917-a3ee-bdae20a51fc7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:24:39+00:00", - dateModified: "2022-11-23T05:24:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "46a98bad-5981-43a3-8f3d-d8e85c587d6b", - self: "/apiContact/46a98bad-5981-43a3-8f3d-d8e85c587d6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:24:17+00:00", - dateModified: "2022-11-23T07:24:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88a8f50e-131a-4409-ac23-f51ba6e6b828", - self: "/apiContact/88a8f50e-131a-4409-ac23-f51ba6e6b828", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:48:01+00:00", - dateModified: "2022-11-23T08:48:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8aa9f6ba-8678-4df1-8bc6-ae3602f54122", - self: "/apiContact/8aa9f6ba-8678-4df1-8bc6-ae3602f54122", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:38:33+00:00", - dateModified: "2022-11-23T09:38:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d964fb44-650e-41c0-a687-38e0abe1d421", - self: "/apiContact/d964fb44-650e-41c0-a687-38e0abe1d421", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:37:46+00:00", - dateModified: "2022-11-23T10:37:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9ca031c9-b0fc-48b5-bd50-a135913a1067", - self: "/apiContact/9ca031c9-b0fc-48b5-bd50-a135913a1067", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:44:53+00:00", - dateModified: "2022-11-23T11:44:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5e87b786-42c2-4242-8c6a-eafc7558b884", - self: "/apiContact/5e87b786-42c2-4242-8c6a-eafc7558b884", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:31:48+00:00", - dateModified: "2022-11-23T13:31:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d5daae34-95c1-4793-ba19-4ea32f98e7d4", - self: "/apiContact/d5daae34-95c1-4793-ba19-4ea32f98e7d4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:18:13+00:00", - dateModified: "2022-11-23T14:18:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "73aa64f2-22ca-4524-9cb8-ff507bf8f5a6", - self: "/apiContact/73aa64f2-22ca-4524-9cb8-ff507bf8f5a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:38:09+00:00", - dateModified: "2022-11-23T15:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f2bea84b-1c1a-4842-8afb-becfbade51f5", - self: "/apiContact/f2bea84b-1c1a-4842-8afb-becfbade51f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:31:12+00:00", - dateModified: "2022-11-23T17:31:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3d2aa695-6b92-45b0-804a-0f694fa02398", - self: "/apiContact/3d2aa695-6b92-45b0-804a-0f694fa02398", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:29:20+00:00", - dateModified: "2022-11-23T19:29:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f95ada37-fbd6-4b32-ac7c-64ef7dbb6d36", - self: "/apiContact/f95ada37-fbd6-4b32-ac7c-64ef7dbb6d36", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:31:39+00:00", - dateModified: "2022-11-23T21:31:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f23eb68d-fe73-4a55-9f6b-2c9d95c5c5b9", - self: "/apiContact/f23eb68d-fe73-4a55-9f6b-2c9d95c5c5b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:26:18+00:00", - dateModified: "2022-11-23T23:26:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c734438-5b2b-451d-b05d-b14774849437", - self: "/apiContact/2c734438-5b2b-451d-b05d-b14774849437", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:24:33+00:00", - dateModified: "2022-11-24T01:24:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "58ddab3f-3428-4b9c-8f31-21fe5d1572f1", - self: "/apiContact/58ddab3f-3428-4b9c-8f31-21fe5d1572f1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:24:49+00:00", - dateModified: "2022-11-24T03:24:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "627dccce-5e2d-46db-8464-7433838d8351", - self: "/apiContact/627dccce-5e2d-46db-8464-7433838d8351", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:24:42+00:00", - dateModified: "2022-11-24T05:24:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00847089-f007-476f-954d-f8134ae42e34", - self: "/apiContact/00847089-f007-476f-954d-f8134ae42e34", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:30:18+00:00", - dateModified: "2022-11-24T07:30:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d48430ee-160e-4e17-a245-091f7c222f4c", - self: "/apiContact/d48430ee-160e-4e17-a245-091f7c222f4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:28:00+00:00", - dateModified: "2022-11-24T09:28:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a407786f-2036-40e4-9f15-f1cb64e34982", - self: "/apiContact/a407786f-2036-40e4-9f15-f1cb64e34982", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:26:31+00:00", - dateModified: "2022-11-24T11:26:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ff88e4ac-1c60-4615-bd6c-5019048eb9da", - self: "/apiContact/ff88e4ac-1c60-4615-bd6c-5019048eb9da", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:03:54+00:00", - dateModified: "2022-12-09T11:03:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ea7ffd4-1de7-4118-affa-aa04623c74e8", - self: "/apiContact/5ea7ffd4-1de7-4118-affa-aa04623c74e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:48:12+00:00", - dateModified: "2022-12-09T12:48:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "da5e3c94-3193-4dc1-8d0e-257590995944", - self: "/apiContact/da5e3c94-3193-4dc1-8d0e-257590995944", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:47:58+00:00", - dateModified: "2022-12-10T14:47:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "23c2e169-2f6d-4bff-be4e-1bf8b0085131", - self: "/apiContact/23c2e169-2f6d-4bff-be4e-1bf8b0085131", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:53:26+00:00", - dateModified: "2022-12-11T14:53:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6d4fb86-90fb-4f0e-9b7e-c9427788ec80", - self: "/apiContact/f6d4fb86-90fb-4f0e-9b7e-c9427788ec80", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:53:24+00:00", - dateModified: "2022-12-12T14:53:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - embedded: { - contacts: [ - { - _self: { - id: "d26f2fc5-35f3-4fb1-9a14-5a97d1115bd0", - self: "/apiContact/d26f2fc5-35f3-4fb1-9a14-5a97d1115bd0", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-28T15:15:17+00:00", - dateModified: "2022-10-28T15:15:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f44f2746-4554-49b9-872a-a710b3ff01ce", - self: "/apiContact/f44f2746-4554-49b9-872a-a710b3ff01ce", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:39+00:00", - dateModified: "2022-10-28T15:16:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "34aa7218-c8d0-4ba0-afd4-c4709dae7bb6", - self: "/apiContact/34aa7218-c8d0-4ba0-afd4-c4709dae7bb6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:52+00:00", - dateModified: "2022-10-28T15:16:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ae6360c3-5160-4ab5-8993-14fbe8c377bd", - self: "/apiContact/ae6360c3-5160-4ab5-8993-14fbe8c377bd", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:16:52+00:00", - dateModified: "2022-10-28T15:16:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e4980014-05cf-46ca-a1c6-855a8e0dec6b", - self: "/apiContact/e4980014-05cf-46ca-a1c6-855a8e0dec6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-28T15:17:06+00:00", - dateModified: "2022-10-28T15:17:06+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "e64bf3e0-1dee-4ad0-9316-c05d34f9bc16", - self: "/apiContact/e64bf3e0-1dee-4ad0-9316-c05d34f9bc16", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-29T00:03:47+00:00", - dateModified: "2022-10-29T00:03:47+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "4a370f37-f016-499c-91b6-0c5b56e8bac4", - self: "/apiContact/4a370f37-f016-499c-91b6-0c5b56e8bac4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-30T00:08:15+00:00", - dateModified: "2022-10-30T00:08:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c4095523-299b-4739-ab95-61bbba9be822", - self: "/apiContact/c4095523-299b-4739-ab95-61bbba9be822", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T00:09:21+00:00", - dateModified: "2022-10-31T00:09:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b80dfaac-553e-447d-b333-d47bc38ecc28", - self: "/apiContact/b80dfaac-553e-447d-b333-d47bc38ecc28", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-10-31T13:44:55+00:00", - dateModified: "2022-10-31T13:44:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f3af374e-f4f3-49a8-87ac-b100efe924a7", - self: "/apiContact/f3af374e-f4f3-49a8-87ac-b100efe924a7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-01T13:19:56+00:00", - dateModified: "2022-11-01T13:19:56+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "462ff6f0-d4e6-44c2-a00e-712de7a1a2d5", - self: "/apiContact/462ff6f0-d4e6-44c2-a00e-712de7a1a2d5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-02T14:03:21+00:00", - dateModified: "2022-11-02T14:03:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "137dbaf1-793d-44f5-8ea3-e69e6909d529", - self: "/apiContact/137dbaf1-793d-44f5-8ea3-e69e6909d529", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-03T13:54:43+00:00", - dateModified: "2022-11-03T13:54:43+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "248387dc-d2e3-4cdd-b91f-ac0557501bf4", - self: "/apiContact/248387dc-d2e3-4cdd-b91f-ac0557501bf4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-04T15:01:21+00:00", - dateModified: "2022-11-04T15:01:21+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "87550b1d-8eea-44aa-bb05-ecd606b7d108", - self: "/apiContact/87550b1d-8eea-44aa-bb05-ecd606b7d108", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T10:14:35+00:00", - dateModified: "2022-11-10T10:14:35+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "77e0eb0f-6baf-4ebe-bdb9-3de20cc96b1d", - self: "/apiContact/77e0eb0f-6baf-4ebe-bdb9-3de20cc96b1d", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-10T13:08:38+00:00", - dateModified: "2022-11-10T13:08:38+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "1661585f-bf65-43a3-92fb-37a6897c7e41", - self: "/apiContact/1661585f-bf65-43a3-92fb-37a6897c7e41", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:51:26+00:00", - dateModified: "2022-11-21T12:51:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "242b9083-eb8d-4bc7-a406-0f92c156d0f0", - self: "/apiContact/242b9083-eb8d-4bc7-a406-0f92c156d0f0", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T12:53:27+00:00", - dateModified: "2022-11-21T12:53:27+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "51c25bee-fb70-4fe8-9574-374e1892c80f", - self: "/apiContact/51c25bee-fb70-4fe8-9574-374e1892c80f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-21T13:04:57+00:00", - dateModified: "2022-11-21T13:04:57+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "c5e64d33-1315-459b-93b7-10f8b7dd583b", - self: "/apiContact/c5e64d33-1315-459b-93b7-10f8b7dd583b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T15:25:19+00:00", - dateModified: "2022-11-22T15:25:19+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "669cd402-a88a-4ec1-8154-37750d5ac5e1", - self: "/apiContact/669cd402-a88a-4ec1-8154-37750d5ac5e1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:49:24+00:00", - dateModified: "2022-11-22T16:49:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "b3a55d8b-e075-4c0b-826b-6d32d5af8627", - self: "/apiContact/b3a55d8b-e075-4c0b-826b-6d32d5af8627", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T16:38:40+00:00", - dateModified: "2022-11-22T16:38:40+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "48363df3-7ea4-42d9-ae5e-126da463160f", - self: "/apiContact/48363df3-7ea4-42d9-ae5e-126da463160f", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T17:52:15+00:00", - dateModified: "2022-11-22T17:52:15+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "80492e77-ba2a-4e2a-b576-f008596a5337", - self: "/apiContact/80492e77-ba2a-4e2a-b576-f008596a5337", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T19:22:52+00:00", - dateModified: "2022-11-22T19:22:52+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "85a79780-dd1c-4ce8-b355-e8a575deab20", - self: "/apiContact/85a79780-dd1c-4ce8-b355-e8a575deab20", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T21:24:55+00:00", - dateModified: "2022-11-22T21:24:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d63818d6-519a-4625-b803-aab14eac28ed", - self: "/apiContact/d63818d6-519a-4625-b803-aab14eac28ed", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-22T23:23:14+00:00", - dateModified: "2022-11-22T23:23:14+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "784e888d-72f4-47c9-857d-97fde2b58f65", - self: "/apiContact/784e888d-72f4-47c9-857d-97fde2b58f65", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T01:23:55+00:00", - dateModified: "2022-11-23T01:23:55+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "51855d7a-2f70-4487-af7f-401921344931", - self: "/apiContact/51855d7a-2f70-4487-af7f-401921344931", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T03:24:30+00:00", - dateModified: "2022-11-23T03:24:30+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c157272-89b8-4917-a3ee-bdae20a51fc7", - self: "/apiContact/2c157272-89b8-4917-a3ee-bdae20a51fc7", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T05:24:39+00:00", - dateModified: "2022-11-23T05:24:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "46a98bad-5981-43a3-8f3d-d8e85c587d6b", - self: "/apiContact/46a98bad-5981-43a3-8f3d-d8e85c587d6b", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T07:24:17+00:00", - dateModified: "2022-11-23T07:24:17+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "88a8f50e-131a-4409-ac23-f51ba6e6b828", - self: "/apiContact/88a8f50e-131a-4409-ac23-f51ba6e6b828", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T08:48:01+00:00", - dateModified: "2022-11-23T08:48:01+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "8aa9f6ba-8678-4df1-8bc6-ae3602f54122", - self: "/apiContact/8aa9f6ba-8678-4df1-8bc6-ae3602f54122", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T09:38:33+00:00", - dateModified: "2022-11-23T09:38:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d964fb44-650e-41c0-a687-38e0abe1d421", - self: "/apiContact/d964fb44-650e-41c0-a687-38e0abe1d421", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T10:37:46+00:00", - dateModified: "2022-11-23T10:37:46+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "9ca031c9-b0fc-48b5-bd50-a135913a1067", - self: "/apiContact/9ca031c9-b0fc-48b5-bd50-a135913a1067", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T11:44:53+00:00", - dateModified: "2022-11-23T11:44:53+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5e87b786-42c2-4242-8c6a-eafc7558b884", - self: "/apiContact/5e87b786-42c2-4242-8c6a-eafc7558b884", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T13:31:48+00:00", - dateModified: "2022-11-23T13:31:48+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d5daae34-95c1-4793-ba19-4ea32f98e7d4", - self: "/apiContact/d5daae34-95c1-4793-ba19-4ea32f98e7d4", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T14:18:13+00:00", - dateModified: "2022-11-23T14:18:13+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "73aa64f2-22ca-4524-9cb8-ff507bf8f5a6", - self: "/apiContact/73aa64f2-22ca-4524-9cb8-ff507bf8f5a6", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T15:38:09+00:00", - dateModified: "2022-11-23T15:38:09+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f2bea84b-1c1a-4842-8afb-becfbade51f5", - self: "/apiContact/f2bea84b-1c1a-4842-8afb-becfbade51f5", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T17:31:12+00:00", - dateModified: "2022-11-23T17:31:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "3d2aa695-6b92-45b0-804a-0f694fa02398", - self: "/apiContact/3d2aa695-6b92-45b0-804a-0f694fa02398", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T19:29:20+00:00", - dateModified: "2022-11-23T19:29:20+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f95ada37-fbd6-4b32-ac7c-64ef7dbb6d36", - self: "/apiContact/f95ada37-fbd6-4b32-ac7c-64ef7dbb6d36", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T21:31:39+00:00", - dateModified: "2022-11-23T21:31:39+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f23eb68d-fe73-4a55-9f6b-2c9d95c5c5b9", - self: "/apiContact/f23eb68d-fe73-4a55-9f6b-2c9d95c5c5b9", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-23T23:26:18+00:00", - dateModified: "2022-11-23T23:26:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "2c734438-5b2b-451d-b05d-b14774849437", - self: "/apiContact/2c734438-5b2b-451d-b05d-b14774849437", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T01:24:33+00:00", - dateModified: "2022-11-24T01:24:33+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "58ddab3f-3428-4b9c-8f31-21fe5d1572f1", - self: "/apiContact/58ddab3f-3428-4b9c-8f31-21fe5d1572f1", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T03:24:49+00:00", - dateModified: "2022-11-24T03:24:49+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "627dccce-5e2d-46db-8464-7433838d8351", - self: "/apiContact/627dccce-5e2d-46db-8464-7433838d8351", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T05:24:42+00:00", - dateModified: "2022-11-24T05:24:42+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "00847089-f007-476f-954d-f8134ae42e34", - self: "/apiContact/00847089-f007-476f-954d-f8134ae42e34", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T07:30:18+00:00", - dateModified: "2022-11-24T07:30:18+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "d48430ee-160e-4e17-a245-091f7c222f4c", - self: "/apiContact/d48430ee-160e-4e17-a245-091f7c222f4c", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T09:28:00+00:00", - dateModified: "2022-11-24T09:28:00+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "a407786f-2036-40e4-9f15-f1cb64e34982", - self: "/apiContact/a407786f-2036-40e4-9f15-f1cb64e34982", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-11-24T11:26:31+00:00", - dateModified: "2022-11-24T11:26:31+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "ff88e4ac-1c60-4615-bd6c-5019048eb9da", - self: "/apiContact/ff88e4ac-1c60-4615-bd6c-5019048eb9da", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T11:03:54+00:00", - dateModified: "2022-12-09T11:03:54+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "5ea7ffd4-1de7-4118-affa-aa04623c74e8", - self: "/apiContact/5ea7ffd4-1de7-4118-affa-aa04623c74e8", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-09T12:48:12+00:00", - dateModified: "2022-12-09T12:48:12+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "da5e3c94-3193-4dc1-8d0e-257590995944", - self: "/apiContact/da5e3c94-3193-4dc1-8d0e-257590995944", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-10T14:47:58+00:00", - dateModified: "2022-12-10T14:47:58+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "23c2e169-2f6d-4bff-be4e-1bf8b0085131", - self: "/apiContact/23c2e169-2f6d-4bff-be4e-1bf8b0085131", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-11T14:53:26+00:00", - dateModified: "2022-12-11T14:53:26+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - { - _self: { - id: "f6d4fb86-90fb-4f0e-9b7e-c9427788ec80", - self: "/apiContact/f6d4fb86-90fb-4f0e-9b7e-c9427788ec80", - owner: null, - organization: "http://api/admin/organizations/a1c8e0b6-2f78-480d-a9fb-9792142f4761", - application: { __initializer__: {}, __cloner__: {}, __isInitialized__: false }, - dateCreated: "2022-12-12T14:53:24+00:00", - dateModified: "2022-12-12T14:53:24+00:00", - level: 1, - schema: { id: "d395971c-8964-4cda-bfa9-f161e4369fc2", ref: null }, - synchronizations: null, - }, - name: "Ruben van der Linde", - email: "ruben@conduction.nl", - phone: null, - affiliation: null, - }, - ], - }, - }, - rating: { - _self: { - id: "77f12c18-3459-4e78-a067-f1519bb4d6b4", - self: "/apiRating/77f12c18-3459-4e78-a067-f1519bb4d6b4", - owner: null, - organization: null, - application: null, - dateCreated: "2022-10-31T10:42:20+00:00", - dateModified: "2022-11-21T11:31:48+00:00", - level: 1, - schema: { id: "643a881c-0760-4a3c-a490-03ff2fa0d255", ref: null }, - synchronizations: null, - }, - rating: 8, - maxRating: 27, - results: [ - "The name: BRP API + STUF rated", - "The url: https://github.com/ConductionNL/brpservice rated", - "Rated the repository because it is public", - "Cannot rate the landingURL because it is not set", - "Cannot rate the softwareVersion because it is not set", - "Cannot rate the releaseDate because it is not set", - "Cannot rate the logo because it is not set", - "Cannot rate the roadmap because it is not set", - "The developmentStatus: stable rated", - "Cannot rate the softwareType because it is not set", - "Cannot rate the platforms because it is not set", - "Cannot rate the categories because it is not set", - "Cannot rate the localisedName because it is not set", - "Cannot rate the shortDescription because it is not set", - "The longDescription: BRP API + STUF", - "Dit component is dual inzetbaar voor het faciliteren van de Haal Centraal BRP api", - " het kan zowel los worden gebruikt als development mock (waarbij aan de hand van excel test data kan worden ingelezen) als dat hij in productie kan worden gebruikt als stuf brug (als dan niet met dubbele bevraging) rated", - "Cannot rate the apiDocumentation because it is not set", - "Cannot rate the features because it is not set", - "Cannot rate the screenshots because it is not set", - "Cannot rate the videos because it is not set", - "Cannot rate the license because it is not set", - "The repoOwner is rated", - "Cannot rate the authorsFile because it is not set", - "The type: internal rated", - "Cannot rate the contractors because it is not set", - "The contacts are rated", - ], - }, - }, - id: "d20a6201-17e1-4f7a-8c79-a1874399ee67", - }, - ], - count: 10, - limit: 10, - total: 1310, - offset: 0, - page: 1, - pages: 131, -}; diff --git a/pwa/src/data/organizations.ts b/pwa/src/data/organizations.ts deleted file mode 100644 index f54335409..000000000 --- a/pwa/src/data/organizations.ts +++ /dev/null @@ -1,128 +0,0 @@ -export const TEMPORARY_ORGANIZATIONS = [ - { - id: "15b60e7c-e3ee-4a00-93ff-dc8032ae91fb", - objectType: "organization", - catalogusAPI: null, - description: - "Conduction is een ICT bedrijf met een sterke idealistische en sociale inslag, waarbij mens en community centraal staan.", - email: "info@conduction.nl", - github: "https://github.com/ConductionNL", - gitlab: null, - logo: "https://avatars.githubusercontent.com/u/46676163?v=4", - name: "ConductionNL", - owns: [ - "b0a9e408-9508-4e42-a19a-936b6b88c9bb", - "ea1ba85c-fed9-417f-9a3c-6d7cf712ab71", - "b6dd1e9d-bf63-4de0-9d56-b76a53e515b4", - "f3c9fdf8-0ad3-4988-aaa9-eb384ba051a4", - "003b5558-7c9b-4cb5-b130-cd1e72500b1a", - "22cbbb2c-1356-4eeb-8475-ab8af3e0b252", - "90b90578-6332-4873-8309-834abd861d84", - "5cd4ee89-9dde-4d28-80c2-97a289b64483", - "04a07596-97d5-4321-83e8-1083d0a1b0f8", - "f4b5a68e-ad3b-4e8e-a255-a6a8b46c9d70", - "0f0609a4-3da7-42de-bd0f-0c8cf2d4364e", - "d6ade06e-45db-40fa-8527-2e75e5c998bf", - "ea1b246d-858d-4bd7-a7d4-537d2bbdf89d", - "ced0f835-3a23-499d-8ac2-415bcd632574", - "83d75537-f691-46c3-8921-607f55af32cc", - "e6110d81-b1ae-4d2e-acf5-e52c4bfa6de7", - "d6342d11-f48c-4fc9-8420-5de4c5d4bbd4", - "b7d0ec5c-6a34-4202-8b52-663b6f18de0c", - "20ce6792-5642-44c1-9830-86c0693477e2", - "1d343b42-3c37-44d8-a13a-d71faf09bcba", - "4f01c0c4-5061-4f10-996b-f954a81baec7", - "a5df58c7-10dc-4ed9-9d99-ee858c275e27", - "37ad3a0d-d4f9-4bb3-b0a0-119e01b9ae56", - "4f827d80-fc0a-4618-ae3a-d9805f086dd3", - "1c09dee9-d9fd-4ea6-bfdd-b04ecee4346d", - "b5dea1c9-fbf3-4103-977f-5872c9b0e8b3", - "2b9b5024-71eb-487f-b7dc-85b4b8bdc422", - "5f8d97a4-16f7-4a2f-b92e-5af24562f83b", - "f5e43305-0acb-48ff-a26d-6a7af74f7991", - "027b7fd7-27b7-4607-8ef9-3da4ca06e871", - ], - phone: null, - supports: ["https://github.com/OpenCatalogi/web-app", "https://github.com/CommonGateway/gateway"], - token: null, - type: "public", - uses: [], - website: "https://conduction.nl", - }, - { - id: "963a2d50-0065-44af-8aa6-f8e3db4344f8", - catalogusAPI: null, - objectType: "organization", - name: "Gemeente Rotterdam", - description: - '"Een stad waar je ruimte ervaart. Bij een organisatie die je vrijheid en verantwoordelijkheid biedt. Voor werk waar je uitdaging voelt. Zodat jij en de stad blijven groeien. Voor en met alle Rotterdammers." Bij een stad die je elke dag uitdaagt en het beste in jou naar boven haalt, hoort een eigentijdse overheid die meebeweegt met de energie van de stad. Zo’n organisatie wil de gemeente Rotterdam zijn. Daarom bieden we je ruimte en kansen om Rotterdam en daarmee jezelf vooruit te blijven helpen. Wij creëren de voorwaarden zodat jij de ruimte ervaart om te groeien: in de stad en binnen de eigen organisatie. In een omgeving met collega’s die veilig en vertrouwd voelt. Waar we samen beslissen en samen aanpakken.', - logo: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASAAAACvCAMAAABqzPMLAAAAkFBMVEX///8CgjcAgTQAfi0AfzAAeBwAeiIAgDIAfCcAeyUAfSoAdhYAeR75/PoAdhT0+PUZiELt9O9opnqPu5yDtJHl7+iawaWz0LvO4NPd6uFUnGoxjlDA2MdDlV2ry7Rio3UAcgB4rYaRvJ2GtpTV5dm81cMpjEqkx657sIpGll9an24AawDJ3s9Fll46kVZvqoERGXoGAAAQMElEQVR4nO1d6YKivBIlKyFBFhURtcUNUYdP3//tbhJQUNG2Z6Zvq5Pzx9YGJMdKpbYUlmVgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBg0EQ4+ek7eHZE69VP38IPoDMsks6Dx2a/Uv9bb+Z74f/G7+unHqWuF2yKhw7fczH4+pc8B4bprPvlkzoIAQWIqD14QI4mFDDwGJdPhuGeYJF8+bRixpENSo446X1+AoIAivQ3bvBn0UmFDez9b5w5HGw+BOVQc8TZ9LPjN0riEIx+46t+EENH3TbPf/v83lqUHNHxJ1I4cbS0ka8L6w8i9srBDf/gGtECuFgN3es3Pg2z/qF3xkVIyvlIwz/4su9ANM1uLbCFVyoR9yG598MoClsvVaQeV4IIysUwmR5s4SDEZ2frFi+/DK+/cvffj2zGHG/Z/r9KgQD3vtiv4uVu7QiiIZz1qJ8XF2IQ9hwmlbDXS/KdQxiuLjxrXnhb6XTnuZb7vRJ/tm775WNa3jG4o2GHvQ/PZeg4Yj1JbMSo4LvBufE0BRQCTjmujwS8+cscUPWp+6h1+X/BXEs2Dlr+1T/eMQTt52ZdSrkN2oE5JaO8OTmztQvPj4Hjtq9jv70mfAc6gaOGyA/X/+rx02C31//NUuFgcB82E0FTFU/GFxR5bV8Hn0wLDbaEYuBd65mhqMUBT5ty78c32IE2xghhbJ94kFYiWNRyNDmXItG46vIoQcB7toXMmqQeG11/PEL1yBkZLeJhkiTDuD9uYQdKxUME+Nh1D4duul27wnV4qZogF/u4/q6A1hSJxrdtTt9Gn9DlCLu/WtbyADUowJxJ79OlDF1oEkmOI4LDxdLVSbJBCkSppGyHbE4imgHneAWnccLuRPpzKaEjssX1Z50PCj6DmkObm6ZUOOntPaooReLjFBabcqbPtZtiG5x45y238qwYeHcVsZw948FnzkGnWAaCYWBTcLIXBi6/EJWOd7oqf8C3fRqE6U2KJDvrwYPOpZ91lbvO2DH00enL6zZ1dFELK38uU/Ec1wtIIh2FS60jgSlafiI7nVWWLw+j7X6836ab5VYP3u1VrITprKlr6kXsnmH640h+kW0vuxALfxBcWnjc291dajrFIIWCOhxh24YQ2jY66nZOjhSd8dswxp9xFTuiI+Rq5RAy7vamk1USRUlSZHl/e0YQpmBwL4I8VIqZ4xaxu6SoxqSxHJBnDgpNS+sQlos6IS5VYtAc6yfCMzk4btuURMxhOuyBGAGH7PK0ceMUp+26T4OFdz24pvDw3h07dzWnFLWcBinaTCfTrnAEPMQtApI1BAg/eeA1FrdXdra9+ulrdPKAtLEjlcq6Oi2M29ntNGXOufMdT4FwS26oD3RuwUXDhpqNNoS1n4ac2PoEo+ZvQv/6iP46irXbHsWg85NynhwYmZFjMFbaAu3CI1Vu+ml8Z+M0juc3wnfPhcmHuHK5tDSI0WIa58stoYi7R4Mu2t22Jr3PjZqle0bo1+Nloz8Jmv8ukiWibRzZnDGGbOmCLauR+Ifb/giCn2cpDmcO39cjrp0xn/1M9cOwD+r48Rkwxad06ULcmlxySo4+FYdozJtnnAUZH0IIsFwlvzy4v4RoepAGcTPoDG1ORXr6xQrAbtIDvQekobgwK9AX50umV5TP14FvhD/M+7s1FypvIQgY9Wo7sdMV8vZg++rFgoeSgLuL+YndIH9YDckb0Cc9RQCg4/v++Z2vEJKzjYz37HqJx2eJwjsIryxTyMjhMTGasmp606f0b1ceRF5XDyXK16QpCTb572GHqs8vGZITzQW9T+UvBkfzAN/Iu/wwKCX92jJejY6mEOTi47a75k+WwTl5tRaDvPEnCZZ3nL5kyU+RWw6eLsyvsZiez7jkoHxbKoLbgaJsEwgH8fN6o+lxnYfb3G2IE0RU7JfxdZlalG1A7dUgb/O3RvT9SIrJ6l4kpHL0vXMROoWbnKm1oGfqzEaOK9h41J1v+v3+ZjNPt4FwnaOFJjl0+s8pPr+HSk+h8zxlQY58KObywL00PKFKt5XAJ4tDBU7s+RMH134Hx5Ff5AZPzirUOfBi1xrlrelSSTiy37QFTl4cRyLQ/Ozj6LTUVzlwfxCQc0cHSxfHUTE8OeHSfl68Hzcap7lzIUKbk24Wx2hQsrTdmiN8mE6n8WSYvJPCacGJIHS+8nRqh5XWSn61BOQ41/jhn6g1PxF0WVKTn0JC+KP5eTIYCx3LVnmmTfFUpUPfgZqgy4qkOrNELzLPftxlrkrxV3ZRbUf40Wr4ZlPuNkH1Ug+802TqgO1gqKQmyXdMR150FQnB6/UaqKo/6rVUpbwybhN0qlE8m36r9YwIsOvnk1USb+rcEIRVCKGlrumlcYegeqkHqJH4KbYex4jLFb4ldge9N7MT7xFUFykCQJrxr6hPaWtMFzrB21lD7QSt8n6626UNFsi57s1SchUgxxQ/ZaHVn6GFoIkcPJMuFj6LJ12FpovlWDqpjCt/jDOH8MNbblO8IigG7dOHtWXHkizvbebzTS+fvN3cqnBBUAjoLafU+4lc18/jUoKmN0slIHp7q7kNV1NseFl9fwJ6MxPwMdiXBFkRuJWWdd9wkfoMIb8iyOrsr7IasDSUvXfVxLfgL2uN07SD0jrWgUtPa78fAyoE/Ll7/b9Ce9/+pCuaGYumodjTxEHu8m5eu+edJH43R+IGYrbf44v9HeeuRuxBSPHynwiJtSFxrgpALnyxFRm/pWH8KPz1JUOXzuqbxb2+jpFznyCDOTEE3Ud+5lXQf9JOvo9C1DvCHqk9+/cQYRX3QZzSt6o3+IvwB/M0nQ/+zUCGgYGBgYGBgcE/iTB65T6a3418LwgRLP2+iFfyyqHGle2UuRxMxt/jYfmHXy8cbSw8CGxGiMsgwN53/NLRDDmvS1AoAODrOPSjacB4SyevP0dEwAsTtMN1OVivLlnpXDZUDC9eFfywmX2/fYoLnDr9096p8WkRem0t8qZrjwhQ1qpuDt0iHHlCzKUsbD3hHuujF0AQb3zcB5ft5Sm43Cbc63Yza06Et40sa9JNMbBHB/0rTD7kUXzzQhzlrKWXzdaFNsKQ6U1ca04XSPdqHK/05mimy6BDwCBGNnTLWZkSG8pTOFfJ5hGjvUDlGLGIrFzv07OR6pc3F+VRnzS+fCYc0HWrli4DzscyJWXT0TEEiBOVU4UOF2qTF1EKJbABSZcfDnCURPWp5G/ZJcBW4jiyJSFEUF3Mmc9UXpqRX5Y1IFLdLQ9UXullKmNGuGxklx40un1ps3jl1veCADfTBKlisaVkyJGTbo50Z4WcAt20ocfVpg05Ubna4JoQtWFMEYTSjjXkqktex19J9mI/VJ179C6qyAHsZZqcbe2yV6Snawwx36taVVi2n04x7iqCygQPq3bEE71LYwxRWWKHVB+zAa+SQBukWlpKgvQ2+CXSPbwit1zFpgwgfdSCP1srytsYVX3IZg5j0hCypX7Z23C77Pf7yy1U4xhDrPdfrmG5iS6AiiAP4K4+aK3e7jD80O92NmCKIFtrJslIk6A5gmN9VGqfdfB8amxQ2So4lsgCqAiCEEC9NRDqBa6VINU7GlcHyY/3x1OkSU40QTppdkGQ/DFOR4lXUUIxa7Ssw1qCJC2YVK2T3TsE8eogr6sIsqt3ShnfIEiaXPB01KsQpJoCsOpmV64maGufbQW7NcVYo4tSqa1OuEHQBsFvsdS/FykCeKwZ8oNSBy04cEsjWJu/7QRt7VMRp1UykZze3SIokytfaVG/km+vfDGb9uNs6cCSIF8a1zjz/WE6Uxsu2gmaCMnr0A8n41lUbjdk0p9bHXQT90uCpHm0SxLfsiGgeegnm9lLtGCqoLx51eEOAec/raRV6TOU7j3FUA2+nSArdQCkhDgQY/kuUzNVnoJ0E/cLgiz1G7izlTWcweNRr1SalwQusm3MvHziUW3qTD1uQ4gZUU5IQIl2o+SrJsqmQm94nnvS0YCIAj2rMsGwOkXXNGzd0gGZemymCFooK0tFUgq1Iwra/FYP/mdF0R/9lw5CK5lOS83rD0brcVr2uImn00n1WjRfrWS5Dfanfoodecp6V7avzKrrJNO47H0x2aRdXe7QyXfr9WhgKh8MDAwMDJ4VqlXaT9/D30MxOOJm4qFOuj7mIixmymN9F/QIr0BpeyvD5a/KbAnTx6I4A372uI0Xh3rejObHBqCta+vK5dUO76mHHtvd9HYEcT3DRtLh9K51h3LBS4L6CP6jBFWjkeNqeaLKxAGkpG357xJUBczcqnVbtPwA61QrpEmushiDPLby6cgGcJpr13SSBmi80emiziDPfSueH9S76SjYL638SFB8GINgVDbVDfN8YCXdIOhKd1+9Hl5ku2aDIA6wImhR+vJUtdXo6maHnG4tzlQJCBMqX7Ml2LZtpD13f8Zm0d5F3tDqjKn01TnYlKmkAXGQbUObOYqKZMa8QmoxiGareCaPQ99SKPH3URMUuTrjNRBANfZBwGa+1dWdlBnZWo7ur0A9SdCHnIvgP/XELqnUfQJwKg8WQ+sDAUiFqzpUCBXMhYjwgOCyI1XiqhavrqMyAYy57GW2C0mCSCgtO78IIJCjVEFqNOmEBwZQ11oVCwRYVqysYtjFAA6LxIrdcr/3CANXEwQwpqPRqiByzCsr+igJsopfehLuJJGdkiA3jwqVM6HTKFNJxZeYZGqZ13kGCgH6T793tZ7ZYr2oZVdKem/jshOgC2hWErRVMpjiasioeuxYOf7C0cugJEinGo9pFKmo3JeYY/Vj/gBVwfv9MRovly86KQk6X+Y9gHpZHMeTAPKeJojr/2NYpgt1QrW6+io/SMGsCNIPtFnR8qmvQ/rZszufBIogx9F7dvW6hY6PDZEqSdV9XBEUEfUcCQWoktA+OTYMFACVDailkGiCkq5umwNOBCliXpEgNZouAlRLvFzKyhSXJEKZRa0EMbeEd1AEVfUzAlTp+oqghYdsRvgHfH2C5MzqOFUh1RhWXfsLqp+wckWQ7wEWJxUiTVDpwzGAd/qPheZ85QG8jyPFxDsQpNYmXcHSR6B8nLVctFQ30lpJH3VQACsidEOGmiBpSJZHquVQ02Srdxl7D4L0qpXo6iCoTMQBBVgltyRBFQGSOqqGlMtP5vKU8KAeAlUTFMszPuTnXV0WpAqKdLHLGsrT/DcgKBTAVuvXhgJIIOUA6t4tQ61yVHxnII07V8j5F2CASGAThLZNgtTn2F07qFzmM1dO2v6cq1WSBC9MEEWz0pIeEESUli0f0wJ5qbStgEMIZ5YyjZWDoHLTayrdMvWQu1y5GujYEjBEXH6KydRF6vixIw/nZD5iiI+lZCLdMnHlId27a+i9iK8RH+bdyhebz+ddpUSK1BHeenF8rs08gIE2cJJU/qVX8uleCC9Y6lTgYX56QkRnCTyyi0J5SfW2Bz0vyK2evO7SiuRxSmKOr8lh/iruahs+r955qL6n8ypVQAYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBgYGBq+H/wF5pAk5tcLN0wAAAABJRU5ErkJggg==", - supports: [" 497f6eca-6276-4993-bfeb-53cbbbba6f08"], - owns: ["497f6eca-6276-4993-bfeb-53cbbbba6f08"], - uses: ["497f6eca-6276-4993-bfeb-53cbbbba6f08"], - token: "", - github: "https://github.com/OpenCatalogi", - gitlab: "https://github.com/OpenCatalogi", - website: "https://www.rotterdam.nl", - phone: "+31 10 267 16 25", - email: "info@rotterdam.nl", - type: "public", - }, - { - id: "d1635c51-6323-4bd3-842a-79411a166e15", - catalogusAPI: "", - objectType: "organization", - name: "Gemeente Den Haag", - description: - "Voor de gemeente Den Haag is het simpel: gelijke kansen voor iedereen en een open organisatie waar mensen zich prettig en veilig voelen. We zijn ervan overtuigd dat we met een diverse en veelvormige organisatie de belangen van onze burgers het beste kunnen behartigen en voorbereid zijn op ontwikkelingen in de samenleving. We willen goede contacten met de medewerkers en de bewoners, slagvaardig werken en als goed werkgever potentieel talent beter binnenhalen én vasthouden. Als het gaat om de afkomst van onze medewerkers willen we zoveel mogelijk een afspiegeling zijn van de veelvormige Haagse samenleving. Wie bij ons op hogere functies solliciteert, doet dat anoniem. Zo speelt de afkomst van sollicitanten geen rol in de beoordeling van hun geschiktheid.", - logo: "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Compact_Logo_gemeente_Den_Haag.svg/1200px-Compact_Logo_gemeente_Den_Haag.svg.png", - supports: [" 497f6eca-6276-4993-bfeb-53cbbbba6f08"], - owns: ["497f6eca-6276-4993-bfeb-53cbbbba6f08"], - uses: ["497f6eca-6276-4993-bfeb-53cbbbba6f08"], - token: "", - github: "", - gitlab: "https://github.com/OpenCatalogi", - website: "https://www.denhaag.nl", - phone: "+31 70 353 30 00", - email: "info@denhaag.nl", - type: "public", - }, - { - id: "ac13ba7e-33a8-4330-9e89-55f39a2eedaa", - catalogusAPI: "", - objectType: "organization", - name: "Gemeente Utrecht", - description: - '"Utrecht, een stad waar we samen aan bouwen" Utrecht is een thuis voor ruim 350.000 inwoners. We zijn een stad met ambitie, waar we verschillen vieren en talent een kans krijgt. Kortom, een plek waar alles én iedereen samenkomt. Midden in het land. Bij ons werk je voor een van de meest aantrekkelijke steden van Nederland. En zorg je dat alle inwoners van Utrecht prettig en gezond kunnen wonen, werken en meedoen. Door jouw talenten in te zetten en te ontwikkelen.', - logo: "https://huisstijl.utrecht.nl/fileadmin/uploads/documenten/zz-huisstijl/logo/logo-gemeente-utrecht-nederlands-groot-1200.png", - supports: [" 497f6eca-6276-4993-bfeb-53cbbbba6f08"], - owns: ["497f6eca-6276-4993-bfeb-53cbbbba6f08"], - uses: ["497f6eca-6276-4993-bfeb-53cbbbba6f08"], - token: "", - github: "https://github.com/OpenCatalogi", - gitlab: "https://github.com/OpenCatalogi", - website: "https://www.utrecht.nl", - phone: "14 030", - email: "info@utrecht.nl", - type: "public", - }, - { - id: "1eddcf86-ba15-47ac-8358-541d7a01d704", - catalogusAPI: "", - objectType: "organization", - name: "Gemeente Amsterdam", - description: - "Alles wat we doen, doen we voor de Amsterdammers. Dag in, dag uit werken we met meer dan 18.000 collega's aan een betere stad voor bewoners, ondernemers en bezoekers. Dat doen wij niet alleen. Samen met betrokken bewoners, maatschappelijke instanties en externe partners pakken we iedere opgave in de stad aan. Van het verbeteren van de (digitale) dienstverlening bij de Stadsloketten tot het organiseren van internationale evenementen zoals Amsterdam Dance Event. Van het bouwen aan een circulaire economie, waarin innovatie en duurzaamheid centraal staan tot de noodopvang voor vluchtelingen. Amsterdam is een stad van kansen en mogelijkheden, waarbij geen opgave te groot is.", - logo: "https://geocraft.nl/wp-content/uploads/2018/10/logo-gemeente-amsterdam.png", - supports: [" 497f6eca-6276-4993-bfeb-53cbbbba6f08"], - owns: ["497f6eca-6276-4993-bfeb-53cbbbba6f08"], - uses: ["497f6eca-6276-4993-bfeb-53cbbbba6f08"], - token: "", - github: "https://github.com/OpenCatalogi", - gitlab: "https://github.com/OpenCatalogi", - website: "https://www.amsterdam.nl/", - phone: "14 020", - email: "info@amsterdam.nl", - type: "public", - }, -]; diff --git a/pwa/src/layout/Head.tsx b/pwa/src/layout/Head.tsx index 1d1c19774..a4c7b6901 100644 --- a/pwa/src/layout/Head.tsx +++ b/pwa/src/layout/Head.tsx @@ -4,7 +4,11 @@ import { Helmet } from "react-helmet"; export const Head: React.FC = () => { return ( - + OpenCatalogi diff --git a/pwa/src/layout/Layout.tsx b/pwa/src/layout/Layout.tsx index 4e28c83a3..37ad12937 100644 --- a/pwa/src/layout/Layout.tsx +++ b/pwa/src/layout/Layout.tsx @@ -8,7 +8,6 @@ import { GatsbyProvider, IGatsbyContext, TScreenSize } from "../context/gatsby"; import { HeaderTemplate } from "../templates/templateParts/header/HeaderTemplate"; import { FooterTemplate } from "../templates/templateParts/footer/FooterTemplate"; import { FiltersProvider, IFilters, baseFilters as _filters } from "../context/filters"; -import { ThemeProvider } from "../styling/themeProvider/ThemeProvider"; import { useTranslation } from "react-i18next"; import _ from "lodash"; import { Head } from "./Head"; @@ -16,7 +15,7 @@ import { getScreenSize } from "../services/getScreenSize"; import Favicon from "react-favicon"; import Logo from "../assets/images/logo_OpenCatalogi.png"; import { ToolTip } from "@conduction/components"; -import { ThemesContextProvider, IThemesContext, baseThemesContext as _themesContext } from "../context/theme"; +import { Document } from "@utrecht/component-library-react/dist/css-module"; export const TOOLTIP_ID = "cb8f47c3-7151-4a46-954d-784a531b01e6"; @@ -28,7 +27,6 @@ interface LayoutProps { const Layout: React.FC = ({ children, pageContext, location }) => { const [filters, setFilters] = React.useState(_filters); - const [themeContext, setThemeContext] = React.useState(_themesContext); const [API, setAPI] = React.useState(React.useContext(APIContext)); const [, setBreadcrumbs] = React.useState(null); const [screenSize, setScreenSize] = React.useState("mobile"); @@ -86,19 +84,13 @@ const Layout: React.FC = ({ children, pageContext, location }) => { - - - - - - - - -
{children}
- - -
-
+ + + + +
{children}
+ +
diff --git a/pwa/src/styling/global.css b/pwa/src/styling/global.css index da27e3e86..ee056fe52 100644 --- a/pwa/src/styling/global.css +++ b/pwa/src/styling/global.css @@ -4,3 +4,54 @@ body { background-color: var(--web-app-color-body-background); font-family: var(--web-app-primary-font-family); } + +:root { + /* Sizes */ + --web-app-size-4xs: var(--skeleton-size-4xs); + --web-app-size-3xs: var(--skeleton-size-3xs); + --web-app-size-2xs: var(--skeleton-size-2xs); + --web-app-size-xs: var(--skeleton-size-xs); + --web-app-size-sm: var(--skeleton-size-sm); + --web-app-size-md: var(--skeleton-size-md); + --web-app-size-lg: var(--skeleton-size-lg); + --web-app-size-xl: var(--skeleton-size-xl); + --web-app-size-2xl: var(--skeleton-size-2xl); + --web-app-size-3xl: var(--skeleton-size-3xl); + --web-app-size-4xl: var(--skeleton-size-4xl); + + /* Font sizes */ + --web-app-font-size-4xs: var(--skeleton-font-size-4xs); + --web-app-font-size-3xs: var(--skeleton-font-size-3xs); + --web-app-font-size-2xs: var(--skeleton-font-size-2xs); + --web-app-font-size-xs: var(--skeleton-font-size-xs); + --web-app-font-size-sm: var(--skeleton-font-size-sm); + --web-app-font-size-md: var(--skeleton-font-size-md); + --web-app-font-size-lg: var(--skeleton-font-size-lg); + --web-app-font-size-xl: var(--skeleton-font-size-xl); + --web-app-font-size-2xl: var(--skeleton-font-size-2xl); + --web-app-font-size-3xl: var(--skeleton-font-size-3xl); + --web-app-font-size-4xl: var(--skeleton-font-size-4xl); + + /* Line heights */ + --web-app-line-height-xs: var(--skeleton-line-height-xs); + --web-app-line-height-sm: var(--skeleton-line-height-sm); + --web-app-line-height-md: var(--skeleton-line-height-md); + --web-app-line-height-lg: var(--skeleton-line-height-lg); + + /* Font weights */ + --web-app-font-weight-light: var(--skeleton-font-weight-light); + --web-app-font-weight-normal: var(--skeleton-font-weight-normal); + --web-app-font-weight-bold: var(--skeleton-font-weight-bold); + + /* Border radiuses */ + --web-app-border-radius-sm: 0; + --web-app-border-radius-md: 0; + --web-app-border-radius-lg: 0; + + --web-app-layer-color-interaction: #1a75ff; + --web-app-layer-color-process: #dd3c49; + --web-app-layer-color-integration: #efc025; + --web-app-layer-color-services: #69b090; + --web-app-layer-color-data: #7a51c8; + --web-app-layer-color-unknown: #586265; +} diff --git a/pwa/src/styling/index.css b/pwa/src/styling/index.css index 207873550..d5cdd2bd1 100644 --- a/pwa/src/styling/index.css +++ b/pwa/src/styling/index.css @@ -1,7 +1,16 @@ /* Skeleton Design Tokens */ +/* Local Design Tokens */ +@import "../../static/themes/rotterdam.css"; +@import "../../static/themes/utrecht.css"; + /* Theme Design Tokens */ /* TODO: Load themes on-demand */ +/* Design Tokens maintained by Conduction */ +@import "../../node_modules/@conduction/theme/conduction-design-tokens/dist/index.css"; +@import "../../node_modules/@conduction/theme/municipalities/rotterdam-design-tokens/dist/design-tokens.css"; + +/* Design Tokens maintained by Frameless */ @import "../../node_modules/@nl-design-system-unstable/rotterdam-design-tokens/dist/index.css"; @import "../../node_modules/@utrecht/design-tokens/dist/theme.css"; diff --git a/pwa/src/styling/themeProvider/ThemeProvider.module.css b/pwa/src/styling/themeProvider/ThemeProvider.module.css deleted file mode 100644 index 3c3439ede..000000000 --- a/pwa/src/styling/themeProvider/ThemeProvider.module.css +++ /dev/null @@ -1,31 +0,0 @@ -.container { - background-color: var(--web-app-color-background-footer); - padding-block-end: var(--web-app-size-3xl); - padding-block-start: var(--web-app-size-3xl); - padding-inline-start: var(--web-app-size-md); - padding-inline-end: var(--web-app-size-md); -} -.content { - margin-inline: auto; - max-width: var(--conduction-container-max-width); -} -.content > *:not(:last-child) { - margin-block-end: var(--web-app-size-sm); -} - -.label { - font-weight: var(--web-app-font-weight-normal); - font-size: var(--web-app-size-md); - color: var(--web-app-color-footer-headings); -} -.header { - color: var(--web-app-color-footer-headings); -} - -.themeSwitcherContainer { - max-width: 450px; -} - -.selectBorder > div > div { - border-radius: 0; -} diff --git a/pwa/src/styling/themeProvider/ThemeProvider.tsx b/pwa/src/styling/themeProvider/ThemeProvider.tsx deleted file mode 100644 index 0185bc8b3..000000000 --- a/pwa/src/styling/themeProvider/ThemeProvider.tsx +++ /dev/null @@ -1,86 +0,0 @@ -import * as React from "react"; -import * as styles from "./ThemeProvider.module.css"; -import "./../../styling/design-tokens/component-overrides.css"; -import { useForm } from "react-hook-form"; -import { themes } from "../../data/themes"; -import { SelectSingle } from "@conduction/components"; -import { Document } from "@utrecht/component-library-react/dist/css-module"; -import { FormField, FormLabel } from "@utrecht/component-library-react/dist/css-module"; -import { ThemesContextContext } from "../../context/theme"; - -export const ThemeProvider = ({ children }: React.PropsWithChildren): JSX.Element => { - const [theme, setTheme] = React.useState("rotterdam"); - const [_, setThemeContext] = React.useContext(ThemesContextContext); - - React.useEffect(() => { - const link = document.createElement("link"); - - link.type = "text/css"; - link.rel = "stylesheet"; - link.href = `/themes/${theme}.css`; - - document.head.appendChild(link); - - return () => { - document.head.removeChild(link); - }; - }, [theme]); - - React.useEffect(() => { - setThemeContext({ current: theme }); - }, [theme]); - const themeData = themes.find(({ value }) => value === theme); - - return ( - - {children} - -
-
- -
-
-
- ); -}; - -// This component is TEMPORARY and only for DEV & DEMO purposes -interface ThemeSwitcherProps { - setTheme: React.Dispatch>; -} - -const ThemeSwitcher: React.FC = ({ setTheme }) => { - const { - register, - watch, - control, - formState: { errors }, - } = useForm(); - - React.useEffect(() => { - const subscription = watch(({ themeSwitcher }) => { - setTheme(themeSwitcher?.value); - }); - - return () => subscription.unsubscribe(); - }); - - return ( -
- - - Thema aanpasssen: - -
- -
-
-
- ); -}; diff --git a/pwa/src/templates/applicationsTemplate/ApplicationsTemplate.tsx b/pwa/src/templates/applicationsTemplate/ApplicationsTemplate.tsx index 0496d6845..a615b5df4 100644 --- a/pwa/src/templates/applicationsTemplate/ApplicationsTemplate.tsx +++ b/pwa/src/templates/applicationsTemplate/ApplicationsTemplate.tsx @@ -54,7 +54,7 @@ export const ApplicationsTemplate: React.FC = () => { title={{ label: application.name, href: `/applications/${application.id}` }} description={application.shortDescription} tags={{ - organization: application?.embedded?.owner.fullName, + organization: application?.embedded?.owner?.fullName, githubLink: application?.demoUrl, }} /> diff --git a/pwa/src/templates/templateParts/header/HeaderTemplate.tsx b/pwa/src/templates/templateParts/header/HeaderTemplate.tsx index d0669097f..41d9c9829 100644 --- a/pwa/src/templates/templateParts/header/HeaderTemplate.tsx +++ b/pwa/src/templates/templateParts/header/HeaderTemplate.tsx @@ -18,7 +18,6 @@ import { faChevronRight, faCircleUser } from "@fortawesome/free-solid-svg-icons" import { GatsbyContext } from "../../../context/gatsby"; import { SearchComponentTemplate } from "../searchComponent/SearchComponentTemplate"; import _ from "lodash"; -import { ThemesContextContext } from "../../../context/theme"; interface HeaderTemplateProps { layoutClassName?: string; @@ -31,7 +30,6 @@ export const HeaderTemplate: React.FC = ({ layoutClassName // arrowNav should become a configuration key const [arrowNav, setArrowNav] = React.useState(false); // themeContext should be removed after arrowNav has become a configuration key - const [themeContext] = React.useContext(ThemesContextContext); const { pageContext: { @@ -163,13 +161,13 @@ export const HeaderTemplate: React.FC = ({ layoutClassName }, [screenSize, pathname, crumbs]); React.useEffect(() => { - if (themeContext.current === "utrecht") { + if (process.env.GATSBY_ARROW_BREADCRUMBS === "true") { setArrowNav(true); return; } setArrowNav(false); - }, [themeContext]); + }, []); return (
diff --git a/pwa/static/.env.development b/pwa/static/.env.development new file mode 100644 index 000000000..43a1a1e59 --- /dev/null +++ b/pwa/static/.env.development @@ -0,0 +1,13 @@ +# Connect Backend +GATSBY_ME_URL=http://localhost/me +GATSBY_API_URL=http://localhost/api +GATSBY_ADMIN_URL=http://localhost/admin +GATSBY_BASE_URL=http://localhost +GATSBY_FRONTEND_URL=http://localhost:8000 +GATSBY_ORGANIZATION=http://webresourcecatalogus.conduction.svc.cluster.local/organizations/b2d3176e-f1c6-4365-ab86-dd253c65fc43 +GATSBY_LOGIN_REDIRECT=vault +GATSBY_ADMIN_DASHBOARD_URL=https://admin.opencatalogi.nl + +# Config +GATSBY_NL_DESIGN_THEME_CLASSNAME=rotterdam-theme +GATSBY_ARROW_BREADCRUMBS="false" \ No newline at end of file diff --git a/pwa/static/.env.production b/pwa/static/.env.production new file mode 100644 index 000000000..97e4612d7 --- /dev/null +++ b/pwa/static/.env.production @@ -0,0 +1,13 @@ +# Connect Backend +GATSBY_ME_URL= +GATSBY_API_URL= +GATSBY_ADMIN_URL= +GATSBY_BASE_URL= +GATSBY_FRONTEND_URL= +GATSBY_ORGANIZATION= +GATSBY_LOGIN_REDIRECT= +GATSBY_ADMIN_DASHBOARD_URL= + +# Config +GATSBY_NL_DESIGN_THEME_CLASSNAME= +GATSBY_ARROW_BREADCRUMBS= \ No newline at end of file diff --git a/pwa/static/themes/rotterdam.css b/pwa/static/themes/rotterdam.css index 0fd6dbdae..14b91d5e2 100644 --- a/pwa/static/themes/rotterdam.css +++ b/pwa/static/themes/rotterdam.css @@ -1,54 +1,9 @@ /******* START OF THEME TEMPLATE ********/ -:root { - /* Sizes */ - --web-app-size-4xs: var(--skeleton-size-4xs); - --web-app-size-3xs: var(--skeleton-size-3xs); - --web-app-size-2xs: var(--skeleton-size-2xs); - --web-app-size-xs: var(--skeleton-size-xs); - --web-app-size-sm: var(--skeleton-size-sm); - --web-app-size-md: var(--skeleton-size-md); - --web-app-size-lg: var(--skeleton-size-lg); - --web-app-size-xl: var(--skeleton-size-xl); - --web-app-size-2xl: var(--skeleton-size-2xl); - --web-app-size-3xl: var(--skeleton-size-3xl); - --web-app-size-4xl: var(--skeleton-size-4xl); - +.rotterdam-theme { /* Font families */ --web-app-primary-font-family: "Bolder"; --web-app-content-font-family: var(--skeleton-content-font-family); - /* Font sizes */ - --web-app-font-size-4xs: var(--skeleton-font-size-4xs); - --web-app-font-size-3xs: var(--skeleton-font-size-3xs); - --web-app-font-size-2xs: var(--skeleton-font-size-2xs); - --web-app-font-size-xs: var(--skeleton-font-size-xs); - --web-app-font-size-sm: var(--skeleton-font-size-sm); - --web-app-font-size-md: var(--skeleton-font-size-md); - --web-app-font-size-lg: var(--skeleton-font-size-lg); - --web-app-font-size-xl: var(--skeleton-font-size-xl); - --web-app-font-size-2xl: var(--skeleton-font-size-2xl); - --web-app-font-size-3xl: var(--skeleton-font-size-3xl); - --web-app-font-size-4xl: var(--skeleton-font-size-4xl); - - /* Line heights */ - --web-app-line-height-xs: var(--skeleton-line-height-xs); - --web-app-line-height-sm: var(--skeleton-line-height-sm); - --web-app-line-height-md: var(--skeleton-line-height-md); - --web-app-line-height-lg: var(--skeleton-line-height-lg); - - /* Font weights */ - --web-app-font-weight-light: var(--skeleton-font-weight-light); - --web-app-font-weight-normal: var(--skeleton-font-weight-normal); - --web-app-font-weight-bold: var(--skeleton-font-weight-bold); - - /* Border radiuses */ - --web-app-border-radius-sm: 0; - --web-app-border-radius-md: 0; - --web-app-border-radius-lg: 0; - - /* Focus border */ - --web-app-focus-border: unset; - /* Theme colors */ --web-app-color-white: hsl(0 0% 100%); --web-app-color-black: hsl(0 0% 0%); @@ -96,26 +51,19 @@ --web-app-header-logo-container-border-radius: 0; --web-app-header-logo-container-height: 44px; --web-app-header-organization-logo-width: 202px; - --web-app-header-organization-logo-src: url("images/LogoRotterdam.svg"); + --web-app-header-organization-logo-src: url("../images/LogoRotterdam.svg"); --web-app-footer-logo-container-background-color: unset; --web-app-footer-logo-container-padding: unset; --web-app-footer-logo-container-border-radius: 0; --web-app-footer-logo-container-height: 50px; --web-app-footer-organization-logo-width: 230px; - --web-app-footer-organization-logo-src: url("images/LogoRotterdam.svg"); + --web-app-footer-organization-logo-src: url("../images/LogoRotterdam.svg"); --web-app-footer-forum-standaardisatie-icon-path-fill: var(--web-app-color-background-footer); --web-app-rating-active-color: var(--rotterdam-color-green); --web-app-rating-disable-color: #bfbfbf; - --web-app-layer-color-interaction: #1a75ff; - --web-app-layer-color-process: #dd3c49; - --web-app-layer-color-integration: #efc025; - --web-app-layer-color-services: #69b090; - --web-app-layer-color-data: #7a51c8; - --web-app-layer-color-unknown: #586265; - --web-app-layer-category-color-interaction: #cfe2ff; --web-app-layer-category-color-process: #f8d7da; --web-app-layer-category-color-integration: #fff3cd; @@ -188,109 +136,6 @@ --web-app-primary-top-nav-box-shadow-active: inset 0 -4px var(--rotterdam-color-green); --web-app-primary-top-nav-dropdown-border-radius: var(--web-app-border-radius-md); - /* @conduction: Tooltip */ - --conduction-tooltip-padding-inline-start: 0px; - --conduction-tooltip-padding-inline-end: 0px; - --conduction-tooltip-padding-block-start: 0px; - --conduction-tooltip-padding-block-end: 0px; - --conduction-tooltip-background-color: var(--web-app-color-black); - --conduction-tooltip-color: var(--web-app-color-white); - --conduction-tooltip-border-width: 0px; - --conduction-tooltip-border-color: unset; - --conduction-tooltip-border-style: unset; - --conduction-tooltip-border-radius: 0px; - --conduction-tooltip-opacity: 1; - - /* @conduction: Tabs */ - --conduction-tabs-tab-background-color: transparent; - --conduction-tabs-tab-color: #404b4f; - --conduction-tabs-tab-bottom: -4px; - --conduction-tabs-tab-padding-inline-end: 12px; - --conduction-tabs-tab-padding-inline-start: 12px; - --conduction-tabs-tab-padding-block-end: 6px; - --conduction-tabs-tab-padding-block-start: 6px; - --conduction-tabs-tab-font-size: 14px; - --conduction-tabs-tab-font-weight: var(--web-app-font-weight-normal); - --conduction-tabs-tab-font-family: Bolder, ArialforRotterdam, Arial, sans-serif; - --conduction-tabs-tab-max-width: unset; - --conduction-tabs-tab-min-width: 160px; - --conduction-tabs-tab-min-height: 48px; - --conduction-tabs-tab-letter-spacing: 0.02857em; - - --conduction-tabs-tab-texttransform: uppercase; - - --conduction-tabs-tab-selected-background-color: transparent; - --conduction-tabs-tab-selected-color: #404b4f; - --conduction-tabs-tab-selected-border-bottom-width: 0.3rem; - --conduction-tabs-tab-selected-border-bottom-style: solid; - --conduction-tabs-tab-selected-border-bottom-color: var(--web-app-color-link); - --conduction-tabs-tab-selected-font-weight: var(--web-app-font-weight-bold); - - --conduction-tabs-tab-hover-background-color: transparent; - --conduction-tabs-tab-hover-color: var(--web-app-color-link); - - --conduction-tabs-tab-list-padding-inline-start: 0px; - --conduction-tabs-tab-list-margin-block-end: 0px; - --conduction-tabs-tab-list-border-bottom-width: 0.3rem; - --conduction-tabs-tab-list-border-bottom-style: solid; - --conduction-tabs-tab-list-border-bottom-color: #eff4f6; - - --conduction-tabs-tab-panel-padding-block-start: var(--web-app-size-lg); - --conduction-tabs-tab-panel-padding-block-end: var(--web-app-size-lg); - --conduction-tabs-tab-panel-padding-inline-start: var(--web-app-size-lg); - --conduction-tabs-tab-panel-padding-inline-end: var(--web-app-size-lg); - - --conduction-tabs-scroll-button-hover-color: var(--rotterdam-color-green); - --conduction-tabs-scroll-button-hover-background-color: var(--web-app-color-white); - --conduction-tabs-scroll-button-color: #404b4f; - --conduction-tabs-scroll-button-background-color: var(--web-app-color-white); - - /* @conduction: TableWrapper */ - --conduction-table-wrapper-scroll-button-hover-color: var(--rotterdam-color-green); - --conduction-table-wrapper-scroll-button-hover-background-color: var(--web-app-color-white); - --conduction-table-wrapper-scroll-button-padding-inline-end: 14px; - --conduction-table-wrapper-scroll-button-padding-inline-start: 14px; - --conduction-table-wrapper-scroll-button-color: #404b4f; - --conduction-table-wrapper-scroll-button-background-color: var(--web-app-color-white); - - /* @conduction: CardWrapper */ - --conduction-card-wrapper-padding-block-start: 16px; - --conduction-card-wrapper-padding-block-end: 16px; - --conduction-card-wrapper-padding-inline-start: 16px; - --conduction-card-wrapper-padding-inline-end: 16px; - --conduction-card-wrapper-hover-border-bottom-width: 4px; - --conduction-card-wrapper-hover-border-bottom-style: solid; - --conduction-card-wrapper-hover-border-bottom-color: var(--rotterdam-color-green); - --conduction-card-wrapper-color: #404b4f; - --conduction-card-wrapper-border-radius: 0px; - --conduction-card-wrapper-border-bottom-width: 4px; - --conduction-card-wrapper-border-bottom-style: solid; - --conduction-card-wrapper-border-bottom-color: #cad6da; - --conduction-card-wrapper-background-color: var(--web-app-color-white); - - /* @conduction: CardHeader */ - --conduction-card-header-date-margin-block-end: 8px; - --conduction-card-header-date-font-weight: 400; - --conduction-card-header-date-font-size: 16px; - --conduction-card-header-date-color: #404b4f; - --conduction-card-header-title-color: var(--rotterdam-color-green); - --conduction-card-header-color: var(--web-app-color-white); - - /* @gemeent-denhaag: SideNav */ - --web-app-sidenav-link-active-color: var(--rotterdam-color-green); - --web-app-sidenav-link-hover-color: var(--rotterdam-color-green); - --web-app-sidenav-link-padding-block-end: var(--web-app-size-xs); - --web-app-sidenav-link-padding-block-start: var(--web-app-size-xs); - --web-app-sidenav-item-font-family: var(--web-app-primary-font-family); - --web-app-sidenav-item-font-weight: var(--web-app-font-weight-normal); - --web-app-sidenav-item-font-size: var(--web-app-size-md); - - /* @gemeent-denhaag: Alert */ - --web-app-alert-info-background-color: #1791d41a; - --web-app-alert-info-action-button-background-color: hsl(207 80% 35%); - --web-app-alert-info-action-button-background-color-hover: hsl(207 80% 30%); - --web-app-alert-info-icon-color: hsl(207 80% 35%); - /* * Utrecht component overrides */ @@ -299,128 +144,57 @@ } .rotterdam-theme { - /* @gemeente-utrecht: Code block */ - --utrecht-code-block-background-color: var(--web-app-color-grey); - --utrecht-code-block-margin-block-start: var(--web-app-size-lg); - --utrecht-code-block-margin-block-end: var(--web-app-size-lg); - --utrecht-code-block-padding-block-end: var(--web-app-size-lg); - --utrecht-code-block-padding-block-start: var(--web-app-size-lg); - --utrecht-code-block-padding-inline-start: var(--web-app-size-lg); - - /* Utrecht: Icon */ - --utrecht-focus-background-color: transparent; - --utrecht-focus-inverse-outline-color: var(--rotterdam-color-base-white); - --utrecht-focus-outline-color: var(--rotterdam-color-base-black); - --utrecht-focus-outline-style: dotted; - --utrecht-focus-outline-width: 2px; - - --denhaag-link-focus-outline: var(--utrecht-focus-outline-width) var(--utrecht-focus-outline-style) var(--utrecht-focus-outline-color); - /* @gemeente-utrecht: BadgeCounter */ - --utrecht-badge-counter-border-radius: 2em; - --utrecht-badge-counter-padding-block: var(--web-app-font-size-4xs); - --utrecht-badge-counter-padding-inline: var(--web-app-font-size-4xs); - --utrecht-badge-counter-font-weight: normal; - --utrecht-badge-counter-padding-inline: 5px; - --utrecht-badge-counter-padding-block: 5px; - --utrecht-badge-counter-text-decoration: none; - --utrecht-badge-counter-font-family: Bolder, ArialforRotterdam, Arial, sans-serif; - --utrecht-badge-counter-font-size: 16px; - --utrecht-badge-counter-color: var(--web-app-color-white); - --utrecht-badge-counter-border-radius: 50%; - --utrecht-badge-counter-background-color: var(--rotterdam-color-base-black); - /* @gemeente-utrecht: Databadge */ - --utrecht-badge-padding-block: var(--web-app-size-xs); - --utrecht-badge-background-color: var(--rotterdam-color-base-black); - --utrecht-badge-font-size: var(--web-app-font-size-sm); - --utrecht-badge-font-weight: var(--web-app-font-weight-normal); - --utrecht-badge-padding-block: var(--web-app-size-xs); - --utrecht-badge-padding-inline: var(--web-app-size-xs); - - /* @gemeente-utrecht: Alert */ - --utrecht-alert-background-color: var(--web-app-alert-info-background-color); - --utrecht-alert-border-color: #1791d440; - --utrecht-alert-border-width: 1px; - --utrecht-alert-color: var(--web-app-color-black); - --utrecht-alert-padding-block-start: var(--web-app-size-lg); - --utrecht-alert-padding-block-end: var(--web-app-size-lg); - --utrecht-alert-padding-inline-start: var(--web-app-size-lg); - --utrecht-alert-padding-inline-end: var(--web-app-size-lg); - --utrecht-alert-content-margin-inline-start: var(--web-app-size-lg); - --utrecht-alert-content-margin-inline-end: var(--web-app-size-lg); - --utrecht-alert-icon-gap: 12px; - --utrecht-alert-info-background-color: rgba(23, 145, 212, 0.1); - --utrecht-alert-info-border-color: rgba(23, 145, 212, 0.25); - --utrecht-alert-icon-info-color: #00689e; - - --utrecht-alert-warning-background-color: rgba(237, 181, 0, 0.1); - --utrecht-alert-warning-border-color: rgba(237, 181, 0, 0.25); - --utrecht-alert-icon-warning-color: #a65600; - - --utrecht-alert-error-background-color: rgba(227, 97, 77, 0.1); - --utrecht-alert-error-border-color: rgba(227, 97, 77, 0.25); - --utrecht-alert-icon-error-color: var(--rotterdam-color-red-tint-02); - - --utrecht-alert-ok-background-color: rgba(0, 129, 31, 0.1); - --utrecht-alert-ok-border-color: rgba(0, 129, 31, 0.25); - --utrecht-alert-icon-ok-color: var(--rotterdam-color-base-green); + --utrecht-badge-padding-block: var(--web-app-size-xs) !important; + --utrecht-badge-background-color: var(--rotterdam-color-base-black) !important; + --utrecht-badge-font-size: var(--web-app-font-size-sm) !important; + --utrecht-badge-font-weight: var(--web-app-font-weight-normal) !important; + --utrecht-badge-padding-block: var(--web-app-size-xs) !important; + --utrecht-badge-padding-inline: var(--web-app-size-xs) !important; /* @denhaag alert icon */ - --utrecht-icon-size: 1.5em; + --utrecht-icon-size: 1.3em; --utrecht-feedback-safe-fill-background-color: hsla(139, 81%, 35%, 1); --utrecht-feedback-warning-fill-background-color: hsla(41, 100%, 43%, 1); --utrecht-feedback-danger-fill-background-color: hsla(7, 60%, 52%, 1); --utrecht-feedback-neutral-fill-background-color: hsla(201, 100%, 36%, 1); + --utrecht-alert-icon-info-color: var(--utrecht-alert-icon-color); + --utrecht-alert-info-background-color: var(--utrecht-alert-background-color); + --utrecht-alert-info-border-color: var(--utrecht-alert-border-color); + --utrecht-alert-info-border-width: var(--utrecht-alert-border-width); + --utrecht-button-group-inline-gap: var(--rotterdam-space-scale-3); --utrecht-action-activate-cursor: pointer; - /* @gemeente-utrecht: table */ - --utrecht-table-border-width: 0; - --utrecht-table-row-hover-background-color: var(--rotterdam-color-base-gray); - --utrecht-table-row-hover-color: var(--rotterdam-color-gray-tint-11); - --utrecht-table-row-focus-background-color: var(--rotterdam-color-base-gray); - --utrecht-table-row-focus-color: var(--rotterdam-color-gray-tint-11); - - --utrecht-table-cell-padding-block-start: inherit; - --utrecht-table-cell-padding-block-end: inherit; - --utrecht-table-cell-padding-inline-start: inherit; - --utrecht-table-cell-padding-inline-end: inherit; - - /* @gemeente-utrecht: radio button */ - --utrecht-radio-button-size: inherit; - --utrecht-button-icon-gap: var(--web-app-size-xs); - - /* @gemeente-utrecht: link */ - --utrecht-link-visited-color: inherit; - /* @gemeente-utrecht: separator */ --utrecht-separator-color: var(--web-app-color-table-hover-grey); --utrecht-separator-block-size: var(--web-app-size-3xs); --utrecht-separator-margin-block-end: 0px; --utrecht-separator-margin-block-start: 0px; - /* @gemeente-utrecht: breadcrumbs */ - /* --utrecht-breadcrumb-block-size: ; */ - /* --utrecht-breadcrumb-font-family: *; */ - /* --utrecht-breadcrumb-font-size: ; */ - /* --utrecht-breadcrumb-text-transform: inherit | none | uppercase; */ - /* --utrecht-breadcrumb-item-padding-block-start: ; */ - /* --utrecht-breadcrumb-item-padding-block-end: ; */ - /* --utrecht-breadcrumb-item-padding-inline-end: ; */ - /* --utrecht-breadcrumb-item-padding-inline-start: ; */ - /* --utrecht-breadcrumb-link-background-color: ; */ - --utrecht-breadcrumb-link-color: var(--rotterdam-color-green); - /* --utrecht-breadcrumb-link-focus-background-color: ; */ - /* --utrecht-breadcrumb-link-focus-color: ; */ - /* --utrecht-breadcrumb-link-current-background-color: ; */ - --utrecht-breadcrumb-link-current-color: #65757b; - /* --utrecht-breadcrumb-separator-inline-size: ; */ + /* @conduction: Breadcumbs */ --utrecht-breadcrumb-separator-icon-color: var(--rotterdam-color-green); --utrecht-breadcrumb-separator-icon-size: 16px; - --utrecht-breadcrumb-link-disabled-color: #65757b; + /* ComponentOverwrites */ + --conduction-secondary-top-nav-item-padding: var(--web-app-secondary-top-nav-item-padding) !important; + --conduction-secondary-top-nav-font-size: var(--web-app-secondary-top-nav-font-size) !important; + --conduction-secondary-top-nav-color: var(--web-app-color-text-grey) !important; + --conduction-secondary-top-nav-background-color-hover: var(--web-app-secondary-top-nav-background-color-hover) !important; + --conduction-secondary-top-nav-font-weight: var(--web-app-secondary-top-nav-font-weight) !important; + --conduction-secondary-top-nav-background-color-active: var(--web-app-secondary-top-nav-background-color-active) !important; + --conduction-secondary-top-nav-item-icon-margin: var(--web-app-size-2xs) !important; + + --conduction-primary-top-nav-item-padding: var(--web-app-primary-top-nav-item-padding) !important; + --conduction-primary-top-nav-color: var(--web-app-color-text-grey) !important; + --conduction-primary-top-nav-background-color: var(--web-app-primary-top-nav-background-color) !important; + --conduction-primary-top-nav-background-color-hover: var(--web-app-primary-top-nav-background-color-hover) !important; + --conduction-primary-top-nav-dropdown-border-radius: var(--web-app-primary-top-nav-dropdown-border-radius) !important; + --conduction-primary-top-nav-background-color-active: var(--web-app-primary-top-nav-background-color-active) !important; + --conduction-primary-top-nav-box-shadow-active: var(--web-app-primary-top-nav-box-shadow-active) !important; + --conduction-primary-top-nav-item-icon-margin: var(--web-app-size-2xs) !important; } .utrecht-link { @@ -440,21 +214,22 @@ @font-face { font-family: "Bolder"; font-weight: bold; - src: url("./../../../fonts/Bolder-Bold.woff2") format("woff2"); + src: url("../fonts/Bolder-Bold.woff2") format("woff2"); } + @font-face { font-family: "Bolder"; font-weight: light; - src: url("./../../../fonts/Bolder-Light.woff2") format("woff2"); + src: url("../fonts/Bolder-Light.woff2") format("woff2"); } @font-face { font-family: "Bolder"; font-weight: normal; - src: url("./../../../fonts/Bolder-Regular.woff2") format("woff2"); + src: url("../fonts/Bolder-Regular.woff2") format("woff2"); } @font-face { font-family: "Bolder"; font-weight: normal; font-style: italic; - src: url("./../../../fonts/Bolder-RegularItalic.woff2") format("woff2"); + src: url("../fonts/Bolder-RegularItalic.woff2") format("woff2"); } diff --git a/pwa/static/themes/utrecht.css b/pwa/static/themes/utrecht.css index fc6af6988..5ab8cd852 100644 --- a/pwa/static/themes/utrecht.css +++ b/pwa/static/themes/utrecht.css @@ -1,53 +1,8 @@ /******* START OF THEME TEMPLATE ********/ -:root { - /* Sizes */ - --web-app-size-4xs: var(--skeleton-size-4xs); - --web-app-size-3xs: var(--skeleton-size-3xs); - --web-app-size-2xs: var(--skeleton-size-2xs); - --web-app-size-xs: var(--skeleton-size-xs); - --web-app-size-sm: var(--skeleton-size-sm); - --web-app-size-md: var(--skeleton-size-md); - --web-app-size-lg: var(--skeleton-size-lg); - --web-app-size-xl: var(--skeleton-size-xl); - --web-app-size-2xl: var(--skeleton-size-2xl); - --web-app-size-3xl: var(--skeleton-size-3xl); - --web-app-size-4xl: var(--skeleton-size-4xl); - - /* Font families */ - --web-app-primary-font-family: "Lucida Grande"; - --web-app-content-font-family: "Lucida Grande"; - - /* Font sizes */ - --web-app-font-size-4xs: var(--skeleton-font-size-4xs); - --web-app-font-size-3xs: var(--skeleton-font-size-3xs); - --web-app-font-size-2xs: var(--skeleton-font-size-2xs); - --web-app-font-size-xs: var(--skeleton-font-size-xs); - --web-app-font-size-sm: var(--skeleton-font-size-sm); - --web-app-font-size-md: var(--skeleton-font-size-md); - --web-app-font-size-lg: var(--skeleton-font-size-lg); - --web-app-font-size-xl: var(--skeleton-font-size-xl); - --web-app-font-size-2xl: var(--skeleton-font-size-2xl); - --web-app-font-size-3xl: var(--skeleton-font-size-3xl); - --web-app-font-size-4xl: var(--skeleton-font-size-4xl); - - /* Line heights */ - --web-app-line-height-xs: var(--skeleton-line-height-xs); - --web-app-line-height-sm: var(--skeleton-line-height-sm); - --web-app-line-height-md: var(--skeleton-line-height-md); - --web-app-line-height-lg: var(--skeleton-line-height-lg); - - /* Font weights */ - --web-app-font-weight-light: var(--skeleton-font-weight-light); - --web-app-font-weight-normal: var(--skeleton-font-weight-normal); - --web-app-font-weight-bold: var(--skeleton-font-weight-bold); - - /* Border radiuses */ - --web-app-border-radius-sm: 0; - --web-app-border-radius-md: 0; - --web-app-border-radius-lg: 0; - - /* Focus border */ - --web-app-focus-border: 2px dashed var(--web-app-color-black); +.utrecht-theme { + /* Font families */ + --web-app-primary-font-family: "Lucida Grande"; + --web-app-content-font-family: "Lucida Grande"; /* Theme colors */ --web-app-color-white: hsl(0 0% 100%); @@ -96,14 +51,14 @@ --web-app-header-logo-container-border-radius: 0; --web-app-header-logo-container-height: 50px; --web-app-header-organization-logo-width: 115px; - --web-app-header-organization-logo-src: url("images/LogoUtrecht.svg"); + --web-app-header-organization-logo-src: url("../images/LogoUtrecht.svg"); --web-app-footer-logo-container-background-color: var(--web-app-color-white); --web-app-footer-logo-container-padding: var(--web-app-size-md); --web-app-footer-logo-container-border-radius: unset; --web-app-footer-logo-container-height: 67px; --web-app-footer-organization-logo-width: 126px; - --web-app-footer-organization-logo-src: url("images/LogoUtrecht.svg"); + --web-app-footer-organization-logo-src: url("../images/LogoUtrecht.svg"); --web-app-footer-forum-standaardisatie-icon-path-fill: var(--web-app-color-background-footer); --web-app-rating-active-color: hsl(211 60% 35%); @@ -369,7 +324,6 @@ --utrecht-button-group-inline-gap: inherit; --utrecht-action-activate-cursor: inherit; - /* @gemeente-utrecht: table */ --utrecht-table-border-width: inherit; --utrecht-table-row-hover-background-color: inherit; @@ -394,6 +348,24 @@ --utrecht-separator-block-size: var(--web-app-size-3xs); --utrecht-separator-margin-block-end: 0px; --utrecht-separator-margin-block-start: 0px; + + /* ComponentOverwrites */ + --conduction-secondary-top-nav-item-padding: var(--web-app-secondary-top-nav-item-padding) !important; + --conduction-secondary-top-nav-font-size: var(--web-app-secondary-top-nav-font-size) !important; + --conduction-secondary-top-nav-color: var(--web-app-color-text-grey) !important; + --conduction-secondary-top-nav-background-color-hover: var(--web-app-secondary-top-nav-background-color-hover) !important; + --conduction-secondary-top-nav-font-weight: var(--web-app-secondary-top-nav-font-weight) !important; + --conduction-secondary-top-nav-background-color-active: var(--web-app-secondary-top-nav-background-color-active) !important; + --conduction-secondary-top-nav-item-icon-margin: var(--web-app-size-2xs) !important; + + --conduction-primary-top-nav-item-padding: var(--web-app-primary-top-nav-item-padding) !important; + --conduction-primary-top-nav-color: var(--web-app-color-text-grey) !important; + --conduction-primary-top-nav-background-color: var(--web-app-primary-top-nav-background-color) !important; + --conduction-primary-top-nav-background-color-hover: var(--web-app-primary-top-nav-background-color-hover) !important; + --conduction-primary-top-nav-dropdown-border-radius: var(--web-app-primary-top-nav-dropdown-border-radius) !important; + --conduction-primary-top-nav-background-color-active: var(--web-app-primary-top-nav-background-color-active) !important; + --conduction-primary-top-nav-box-shadow-active: var(--web-app-primary-top-nav-box-shadow-active) !important; + --conduction-primary-top-nav-item-icon-margin: var(--web-app-size-2xs) !important; } .utrecht-link { From 67ab150b636cc9ab020a25a8e4c7f15c3d736ad3 Mon Sep 17 00:00:00 2001 From: Remko Date: Tue, 26 Sep 2023 13:44:47 +0200 Subject: [PATCH 2/3] removed env.js --- helm/templates/configmap.yaml | 43 ------------------- pwa/src/apiService/apiService.ts | 6 +-- pwa/src/layout/Head.tsx | 1 - .../UsageDocumentationTemplate.tsx | 19 ++++---- .../templateParts/footer/FooterTemplate.tsx | 2 +- .../templateParts/header/HeaderTemplate.tsx | 18 ++------ pwa/static/.env.development | 16 +++---- pwa/static/env.js | 23 ---------- 8 files changed, 25 insertions(+), 103 deletions(-) delete mode 100644 helm/templates/configmap.yaml delete mode 100644 pwa/static/env.js diff --git a/helm/templates/configmap.yaml b/helm/templates/configmap.yaml deleted file mode 100644 index e9e4f8329..000000000 --- a/helm/templates/configmap.yaml +++ /dev/null @@ -1,43 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: {{ include "api-platform.fullname" . }} - labels: - {{- include "api-platform.labels" . | nindent 4 }} -data: - {{- if .Values.gateway.enabled }} - gateway-location: https://{{ .Values.ingress.hostname }} - {{- else }} - gateway-location: {{ .Values.gateway.location }} - {{- end }} - properties: |- - {{- if contains "useDomain" .Values.pwa.meUrl }} - window.sessionStorage.setItem("GATSBY_ME_URL", "{{ printf "https://api.%s/api/users/me" .Values.global.domain }}"); - {{ else }} - window.sessionStorage.setItem("GATSBY_ME_URL", "{{ .Values.pwa.meUrl }}"); - {{- end }} - {{- if contains "useDomain" .Values.pwa.apiUrl }} - window.sessionStorage.setItem("GATSBY_API_URL", "{{ printf "https://api.%s/api" .Values.global.domain }}"); - {{ else }} - window.sessionStorage.setItem("GATSBY_API_URL", "{{ .Values.pwa.apiUrl }}"); - {{- end }} - {{- if contains "useDomain" .Values.pwa.adminUrl }} - window.sessionStorage.setItem("GATSBY_ADMIN_URL", "{{ printf "https://api.%s/admin" .Values.global.domain }}"); - {{ else }} - window.sessionStorage.setItem("GATSBY_ADMIN_URL", "{{ .Values.pwa.adminUrl }}"); - {{- end }} - {{- if contains "useDomain" .Values.pwa.baseUrl }} - window.sessionStorage.setItem("GATSBY_BASE_URL", "{{ printf "https://api.%s" .Values.global.domain }}"); - {{ else }} - window.sessionStorage.setItem("GATSBY_BASE_URL", "{{ .Values.pwa.baseUrl }}"); - {{- end }} - {{- if contains "useDomain" .Values.pwa.frontendUrl }} - window.sessionStorage.setItem("GATSBY_FRONTEND_URL", "{{ printf "https://%s" .Values.global.domain }}"); - {{ else }} - window.sessionStorage.setItem("GATSBY_FRONTEND_URL", "{{ .Values.pwa.frontendUrl }}"); - {{- end }} - {{- if contains "useDomain" .Values.pwa.dashboardUrl }} - window.sessionStorage.setItem("ADMIN_DASHBOARD_URL", "{{ printf "https://admin.%s/" .Values.global.domain }}"); - {{ else }} - window.sessionStorage.setItem("ADMIN_DASHBOARD_URL", "https://{{ .Values.pwa.dashboardUrl }}"); - {{- end }} \ No newline at end of file diff --git a/pwa/src/apiService/apiService.ts b/pwa/src/apiService/apiService.ts index 0bbe4d7aa..fabde720b 100644 --- a/pwa/src/apiService/apiService.ts +++ b/pwa/src/apiService/apiService.ts @@ -32,7 +32,7 @@ export default class APIService { const authorization = this.JWT ? { Authorization: "Bearer " + this.JWT } : {}; return axios.create({ - baseURL: window.sessionStorage.getItem("GATSBY_API_URL") ?? undefined, + baseURL: process.env.GATSBY_API_URL ?? undefined, headers: { Accept: "application/json", "Content-Type": "application/json", @@ -43,7 +43,7 @@ export default class APIService { public get LoginClient(): AxiosInstance { return axios.create({ - baseURL: window.sessionStorage.getItem("GATSBY_API_URL") ?? undefined, + baseURL: process.env.GATSBY_API_URL ?? undefined, headers: { Accept: "application/json", "Content-Type": "application/json", @@ -53,7 +53,7 @@ export default class APIService { public get BaseClient(): AxiosInstance { return axios.create({ - baseURL: window.sessionStorage.getItem("GATSBY_BASE_URL") ?? undefined, + baseURL: process.env.GATSBY_BASE_URL ?? undefined, headers: { Accept: "application/json", "Content-Type": "application/json", diff --git a/pwa/src/layout/Head.tsx b/pwa/src/layout/Head.tsx index a4c7b6901..25c549848 100644 --- a/pwa/src/layout/Head.tsx +++ b/pwa/src/layout/Head.tsx @@ -10,7 +10,6 @@ export const Head: React.FC = () => { }} > OpenCatalogi - ); }; diff --git a/pwa/src/templates/documentation/usageDocumentation/UsageDocumentationTemplate.tsx b/pwa/src/templates/documentation/usageDocumentation/UsageDocumentationTemplate.tsx index 9786a3abb..68001a1ca 100644 --- a/pwa/src/templates/documentation/usageDocumentation/UsageDocumentationTemplate.tsx +++ b/pwa/src/templates/documentation/usageDocumentation/UsageDocumentationTemplate.tsx @@ -179,19 +179,20 @@ export const UsageDocumentationTemplate: React.FC = () => { Om de front-end met de lokale gateway te laten praten moet je de omgevingsvariabelen in het{" "} - env.js bestand veranderen. Vervang de inhoud van het bestand met het + .env.development bestand veranderen. Vervang de inhoud onder het kopje Backend-config met het volgende: {dedent` - window.sessionStorage.setItem("GATSBY_ME_URL", "http://localhost/api/users/me"); - window.sessionStorage.setItem("GATSBY_API_URL", "http://localhost/api"); - window.sessionStorage.setItem("GATSBY_ADMIN_URL", "http://localhost/admin"); - window.sessionStorage.setItem("GATSBY_BASE_URL", "http://localhost"); - window.sessionStorage.setItem("GATSBY_FRONTEND_URL", "http://localhost"); - window.sessionStorage.setItem("GATSBY_ORGANIZATION", ""); - window.sessionStorage.setItem("GATSBY_LOGIN_REDIRECT", "vault"); - window.sessionStorage.setItem("ADMIN_DASHBOARD_URL", "http://localhost:8000");`} + GATSBY_ME_URL=http://localhost/me + GATSBY_API_URL=http://localhost/api + GATSBY_ADMIN_URL=http://localhost/admin + GATSBY_BASE_URL=http://localhost + GATSBY_FRONTEND_URL=http://localhost:8000 + GATSBY_ORGANIZATION=http://webresourcecatalogus.conduction.svc.cluster.local/organizations/b2d3176e-f1c6-4365-ab86-dd253c65fc43 + GATSBY_LOGIN_REDIRECT=vault + GATSBY_ADMIN_DASHBOARD_URL=https://admin.opencatalogi.nl + `} Herstart de front-end na het aanpassen van dit bestand. Node.js / NPM diff --git a/pwa/src/templates/templateParts/footer/FooterTemplate.tsx b/pwa/src/templates/templateParts/footer/FooterTemplate.tsx index 341c9feac..5a6f436b3 100644 --- a/pwa/src/templates/templateParts/footer/FooterTemplate.tsx +++ b/pwa/src/templates/templateParts/footer/FooterTemplate.tsx @@ -183,7 +183,7 @@ export const FooterTemplate: React.FC = ({ layoutClassName
  • - + diff --git a/pwa/src/templates/templateParts/header/HeaderTemplate.tsx b/pwa/src/templates/templateParts/header/HeaderTemplate.tsx index 41d9c9829..bcfd53865 100644 --- a/pwa/src/templates/templateParts/header/HeaderTemplate.tsx +++ b/pwa/src/templates/templateParts/header/HeaderTemplate.tsx @@ -27,9 +27,6 @@ export const HeaderTemplate: React.FC = ({ layoutClassName const { t } = useTranslation(); const [filters, setFilters] = React.useContext(FiltersContext); const [topNavItems, setTopNavItems] = React.useState([]); - // arrowNav should become a configuration key - const [arrowNav, setArrowNav] = React.useState(false); - // themeContext should be removed after arrowNav has become a configuration key const { pageContext: { @@ -145,7 +142,7 @@ export const HeaderTemplate: React.FC = ({ layoutClassName label: t("Login"), current: pathname === "/login", handleClick: () => { - open(window.sessionStorage.getItem("ADMIN_DASHBOARD_URL") ?? "#"); + open(process.env.ADMIN_DASHBOARD_URL ?? "#"); }, icon: , }, @@ -160,15 +157,6 @@ export const HeaderTemplate: React.FC = ({ layoutClassName setTopNavItems([...primaryTopNavItems, ...secondaryTopNavItems]); }, [screenSize, pathname, crumbs]); - React.useEffect(() => { - if (process.env.GATSBY_ARROW_BREADCRUMBS === "true") { - setArrowNav(true); - return; - } - - setArrowNav(false); - }, []); - return (
    @@ -212,7 +200,7 @@ export const HeaderTemplate: React.FC = ({ layoutClassName )} {pathname !== "/" && ( - {arrowNav && ( + {process.env.GATSBY_ARROW_BREADCRUMBS === "true" && ( {translatedCrumbs.map((crumb: any, idx: number) => { if (crumbs.length !== idx + 1) { @@ -230,7 +218,7 @@ export const HeaderTemplate: React.FC = ({ layoutClassName })} )} - {!arrowNav && ( + {process.env.GATSBY_ARROW_BREADCRUMBS === "false" && ( {translatedCrumbs.map((crumb: any, idx: number) => { if (crumbs.length !== idx + 1) { diff --git a/pwa/static/.env.development b/pwa/static/.env.development index 43a1a1e59..727cb6c64 100644 --- a/pwa/static/.env.development +++ b/pwa/static/.env.development @@ -1,13 +1,13 @@ -# Connect Backend -GATSBY_ME_URL=http://localhost/me -GATSBY_API_URL=http://localhost/api -GATSBY_ADMIN_URL=http://localhost/admin -GATSBY_BASE_URL=http://localhost -GATSBY_FRONTEND_URL=http://localhost:8000 -GATSBY_ORGANIZATION=http://webresourcecatalogus.conduction.svc.cluster.local/organizations/b2d3176e-f1c6-4365-ab86-dd253c65fc43 +# Backend-config +GATSBY_ME_URL=https://api.opencatalogi.nl/api/users/me +GATSBY_API_URL=https://api.opencatalogi.nl/api +GATSBY_ADMIN_URL=https://api.opencatalogi.nl/admin +GATSBY_BASE_URL=https://api.opencatalogi.nl +GATSBY_FRONTEND_URL=https://api.opencatalogi.nl +GATSBY_ORGANIZATION="" GATSBY_LOGIN_REDIRECT=vault GATSBY_ADMIN_DASHBOARD_URL=https://admin.opencatalogi.nl # Config GATSBY_NL_DESIGN_THEME_CLASSNAME=rotterdam-theme -GATSBY_ARROW_BREADCRUMBS="false" \ No newline at end of file +GATSBY_ARROW_BREADCRUMBS="false" diff --git a/pwa/static/env.js b/pwa/static/env.js deleted file mode 100644 index 1cfa32d86..000000000 --- a/pwa/static/env.js +++ /dev/null @@ -1,23 +0,0 @@ -window.sessionStorage.setItem( - "GATSBY_ME_URL", - "https://api.opencatalogi.nl/api/users/me" -); -window.sessionStorage.setItem( - "GATSBY_API_URL", - "https://api.opencatalogi.nl/api" -); -window.sessionStorage.setItem( - "GATSBY_ADMIN_URL", - "https://api.opencatalogi.nl/admin" -); -window.sessionStorage.setItem("GATSBY_BASE_URL", "https://api.opencatalogi.nl"); -window.sessionStorage.setItem( - "GATSBY_FRONTEND_URL", - "https://api.opencatalogi.nl" -); -window.sessionStorage.setItem("GATSBY_ORGANIZATION", ""); -window.sessionStorage.setItem("GATSBY_LOGIN_REDIRECT", "vault"); -window.sessionStorage.setItem( - "ADMIN_DASHBOARD_URL", - "https://admin.opencatalogi.nl" -); From cab3008a1985a6692b0acdb0709e20aba8061f37 Mon Sep 17 00:00:00 2001 From: Remko Date: Wed, 27 Sep 2023 09:24:29 +0200 Subject: [PATCH 3/3] cleanup --- README.md | 30 +++++++++---------- pwa/src/layout/Layout.tsx | 4 +++ .../UsageDocumentationTemplate.tsx | 18 +++++------ pwa/static/.env.production | 2 +- 4 files changed, 29 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index d7270336d..466ac0e28 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ To set up your own project, you will need a GitHub account and be logged in. Sim To develop locally, clone your new repository to your local machine. Open the terminal, navigate to the folder containing your repository, and make a choice to run the app in Node.js/npm or docker. ### Node.js / NPM -You will need a Git client(optional), and have Node.js and NPM installed. This will run the front-end on port :9000 so make sure nothing runs on that. +You will need a Git client(optional), and have Node.js and NPM installed. This will run the frontend on port :9000 so make sure nothing runs on that. ```cli $ cd /pwa @@ -27,7 +27,7 @@ $ npm run serve ### Docker -You will need to have docker installed. This will run the front-end on port :81 so make sure nothing runs on that. +You will need to have docker installed. This will run the frontend on port :81 so make sure nothing runs on that. ```cli $ docker-compose pull @@ -46,24 +46,24 @@ $ docker-compose up After succesfully setting up your dev environment, navigate to [http://localhost:81/](http://localhost:81/) to view the app in your browser. ### Configure back-end connection -To connect to front-end to your local back-end you will first need to set up your back-end, you can follow the installation guide provided [here](https://github.com/OpenCatalogi/OpenCatalogiBundle#opencatalogibundle-). +To connect to frontend to your local back-end you will first need to set up your back-end, you can follow the installation guide provided [here](https://github.com/OpenCatalogi/OpenCatalogiBundle#opencatalogibundle-). -To connect the app to your local gateway, you will need to change the environment variables in the `env.js` file. Replace the content of the file with the following: +To connect the app to your local gateway, you will need to change the environment variables in the `.env.development` file. Replace the content below Backend-config with the following: ``` -window.sessionStorage.setItem("GATSBY_ME_URL", "http://localhost/api/users/me"); -window.sessionStorage.setItem("GATSBY_API_URL", "http://localhost/api"); -window.sessionStorage.setItem("GATSBY_ADMIN_URL", "http://localhost/admin"); -window.sessionStorage.setItem("GATSBY_BASE_URL", "http://localhost"); -window.sessionStorage.setItem("GATSBY_FRONTEND_URL", "http://localhost"); -window.sessionStorage.setItem("GATSBY_ORGANIZATION", ""); -window.sessionStorage.setItem("GATSBY_LOGIN_REDIRECT", "vault"); -window.sessionStorage.setItem("ADMIN_DASHBOARD_URL", "http://localhost:8000"); +GATSBY_ME_URL=http://localhost/me +GATSBY_API_URL=http://localhost/api +GATSBY_ADMIN_URL=http://localhost/admin +GATSBY_BASE_URL=http://localhost +GATSBY_FRONTEND_URL=http://localhost:8000 +GATSBY_ORGANIZATION=http://webresourcecatalogus.conduction.svc.cluster.local/organizations/b2d3176e-f1c6-4365-ab86-dd253c65fc43 +GATSBY_LOGIN_REDIRECT=vault +GATSBY_ADMIN_DASHBOARD_URL=https://admin.opencatalogi.nl ``` -After editing this file restart the front-end +After editing this file restart the frontend #### Node.js / NPM -Stop the server by pressing `CTRL + C` and rebuild the front-end: +Stop the server by pressing `CTRL + C` and rebuild the frontend: ```cli $ npm run build @@ -71,7 +71,7 @@ $ npm run serve ``` #### Docker -Stop the server by pressing `CTRL + C` and restart the front-end: +Stop the server by pressing `CTRL + C` and restart the frontend: ```cli $ docker-compose down $ docker-compose up diff --git a/pwa/src/layout/Layout.tsx b/pwa/src/layout/Layout.tsx index 37ad12937..bc792a8c1 100644 --- a/pwa/src/layout/Layout.tsx +++ b/pwa/src/layout/Layout.tsx @@ -86,9 +86,13 @@ const Layout: React.FC = ({ children, pageContext, location }) => { + + +
    {children}
    +
    diff --git a/pwa/src/templates/documentation/usageDocumentation/UsageDocumentationTemplate.tsx b/pwa/src/templates/documentation/usageDocumentation/UsageDocumentationTemplate.tsx index 68001a1ca..131408d5c 100644 --- a/pwa/src/templates/documentation/usageDocumentation/UsageDocumentationTemplate.tsx +++ b/pwa/src/templates/documentation/usageDocumentation/UsageDocumentationTemplate.tsx @@ -126,7 +126,7 @@ export const UsageDocumentationTemplate: React.FC = () => { Node.js / NPM - Je hebt een Git client nodig(optioneel), en je moet Node.js en NPM geïnstalleerd hebben. Dit zal de front-end + Je hebt een Git client nodig(optioneel), en je moet Node.js en NPM geïnstalleerd hebben. Dit zal de frontend op poort:9000 laten draaien, dus zorg er voor dat de poort niet al in gebruik is. @@ -137,7 +137,7 @@ export const UsageDocumentationTemplate: React.FC = () => { Docker - Je moet Docker geïnstalleerd hebben. Dit zal de front-end op poort:81 laten draaien, dus zorg er voor dat de + Je moet Docker geïnstalleerd hebben. Dit zal de frontend op poort:81 laten draaien, dus zorg er voor dat de poort niet al in gebruik is. {`$ docker-compose pull`} @@ -165,7 +165,7 @@ export const UsageDocumentationTemplate: React.FC = () => { Back-endverbinding configureren - Om verbinding te maken tussen de front-end en de lokale back-end moet je eerst de back-end opstarten, je kunt + Om verbinding te maken tussen de frontend en de lokale back-end moet je eerst de back-end opstarten, je kunt de installatiehandleiding{" "} @@ -178,9 +178,9 @@ export const UsageDocumentationTemplate: React.FC = () => { volgen. - Om de front-end met de lokale gateway te laten praten moet je de omgevingsvariabelen in het{" "} - .env.development bestand veranderen. Vervang de inhoud onder het kopje Backend-config met het - volgende: + Om de frontend met de lokale gateway te laten praten moet je de omgevingsvariabelen in het{" "} + .env.development bestand veranderen. Vervang de inhoud onder het kopje{" "} + Backend-config met het volgende: {dedent` @@ -194,10 +194,10 @@ export const UsageDocumentationTemplate: React.FC = () => { GATSBY_ADMIN_DASHBOARD_URL=https://admin.opencatalogi.nl `} - Herstart de front-end na het aanpassen van dit bestand. + Herstart de frontend na het aanpassen van dit bestand. Node.js / NPM - Stop de server door op CTRL + C te drukken en bouw de front-end opnieuw + Stop de server door op CTRL + C te drukken en bouw de frontend opnieuw op: @@ -207,7 +207,7 @@ export const UsageDocumentationTemplate: React.FC = () => { Docker - Stop de server door op CTRL + C te drukken en herstart front-end: + Stop de server door op CTRL + C te drukken en herstart frontend: {dedent` diff --git a/pwa/static/.env.production b/pwa/static/.env.production index 97e4612d7..b725dec8a 100644 --- a/pwa/static/.env.production +++ b/pwa/static/.env.production @@ -1,4 +1,4 @@ -# Connect Backend +# Backend-config GATSBY_ME_URL= GATSBY_API_URL= GATSBY_ADMIN_URL=