{"info":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","description":"<html><head></head><body><p>Welcome to the Memorix API documentation. <a href=\"https://memorix.io\">Memorix</a> is a Collection Management System (CMS) build by <a href=\"https://www.vitec-memorix.com\">Vitec Memorix</a>.</p>\n<p>The heart of Memorix is a <a href=\"https://restfulapi.net/\">RESTful</a> API, using RDF payloads. There is also a <a href=\"https://en.wikipedia.org/wiki/Remote_procedure_call\">RPC</a> server to manipulate resources. You can use any tool that supports HTTPS connections to our API. In these examples <a href=\"https://curl.se\">cURL</a> is used as a HTTP client, using <a href=\"https://www.postman.com/\">Postman</a> is highly recommended to test the API.</p>\n<p>The Memorix API uses as much standard and open available ontologies as possible. For application context, we use our own <a href=\"https://memorix.io/ontology\">Memorix Ontology</a>.</p>\n<p>Most of our API endpoint communicate using RDF for both payloads and responses. You can use HTTP <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept\"><code>Accept</code></a> and/or <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type\"><code>Content-Type</code></a> headers to request or define a specific RDF serialisation, using one of these MIME types:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>MIME</th>\n<th>RDF Serialisation</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>application/ld+json</code></td>\n<td><a href=\"https://www.iana.org/assignments/media-types/application/ld+json\">JSON-LD</a></td>\n</tr>\n<tr>\n<td><code>text/turtle</code></td>\n<td><a href=\"https://www.iana.org/assignments/media-types/text/turtle\">Turtle</a></td>\n</tr>\n<tr>\n<td><code>application/n-triples</code></td>\n<td><a href=\"https://www.iana.org/assignments/media-types/application/n-triples\">N-Triples</a></td>\n</tr>\n<tr>\n<td><code>application/rdf+xml</code></td>\n<td><a href=\"https://www.iana.org/assignments/media-types/application/rdf+xml\">RDF+XML</a></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"authentication\">Authentication</h1>\n<p>To authorise, you will need to fetch a Bearer token from our <a href=\"https://en.wikipedia.org/wiki/OpenID\">OpenID</a> provider (<a href=\"https://www.keycloak.org/\">Keycloak</a>). Use the header <code>Authorization: Bearer {TOKEN}</code> to authenticate against our API. Our Postman Collection includes an Authentication Request, which will set the correct header for all other request automagically. Remember to set the <em>username</em> and <em>password</em> parameters before posting your Authorization request.</p>\n<h1 id=\"postman-specific-usage\">Postman specific usage</h1>\n<p>Our API is documented using a <a href=\"https://learning.postman.com/\">Postman</a> Collection.</p>\n<p>URL's and other variable data that depends on tenant and user specific information (like <em>username</em> and <em>password</em>) can be stored in a Postman <a href=\"https://learning.postman.com/docs/sending-requests/variables/#defining-global-and-environment-variables\">Environment</a>.</p>\n<p>These parameters are supported in the Environment:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>username</strong></td>\n<td>The name of the Memorix user</td>\n</tr>\n<tr>\n<td><strong>password</strong></td>\n<td>The password of the Memorix user</td>\n</tr>\n<tr>\n<td><strong>tenant</strong></td>\n<td>Memorix tenant code (<em>e.g.</em> <code>_pic_</code>)</td>\n</tr>\n<tr>\n<td><strong>auth_service</strong></td>\n<td>Full URL of the Memorix OpenID login service</td>\n</tr>\n<tr>\n<td><strong>memorix_api_url</strong></td>\n<td>Full URL of the Memorix API (<em>=this API</em>)</td>\n</tr>\n<tr>\n<td><strong>Content-Type</strong></td>\n<td>Specify the serialisation of your RDF payload</td>\n</tr>\n<tr>\n<td><strong>Accept</strong></td>\n<td>Specify the output serialisation of the response RDF</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"postman-magic\">Postman Magic</h2>\n<h3 id=\"magic-authentication\">Magic Authentication</h3>\n<p>All requests (except Authentication requests of course) try to authenticate <a href=\"https://learning.postman.com/docs/writing-scripts/pre-request-scripts/\">automagically</a> by sending a POST request to the <a href=\"https://test.memorix.io\"><i>https://test.memorix.io</i></a> endpoint using your Environment variables. The Bearer token is then automagically added to your request.</p>\n<h3 id=\"magic-setting-of-example-ids\">Magic setting of example ID's</h3>\n<p>Fetching a single resource from our REST API requires the ID of that resource. Every request to a list of that same resource automagically sets a corresponding ID as a Postman Collection variable. So something like this can be done:</p>\n<ol>\n<li><p>GET <code>https://test.memorix.io/records</code></p>\n</li>\n<li><p>GET <code>https://test.memorix.io/records/</code></p>\n</li>\n</ol>\n<h1 id=\"error-codes\">Error Codes</h1>\n<p>Most of our endpoints will provide feedback (in RDF) when an error occurs. Next to an error message, a HTTP Status Code will be send by our HTTP server. Error messages should provide you with enough information to tell you what you can do when an error occurs. Errors codes starting with <code>4</code> are most likely your own fault, those starting with <code>5</code> are our fault, there is probably not a lot you can do by yourself if such an error occurs.</p>\n<p>The Memorix API uses the following error codes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Code</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400</td>\n<td>Bad Request -- Your request is invalid.</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorised -- Your Bearer token is not accepted, you could try again with another token.</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Forbidden -- Your credentials do not allow the action you want to do. Retrying is useless.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found -- The specified Resource could not be found.</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Method Not Allowed -- Invalid input, validation failed (send SHACL validation report).</td>\n</tr>\n<tr>\n<td>406</td>\n<td>Not Acceptable -- Unable to generate any of the client’s preferred media types, as indicated by the Accept request header.</td>\n</tr>\n<tr>\n<td>410</td>\n<td>Gone -- The Resource requested has been removed from Memorix <em>currently unused</em>.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error -- We had a problem with our server, never your fault. Try again later.</td>\n</tr>\n<tr>\n<td>503</td>\n<td>Service Unavailable -- We're temporarily offline for maintenance. Please try again later.</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Postman specific usage","slug":"postman-specific-usage"},{"content":"Error Codes","slug":"error-codes"}],"owner":"19856689","collectionId":"32cbd5a6-d476-404a-bae0-159197eb176c","publishedId":"2sB3QMLooy","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-10-13T13:11:26.000Z"},"item":[{"name":"Activity log","item":[{"name":"Queue Count","id":"3c252ddc-1120-4ced-96a3-4d1e789a21e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/activity-log/queue/count","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","queue","count"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"05067cfd-3cec-46cb-a03b-b26078343ca6","name":"Queue Count","originalRequest":{"method":"GET","header":[],"url":"http://localhost:8080/activity-log/queue/count"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 0\n}"}],"_postman_id":"3c252ddc-1120-4ced-96a3-4d1e789a21e7"}],"id":"fc5d85fa-82df-46ff-a90a-513b1af63b1d","_postman_id":"fc5d85fa-82df-46ff-a90a-513b1af63b1d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Admin","item":[{"name":"Publication","item":[{"name":"Filters","item":[{"name":"List recordtype filter fields","id":"0f227908-840d-4812-a9de-54f8429f68e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/publication/recordtype//filter","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","publication","recordtype","","filter"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f227908-840d-4812-a9de-54f8429f68e8"},{"name":"Update recordtype filter field","id":"2be74a57-6a18-4839-9388-193cd6d2fedf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    id: \"Image.image:fondsLink\",\n    type: \"autocomplete\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/publication/recordtype//filter","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","publication","recordtype","","filter"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2be74a57-6a18-4839-9388-193cd6d2fedf"}],"id":"22401839-d42b-48c3-9460-59ca48aa08de","_postman_id":"22401839-d42b-48c3-9460-59ca48aa08de","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Date","item":[{"name":"List recordtype date fields","id":"df7deee0-c487-480b-98b3-c86ad4e7e408","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/admin/publication/recordtype//date","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","publication","recordtype","","date"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"df7deee0-c487-480b-98b3-c86ad4e7e408"},{"name":"Configure index date","id":"966966a8-1c50-4980-a8f7-070f817e3131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"date\": {\n        \"start\": {\n            \"field\": [\"Image.image:date\"]\n        },\n        \"end\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/publication/recordtype//date","description":"<p>Set fields to use as start / end date in Elements</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","publication","recordtype","","date"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"966966a8-1c50-4980-a8f7-070f817e3131"}],"id":"fc0b2cf7-4626-4363-b777-1a23d50f4f7f","_postman_id":"fc0b2cf7-4626-4363-b777-1a23d50f4f7f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"List publication configuration","id":"725e2e49-baec-43a3-a7bc-a9dc522d76ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/admin/publication/recordtype","description":"<p>Returns a list of recordtypes that will be indexed to the Elements API.</p>\n<ul>\n<li><p>Only record types with published: true are indexed</p>\n</li>\n<li><p>Date configuration includes both start and end date field mappings</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","publication","recordtype"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"725e2e49-baec-43a3-a7bc-a9dc522d76ce"},{"name":"Publish recordtype","id":"6cb55659-9247-4284-a8ce-01b675bd88bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    publish: true\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/publication/recordtype//publish","description":"<p>This endpoint controls if a recordtype should be published in elements.  </p>\n<p>Warning unpublishing a recordtype means all of it's data will be deleted! Use with caution.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","publication","recordtype","","publish"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"2b0d5d91-e82f-4dc4-a753-af0fe705944e","name":"Publish recordtype","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    publish: true\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/publication/recordtype//publish"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d8c1d75b-4237-49ed-a606-ef673805609d","name":"Depublish recordtype","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    publish: false\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/publication/recordtype//publish"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6cb55659-9247-4284-a8ce-01b675bd88bf"}],"id":"f200a9dd-e3b8-4b21-b577-9c48b80195dd","_postman_id":"f200a9dd-e3b8-4b21-b577-9c48b80195dd","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Reindex Monitoring","item":[{"name":"Get Reindex History","id":"84c004bc-8c22-4199-8b60-bc1d86aa9ba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/reindex/history","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reindex","history"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"6fdf94c4-c3b8-4edf-bbe3-4f1a61e0a20a","name":"Get Reindex History","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/reindex/history"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"bc55fd31-33c8-416a-a46f-54c2c352f935\",\n        \"type\": \"Search\",\n        \"status\": \"Active\",\n        \"recordType\": null,\n        \"offset\": 0,\n        \"createdBy\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n        \"createdAt\": \"2026-04-14T13:59:14.523118\",\n        \"modifiedAt\": null\n    }\n]"}],"_postman_id":"84c004bc-8c22-4199-8b60-bc1d86aa9ba6"},{"name":"Get Active Reindex","id":"d1fbbd5d-4198-4789-b3cf-4d6eb1337814","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/reindex/status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reindex","status"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"789c394d-6a59-422a-a8d1-120c076f1a9b","name":"Get Active Reindex","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/reindex/status"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"bc55fd31-33c8-416a-a46f-54c2c352f935\",\n    \"type\": \"Search\",\n    \"status\": \"Active\",\n    \"recordType\": null,\n    \"offset\": 0,\n    \"createdBy\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n    \"createdAt\": \"2026-04-14T13:59:14.523118\",\n    \"modifiedAt\": null\n}"}],"_postman_id":"d1fbbd5d-4198-4789-b3cf-4d6eb1337814"},{"name":"Get Reindex Status by ID","id":"c6370466-b7e7-43fc-b2ab-760c03bb6c0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/reindex/status/{{id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reindex","status","{{id}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"22c74e61-1373-4a3f-811b-ee8df9b6931b","name":"Get Reindex Status by ID","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/reindex/status/{{id}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"bc55fd31-33c8-416a-a46f-54c2c352f935\",\n    \"type\": \"Search\",\n    \"status\": \"Active\",\n    \"recordType\": null,\n    \"offset\": 0,\n    \"createdBy\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n    \"createdAt\": \"2026-04-14T13:59:14.523118\",\n    \"modifiedAt\": null\n}"}],"_postman_id":"c6370466-b7e7-43fc-b2ab-760c03bb6c0d"}],"id":"0d8048d4-c94e-475a-be75-83de55288471","_postman_id":"0d8048d4-c94e-475a-be75-83de55288471","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Reindex","id":"75ed61c0-17c4-4ac8-a1c5-49710fed4ade","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexElementsRecordTypes\",\n    \"ids\": [\"Image\"]\n}"},"url":"https://test.memorix.io/admin/reindex","description":"<p>This endpoint is only intended for disaster recovery, use with care.</p>\n<p>It can take a long time to run and interfere with other actions.</p>\n<p>When you use the option <strong>recreateSearchIndex</strong> it will delete the current elastic index and index all records again, this means that the records are momentarily gone in the UI, and should only be used when the index is required to be changed, normally this should be updated through a migration.</p>\n<p>Recreating titles / description with the <strong>recreateTitle</strong> and <strong>recreateDescription</strong> can take a long time as it will generate a new title or description with SPARQL for each row and saves it to the database, this should be used with caution**.**</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"ReindexRecordTypes\",\n    \"ids\": [\"File\"],\n    \"options\": {\n        // creates a new ES index\n        \"recreateSearchIndex\": false,\n        // generates new titles from the datagraph and stores them in postgres\n        \"recreateTitle\": false,\n        // generates new description from the datagraph and stores them in postgres\n        \"recreateDescription\": false\n    }\n} \n\n</code></pre>\n<h2 id=\"elements-reindexing\">Elements reindexing</h2>\n<p>The following option enabled will create a new elastic index for the recordtype, and points this write alias to it.<br />All reads will still come from the previous old elastic index to avoid returning empty results on the website.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reindex"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"40115a0c-a525-4327-9c48-c95441f8a764","name":"Reindex specific recordtype","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexRecordTypes\",\n    \"ids\": [\"Image\"],\n    \"options\": {\n        \"recreateSearchIndex\": true,\n        \"recreateTitle\": false,\n        \"recreateDescription\": false\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b9b8e2ef-0ffa-4be5-974e-82101327b1e8","name":"Reindex specific recordtype from certain date","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexRecordTypes\",\n    \"ids\": [\"Image\"],\n    \"options\": {\n        \"recreateSearchIndex\": false,\n        \"recreateTitle\": false,\n        \"recreateDescription\": false,\n        \"modifiedSince\": \"2025-03-12T12:59:54Z\"\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"3793910e-428b-45db-be33-44219bcc7ebb","name":"Reindex all recordtypes in elastic, and create new index","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexAllRecordTypes\",\n    \"options\": {\n        \"recreateSearchIndex\": true,\n        \"recreateTitle\": false,\n        \"recreateDescription\": false\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cf21f6df-a3f9-401b-af10-345e6d99ce93","name":"Reindex all recordtypes in elastic (don't recreate indexes)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexAllRecordTypes\",\n    \"options\": {\n        \"recreateSearchIndex\": false,\n        \"recreateTitle\": false,\n        \"recreateDescription\": false\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"661b16a1-e9c9-4b5e-a11a-540d632335dd","name":"Reindex all recordtypes in elastic from certain date","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexAllRecordTypes\",\n    \"options\": {\n        \"recreateSearchIndex\": false,\n        \"recreateTitle\": false,\n        \"recreateDescription\": false,\n        \"modifiedSince\": \"2025-03-12T12:59:54Z\"\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e695b87e-72d7-4355-88c8-582f20494ad4","name":"Reindex elements recordtype","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexElementsRecordTypes\",\n    \"ids\": [\"Image\"]\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9153a579-173b-463b-8555-7e746806162c","name":"Reindex elements recordtype and create new search index","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexElementsRecordTypes\",\n    \"ids\": [\"Image\"],\n    \"options\": {\n        \"recreateSearchIndex\": true        \n    }\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"f95cb355-8ccf-43e6-96b8-8095ab65de26","name":"Reindex elements recordtype since timestamp","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexElementsRecordTypes\",\n    \"ids\": [\"Image\"],\n    \"options\": {\n        \"modifiedSince\": \"2025-03-12T12:59:54Z\"\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d6fa6751-6bc7-4b6c-837c-12144fabc1f0","name":"Reindex nexus record(s) by id","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexRecord\",\n    \"ids\": [\"a5a7dab2-44c6-4c62-a52f-1041e60fe9a5\"]\n}\n"},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"82673c18-9b6b-4fdc-8d7f-0e7374272f7d","name":"Reindex element record(s) by id","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexElementsRecord\",\n    \"ids\": [\"0328022f-f066-4c5b-929a-58f83427e88d\"]\n}\n"},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"a954a25a-2d03-49c8-bd05-cf9d358811b9","name":"Reindex element assets","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexElementsAsset\"    \n}\n"},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"9d6fb56a-ffa5-4a40-8be9-22f773e2a3c5","name":"Reindex element assets (and create new index)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ReindexElementsAsset\",\n    \"options\": {\n        \"recreateSearchIndex\": true        \n    }\n}\n"},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"75ed61c0-17c4-4ac8-a1c5-49710fed4ade"},{"name":"Set Picturae SSO status","id":"d4c48a77-3522-46ee-aa03-d14816fdef7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enabled\": true\n} "},"url":"https://test.memorix.io/admin/helpdesk/sso","description":"<p>Enable or disable SSO access from Picturae employees for helpdesk support.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","helpdesk","sso"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"08a4970c-ab35-4b0d-be73-d7c66e584693","name":"Reindex specific recordtype","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticRecordTypes\",\n    \"recreate\": true,\n    \"ids\": [\"File\"]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c1eaec7f-1f7b-4a57-9934-51081a56b2d3","name":"Reindex all recordtypes in elastic","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticAllRecordTypes\",\n    \"recreate\": true\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"c74d9c6b-c62a-41ba-8930-d2a09ee59c06","name":"Reindex all recordtypes in elastic (don't recreate indexes)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticAllRecordTypes\",\n    \"recreate\": false\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"69f92f4f-0502-435c-b068-7266ee85268f","name":"Reindex specific recordtype to triple store","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"TripleStoreRecordTypes\",\n    \"ids\": [\"Image\"]\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d5947f60-deeb-4501-a4cf-e3f32fc1a373","name":"Reindex all recordtypes to triple stor","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"TripleStoreAllRecordTypes\"\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d4c48a77-3522-46ee-aa03-d14816fdef7c"},{"name":"Get Picturae SSO status","id":"68780d4a-38ad-4956-8bbb-fcbc2d19a3b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enabled\": true\n} "},"url":"https://test.memorix.io/admin/helpdesk/sso","description":"<p>Enable or disable SSO access from Picturae employees for helpdesk support.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","helpdesk","sso"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"9bbe5692-6024-4a30-af5c-47b0e7ed2cd1","name":"Reindex specific recordtype","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticRecordTypes\",\n    \"recreate\": true,\n    \"ids\": [\"File\"]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"12a11544-37ef-4a4d-880b-925205540ff0","name":"Reindex all recordtypes in elastic","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticAllRecordTypes\",\n    \"recreate\": true\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7c171f9a-bee9-4b74-a29c-bf4f8d693f79","name":"Reindex all recordtypes in elastic (don't recreate indexes)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticAllRecordTypes\",\n    \"recreate\": false\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b9b2b56a-53f9-411c-995c-c19fe37f7f58","name":"Reindex specific recordtype to triple store","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"TripleStoreRecordTypes\",\n    \"ids\": [\"Image\"]\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d0d5b37b-7aa3-453c-b51d-4e9dbfa43f77","name":"Reindex all recordtypes to triple stor","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"TripleStoreAllRecordTypes\"\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"68780d4a-38ad-4956-8bbb-fcbc2d19a3b8"},{"name":"Ping","id":"00252c8f-d1c7-4d4e-8633-3fec8dce204a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enabled\": true\n} "},"url":"https://test.memorix.io/admin/helpdesk/sso","description":"<p>Enable or disable SSO access from Picturae employees for helpdesk support.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","helpdesk","sso"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"555d992a-005f-4f3c-87e5-170bfef9856d","name":"Reindex specific recordtype","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticRecordTypes\",\n    \"recreate\": true,\n    \"ids\": [\"File\"]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/reindex"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"17961835-1620-47e8-8ad7-d11e2ca015da","name":"Reindex all recordtypes in elastic","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticAllRecordTypes\",\n    \"recreate\": true\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"4e5c6588-c2f3-48ff-a447-d8b789946e43","name":"Reindex all recordtypes in elastic (don't recreate indexes)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"ElasticAllRecordTypes\",\n    \"recreate\": false\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"cc6f7b3c-37b8-4a73-993e-4fff83e235bc","name":"Reindex specific recordtype to triple store","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"TripleStoreRecordTypes\",\n    \"ids\": [\"Image\"]\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7dfe0350-e7c2-49ac-b9d9-adf493599ce3","name":"Reindex all recordtypes to triple stor","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"TripleStoreAllRecordTypes\"\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/admin/reindex?","host":["https://test.memorix.io"],"path":["admin","reindex"],"query":[{"key":"","value":null}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"00252c8f-d1c7-4d4e-8633-3fec8dce204a"}],"id":"9fd4ed4c-808c-4a4e-be71-685b7058e88c","_postman_id":"9fd4ed4c-808c-4a4e-be71-685b7058e88c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Annotations","item":[{"name":"Get annotations","id":"e9d3ac7a-ccf6-4a28-b304-adad8edc7dc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/records//annotation/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","","annotation",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"b9a1add7-785b-4795-8494-edd8b5459191","name":"Get annotations","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records//annotation/"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n   \"@context\":\"http://www.w3.org/ns/anno.jsonld\",\r\n   \"id\":\"https://example.memorix-test.nl/resources/records/9db9dffd-b2bc-4478-9763-cac8e42306e4/iiif/3/canvas/f2cd469c-d95b-4110-979a-7af3ef842f59\",\r\n   \"type\":\"AnnotationPage\",\r\n   \"items\":[\r\n      {\r\n         \"id\":\"a2073325-a7b3-49c4-afce-5b114992a4e0\",\r\n         \"motivation\":\"commenting\",\r\n         \"type\":\"Annotation\",\r\n         \"body\":{\r\n            \"type\":\"TextualBody\",\r\n            \"value\":\"<p>Example annotation in the left upper corner.</p>\"\r\n         },\r\n         \"target\":{\r\n            \"source\":\"https://example.memorix-test.nl/resources/records/9db9dffd-b2bc-4478-9763-cac8e42306e4/iiif/3/canvas/f2cd469c-d95b-4110-979a-7af3ef842f59\",\r\n            \"selector\":[\r\n               {\r\n                  \"type\":\"FragmentSelector\",\r\n                  \"value\":\"xywh=1,1,67,59\"\r\n               },\r\n               {\r\n                  \"type\":\"SvgSelector\",\r\n                  \"value\":\"<svg xmlns='http://www.w3.org/2000/svg'><path xmlns=\\\"http://www.w3.org/2000/svg\\\" d=\\\"M1.46641,61.41803v-59.61936h67.48125v59.61936z\\\" data-paper-data=\\\"{&quot;state&quot;:null}\\\" fill=\\\"none\\\" fill-rule=\\\"nonzero\\\" stroke=\\\"#00bfff\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\" stroke-dasharray=\\\"\\\" stroke-dashoffset=\\\"0\\\" font-family=\\\"none\\\" font-weight=\\\"none\\\" font-size=\\\"none\\\" text-anchor=\\\"none\\\" style=\\\"mix-blend-mode: normal\\\"/></svg>\"\r\n               }\r\n            ]\r\n         }\r\n      }\r\n   ]\r\n}"}],"_postman_id":"e9d3ac7a-ccf6-4a28-b304-adad8edc7dc2"},{"name":"Create new annotation","id":"9d250c1c-1c6c-4412-8987-1e1ec3765944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/records//annotation/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","","annotation",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"2c3137ba-0a30-43f2-a6e9-7413751065b1","name":"Create new annotation","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"Annotation\",\r\n    \"motivation\": \"commenting\",\r\n    \"id\": \"\",\r\n    \"target\": {\r\n        \"source\": \"https://test.memorix.io/resources/records//iiif/3/canvas/\",\r\n        \"selector\":[\r\n            {\r\n                \"type\":\"FragmentSelector\",\r\n                \"value\":\"xywh=1,1,67,59\"\r\n            },\r\n            {\r\n                \"type\":\"SvgSelector\",\r\n                \"value\":\"<svg xmlns='http://www.w3.org/2000/svg'><path xmlns=\\\"http://www.w3.org/2000/svg\\\" d=\\\"M1.46641,61.41803v-59.61936h67.48125v59.61936z\\\" data-paper-data=\\\"{&quot;state&quot;:null}\\\" fill=\\\"none\\\" fill-rule=\\\"nonzero\\\" stroke=\\\"#00bfff\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\" stroke-dasharray=\\\"\\\" stroke-dashoffset=\\\"0\\\" font-family=\\\"none\\\" font-weight=\\\"none\\\" font-size=\\\"none\\\" text-anchor=\\\"none\\\" style=\\\"mix-blend-mode: normal\\\"/></svg>\"}]\r\n    },\r\n    \"body\": {\r\n        \"type\": \"TextualBody\",\r\n        \"value\":\"<p>Example annotation in the left upper corner.</p>\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/records//annotation/"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@context\": \"http://www.w3.org/ns/anno.jsonld\",\r\n    \"id\": \"https://example.memorix-test.nl/resources/records/7cfca3f5-f7ce-4435-a14d-9ba6532690c5/iiif/3/canvas/75eacf98-702e-4d78-bf1e-f5171c50b27d\",\r\n    \"type\": \"AnnotationPage\",\r\n    \"items\": [\r\n        {\r\n            \"id\": \"bbad1926-27f9-4ad2-8435-9c7c5e39ae1e\",\r\n            \"motivation\": \"commenting\",\r\n            \"type\": \"Annotation\",\r\n            \"body\": {\r\n                \"type\": \"TextualBody\",\r\n                \"value\": \"<p>Head</p>\"\r\n            },\r\n            \"target\": {\r\n                \"source\": \"https://example.memorix-test.nl/resources/records/7cfca3f5-f7ce-4435-a14d-9ba6532690c5/iiif/3/canvas/75eacf98-702e-4d78-bf1e-f5171c50b27d\",\r\n                \"selector\": [\r\n                    {\r\n                        \"type\": \"FragmentSelector\",\r\n                        \"value\": \"xywh=268,277,272,245\"\r\n                    },\r\n                    {\r\n                        \"type\": \"SvgSelector\",\r\n                        \"value\": \"<svg xmlns='http://www.w3.org/2000/svg'><path xmlns=\\\"http://www.w3.org/2000/svg\\\" d=\\\"M268.53855,400.38046c0,-67.70693 60.89061,-122.59425 136.00299,-122.59425c75.11238,0 136.00299,54.88731 136.00299,122.59425c0,67.70693 -60.89061,122.59425 -136.00299,122.59425c-75.11238,0 -136.00299,-54.88731 -136.00299,-122.59425z\\\" data-paper-data=\\\"{&quot;state&quot;:null}\\\" fill=\\\"none\\\" fill-rule=\\\"nonzero\\\" stroke=\\\"#00bfff\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\" stroke-dasharray=\\\"\\\" stroke-dashoffset=\\\"0\\\" font-family=\\\"none\\\" font-weight=\\\"none\\\" font-size=\\\"none\\\" text-anchor=\\\"none\\\" style=\\\"mix-blend-mode: normal\\\"/></svg>\"\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"9d250c1c-1c6c-4412-8987-1e1ec3765944"},{"name":"Delete annotation","id":"dbcb30ac-9173-495f-b064-8b14f9fadd1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/records/annotation/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","annotation",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"c04695a8-29e8-444d-b822-9ffa1c1d32c7","name":"Delete annotation","originalRequest":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/records/annotation/"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n   \"@context\":\"http://www.w3.org/ns/anno.jsonld\",\r\n   \"id\":https://example.memorix-test.nl/resources/records/9db9dffd-b2bc-4478-9763-cac8e42306e4/iiif/3/canvas/f2cd469c-d95b-4110-979a-7af3ef842f59\",\r\n   \"type\":\"AnnotationPage\",\r\n   \"items\":[\r\n      \r\n   ]\r\n}"}],"_postman_id":"dbcb30ac-9173-495f-b064-8b14f9fadd1f"},{"name":"Update annotation","id":"a2bd801d-27eb-4621-bd21-7f93ce3ca96d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/records/annotation/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","annotation",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"e337eb01-49fe-4461-b544-7ddc3cb5ef00","name":"Update annotation","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"type\": \"Annotation\",\r\n    \"motivation\": \"codsting\",\r\n    \"id\": \"\",\r\n    \"target\": {\r\n        \"source\": \"https://test.memorix.io/resources/records//iiif/3/canvas/\",\r\n        \"selector\": [\r\n            {\r\n                \"type\": \"FragmentSelector\",\r\n                \"value\": \"xywh:1313,856,585,643\"\r\n            },\r\n            {\r\n                \"type\": \"SvgSelector\",\r\n                \"value\": \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\"><path xmlns=\\\"http://www.w3.org/2000/svg\\\" d=\\\"M950.8959,1663.81505v-237.31905h187.35714v237.31905z\\\" data-paper-data=\\\"{&quot;state&quot;:null}\\\" fill=\\\"none\\\" fill-rule=\\\"nonzero\\\" stroke=\\\"#00bfff\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\" stroke-dasharray=\\\"\\\" stroke-dashoffset=\\\"0\\\" font-family=\\\"none\\\" font-weight=\\\"none\\\" font-size=\\\"none\\\" text-anchor=\\\"none\\\" style=\\\"mix-blend-mode: normal\\\"/></svg>\"\r\n            }\r\n        ]\r\n    },\r\n    \"body\": {\r\n        \"value\": \"<p>Updated Value</p>\",\r\n        \"type\": \"TextualBody\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/records/annotation/"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@context\": \"http://www.w3.org/ns/anno.jsonld\",\r\n    \"id\": \"https://example.memorix-test.nl/resources/records/9db9dffd-b2bc-4478-9763-cac8e42306e4/iiif/3/canvas/f2cd469c-d95b-4110-979a-7af3ef842f59\",\r\n    \"type\": \"AnnotationPage\",\r\n    \"items\": [\r\n        {\r\n            \"id\": \"a2073325-a7b3-49c4-afce-5b114992a4e0\",\r\n            \"motivation\": \"codsting\",\r\n            \"type\": \"Annotation\",\r\n            \"body\": {\r\n                \"type\": \"TextualBody\",\r\n                \"value\": \"<p>Updated Value</p>\"\r\n            },\r\n            \"target\": {\r\n                \"source\": \"\"https://example.memorix-test.nl/resources/records/9db9dffd-b2bc-4478-9763-cac8e42306e4/iiif/3/canvas/f2cd469c-d95b-4110-979a-7af3ef842f59\",\r\n                \"selector\": [\r\n                    {\r\n                        \"type\": \"FragmentSelector\",\r\n                        \"value\": \"xywh:1313,856,585,643\"\r\n                    },\r\n                    {\r\n                        \"type\": \"SvgSelector\",\r\n                        \"value\": \"<svg xmlns=\\\"http://www.w3.org/2000/svg\\\"><path xmlns=\\\"http://www.w3.org/2000/svg\\\" d=\\\"M950.8959,1663.81505v-237.31905h187.35714v237.31905z\\\" data-paper-data=\\\"{&quot;state&quot;:null}\\\" fill=\\\"none\\\" fill-rule=\\\"nonzero\\\" stroke=\\\"#00bfff\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\" stroke-dasharray=\\\"\\\" stroke-dashoffset=\\\"0\\\" font-family=\\\"none\\\" font-weight=\\\"none\\\" font-size=\\\"none\\\" text-anchor=\\\"none\\\" style=\\\"mix-blend-mode: normal\\\"/></svg>\"\r\n                    }\r\n                ]\r\n            }\r\n        }\r\n    ]\r\n}"}],"_postman_id":"a2bd801d-27eb-4621-bd21-7f93ce3ca96d"}],"id":"37105952-96fc-4d3c-9a14-20306c94533d","_postman_id":"37105952-96fc-4d3c-9a14-20306c94533d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Archives","item":[{"name":"Search fonds / file records","event":[{"listen":"prerequest","script":{"id":"1d15cad5-461b-4c09-9fb6-31bf33b6012b","exec":[""],"type":"text/javascript"}}],"id":"82f1a05d-ccf1-4bd6-96ed-5ad9558a04eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/archives/search?type=File&q=g*","description":"<p>Create a reservation for an archive record that is defined as a \"File\" recordtype only records which have a fond and file identifier stored can be reserved.</p>\n<p>This is to be used by users authenticated against the services realm not for memorix users.</p>\n<p>Only \"File\" records which have file and fond identifier can be reserved and have\"Allow reservations\" set to true, and do not have a public or use restriction on the desired date.</p>\n","urlObject":{"path":["archives","search"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Limit files on fond id</p>\n","type":"text/plain"},"key":"id","value":"0a345e56-bed1-4275-9a65-df882f013ad9"},{"description":{"content":"<p>Limit on \"Fonds\" or \"File\"</p>\n","type":"text/plain"},"key":"type","value":"File"},{"description":{"content":"<p>Search phrase can have a wildcard with *</p>\n","type":"text/plain"},"key":"q","value":"g*"}],"variable":[]}},"response":[],"_postman_id":"82f1a05d-ccf1-4bd6-96ed-5ad9558a04eb"},{"name":"Next fonds id","event":[{"listen":"prerequest","script":{"id":"1d15cad5-461b-4c09-9fb6-31bf33b6012b","exec":[""],"type":"text/javascript"}}],"id":"00b16ef5-2b70-470d-8714-e6dfb06eff97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/archives/fonds/id/next","description":"<p>Calculate the next fonds id.<br />If there are id's in the system with an extension e.g.<br />123.abc<br />or<br />123.1<br />it will take the first numeric part so the next id will be 124.</p>\n","urlObject":{"path":["archives","fonds","id","next"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"00b16ef5-2b70-470d-8714-e6dfb06eff97"}],"id":"df864cfc-d3ee-4f26-857d-1dfda7cf524f","_postman_id":"df864cfc-d3ee-4f26-857d-1dfda7cf524f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Assets","item":[{"name":"Download asset","id":"a80d77b1-e7c9-4152-a2fa-203ebbea54f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/assets/download/{{AssetUuid}}","description":"<p>Only published assets are allowed to be downloaded, unpublished assets can be downloaded with the correct permissions through an access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","assets","download","{{AssetUuid}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"60d705b6-a634-49f9-a98d-ec139fb7ec97","name":"Stream asset chunks","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/assets/download/{{AssetUuid}}?serveInline=true","host":["https://test.memorix.io"],"path":["resources","assets","download","{{AssetUuid}}"],"query":[{"key":"serveInline","value":"true"}]}},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""},{"id":"3d3514ad-cdb7-40fb-aafe-2b5d6031e596","name":"Download asset","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/assets/download/{{AssetUuid}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a80d77b1-e7c9-4152-a2fa-203ebbea54f2"},{"name":"Search Assets On File Name","id":"bd692802-256b-4b82-8f01-68d4f8e384c2","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/assets?search=bear&perPage=20","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","assets"],"host":["https://test.memorix.io"],"query":[{"key":"search","value":"bear"},{"key":"perPage","value":"20"}],"variable":[]}},"response":[{"id":"9221cd95-53d6-41c4-b334-416b28514464","name":"Search Assets On File Name","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/resources/assets?search=bear&perPage=20","host":["https://test.memorix.io"],"path":["resources","assets"],"query":[{"key":"search","value":"bear"},{"key":"perPage","value":"20"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": 22,\n            \"uuid\": \"8bee83b1-c66a-4cc5-8eba-b3e17268d8ab\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/8bee83b1-c66a-4cc5-8eba-b3e17268d8ab/info.json\",\n            \"filename\": \"3d-render-100-years-celebration-pen-tool-created-clipping-path-included-jpeg-easy-composite (1).jpg\",\n            \"mimetype\": \"image/jpeg\",\n            \"published\": false\n        },\n        {\n            \"id\": 32,\n            \"uuid\": \"714082b4-1632-4352-843d-c30fb9cf6f8e\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/714082b4-1632-4352-843d-c30fb9cf6f8e/info.json\",\n            \"filename\": \"3d-render-100-years-celebration-pen-tool-created-clipping-path-included-jpeg-easy-composite.jpg\",\n            \"mimetype\": \"image/jpeg\",\n            \"published\": false\n        },\n        {\n            \"id\": 202,\n            \"uuid\": \"2b2f26a7-27a5-4fc4-a843-921036e4cfd4\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/2b2f26a7-27a5-4fc4-a843-921036e4cfd4/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0001.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 203,\n            \"uuid\": \"51bed6b3-71ab-4669-b282-af98d6c0d56c\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/51bed6b3-71ab-4669-b282-af98d6c0d56c/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0002.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 204,\n            \"uuid\": \"507202ee-c3d0-41df-8324-ee9bbd8153e6\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/507202ee-c3d0-41df-8324-ee9bbd8153e6/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0003.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 205,\n            \"uuid\": \"eb35430a-c60f-4267-a1cb-8efad10df4d7\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/eb35430a-c60f-4267-a1cb-8efad10df4d7/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0004.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 201,\n            \"uuid\": \"b4665587-9e7e-4a59-9d41-70d26e386ef4\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/b4665587-9e7e-4a59-9d41-70d26e386ef4/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0005.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 206,\n            \"uuid\": \"e9db59df-eab8-4301-ac3e-d500eb8300fb\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/e9db59df-eab8-4301-ac3e-d500eb8300fb/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0006.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 207,\n            \"uuid\": \"b972c363-eabe-45f4-b483-dd25ce92bef9\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/b972c363-eabe-45f4-b483-dd25ce92bef9/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0007.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 210,\n            \"uuid\": \"e72e50d3-fe40-43ac-9281-385c307f9dfb\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/e72e50d3-fe40-43ac-9281-385c307f9dfb/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0008.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        }\n    ],\n    \"pagination\": {\n        \"perPage\": 10,\n        \"prev\": null,\n        \"next\": \"http://localhost:8080/resources/assets?perPage=10&from=eyJ1dWlkIjoiYmEzYmY5OTEtN2NjNS00NTdhLThlYzAtMDhjY2I0ZjEwOTc3IiwiZmlsZU5hbWUiOiJOTC1MZG5SQUxfQVJfMTAwNWJfNjZfMDAwOS5qcDIifQ%3D%3D\"\n    }\n}"},{"id":"fd7381f9-d752-4216-a47b-84f3ca0944ec","name":"Navigate In Search Assets On File Name","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text","disabled":true}],"url":{"raw":"https://test.memorix.io/resources/assets?perPage=10&from=eyJ1dWlkIjoiYmEzYmY5OTEtN2NjNS00NTdhLThlYzAtMDhjY2I0ZjEwOTc3IiwiZmlsZU5hbWUiOiJOTC1MZG5SQUxfQVJfMTAwNWJfNjZfMDAwOS5qcDIifQ==","host":["https://test.memorix.io"],"path":["resources","assets"],"query":[{"key":"perPage","value":"10"},{"key":"from","value":"eyJ1dWlkIjoiYmEzYmY5OTEtN2NjNS00NTdhLThlYzAtMDhjY2I0ZjEwOTc3IiwiZmlsZU5hbWUiOiJOTC1MZG5SQUxfQVJfMTAwNWJfNjZfMDAwOS5qcDIifQ=="}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": 22,\n            \"uuid\": \"8bee83b1-c66a-4cc5-8eba-b3e17268d8ab\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/8bee83b1-c66a-4cc5-8eba-b3e17268d8ab/info.json\",\n            \"filename\": \"3d-render-100-years-celebration-pen-tool-created-clipping-path-included-jpeg-easy-composite (1).jpg\",\n            \"mimetype\": \"image/jpeg\",\n            \"published\": false\n        },\n        {\n            \"id\": 32,\n            \"uuid\": \"714082b4-1632-4352-843d-c30fb9cf6f8e\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/714082b4-1632-4352-843d-c30fb9cf6f8e/info.json\",\n            \"filename\": \"3d-render-100-years-celebration-pen-tool-created-clipping-path-included-jpeg-easy-composite.jpg\",\n            \"mimetype\": \"image/jpeg\",\n            \"published\": false\n        },\n        {\n            \"id\": 202,\n            \"uuid\": \"2b2f26a7-27a5-4fc4-a843-921036e4cfd4\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/2b2f26a7-27a5-4fc4-a843-921036e4cfd4/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0001.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 203,\n            \"uuid\": \"51bed6b3-71ab-4669-b282-af98d6c0d56c\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/51bed6b3-71ab-4669-b282-af98d6c0d56c/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0002.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 204,\n            \"uuid\": \"507202ee-c3d0-41df-8324-ee9bbd8153e6\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/507202ee-c3d0-41df-8324-ee9bbd8153e6/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0003.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 205,\n            \"uuid\": \"eb35430a-c60f-4267-a1cb-8efad10df4d7\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/eb35430a-c60f-4267-a1cb-8efad10df4d7/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0004.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 201,\n            \"uuid\": \"b4665587-9e7e-4a59-9d41-70d26e386ef4\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/b4665587-9e7e-4a59-9d41-70d26e386ef4/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0005.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 206,\n            \"uuid\": \"e9db59df-eab8-4301-ac3e-d500eb8300fb\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/e9db59df-eab8-4301-ac3e-d500eb8300fb/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0006.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 207,\n            \"uuid\": \"b972c363-eabe-45f4-b483-dd25ce92bef9\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/b972c363-eabe-45f4-b483-dd25ce92bef9/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0007.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        },\n        {\n            \"id\": 210,\n            \"uuid\": \"e72e50d3-fe40-43ac-9281-385c307f9dfb\",\n            \"iiif\": \"http://localhost:8080/resources/iiif/3/e72e50d3-fe40-43ac-9281-385c307f9dfb/info.json\",\n            \"filename\": \"NL-LdnRAL_AR_1005b_66_0008.jp2\",\n            \"mimetype\": \"image/jp2\",\n            \"published\": false\n        }\n    ],\n    \"pagination\": {\n        \"perPage\": 10,\n        \"prev\": \"http://localhost:8080/resources/assets?perPage=10&from=eyJ1dWlkIjoiYmEzYmY5OTEtN2NjNS00NTdhLThlYzAtMDhjY2I0ZjEwOTc3IiwiZmlsZU5hbWUiOiJOTC1MZG5SQUxfQVJfMTAwNWJfNjZfMDAwOS5weDIifQ%3D%3D\",\n        \"next\": \"http://localhost:8080/resources/assets?perPage=10&from=eyJ1dWlkIjoiYmEzYmY5OTEtN2NjNS00NTdhLThlYzAtMDhjY2I0ZjEwOTc3IiwiZmlsZU5hbWUiOiJOTC1MZG5SQUxfQVJfMTAwNWJfNjZfMDAwOS5qcDIifQ%3D%3D\"\n    }\n}"}],"_postman_id":"bd692802-256b-4b82-8f01-68d4f8e384c2"},{"name":"Records by asset","id":"83700514-7944-4498-8232-bfca386d6e02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/assets//records","description":"<p>Get records that are linked to an asset and publicly available.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","assets","","records"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"0ea91c88-a6b8-4a69-8d0a-9064404b272c","name":"Records by asset","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/assets/{assetId}/records?page=1&perPage=4","host":["https://test.memorix.io"],"path":["resources","assets","{assetId}","records"],"query":[{"key":"page","value":"1","description":"offset"},{"key":"perPage","value":"4","description":"limit"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": \"35792c19-e290-4a85-b938-97a04b500b36\",\n            \"title\": \"Chuck Norris breaks RSA 128-bit encrypted codes in milliseconds.\",\n            \"collection\": {\n                \"id\": \"4672ce08-d9c6-4963-859d-c18036676a0c\",\n                \"title\": \"Images\"\n            },\n            \"recordType\": {\n                \"id\": \"Image\",\n                \"title\": \"Image\"\n            }\n        },\n        {\n            \"id\": \"7655ea84-b40e-474b-b072-ff92a3513ce2\",\n            \"title\": \"The only pattern Chuck Norris knows is God Object.\",\n            \"collection\": {\n                \"id\": \"4672ce08-d9c6-4963-859d-c18036676a0c\",\n                \"title\": \"Images\"\n            },\n            \"recordType\": {\n                \"id\": \"Image\",\n                \"title\": \"Image\"\n            }\n        },\n        {\n            \"id\": \"ac263efc-9ab6-4089-9c04-9b562ade963a\",\n            \"title\": \"Chuck Norris doesn't have performance bottlenecks. He just makes the universe wait its turn.\",\n            \"collection\": {\n                \"id\": \"4672ce08-d9c6-4963-859d-c18036676a0c\",\n                \"title\": \"Images\"\n            },\n            \"recordType\": {\n                \"id\": \"Image\",\n                \"title\": \"Image\"\n            }\n        },\n        {\n            \"id\": \"21bc4a9e-76b4-4d9f-97d4-af632c0c2cb1\",\n            \"title\": \"Chuck Norris writes code that optimizes itself.\",\n            \"collection\": {\n                \"id\": \"4672ce08-d9c6-4963-859d-c18036676a0c\",\n                \"title\": \"Images\"\n            },\n            \"recordType\": {\n                \"id\": \"Image\",\n                \"title\": \"Image\"\n            }\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 4,\n        \"total\": 4,\n        \"max\": null,\n        \"next\": null\n    }\n}"}],"_postman_id":"83700514-7944-4498-8232-bfca386d6e02"},{"name":"Get Asset Details","id":"5531995b-85bb-42ea-972c-2211600e49ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/assets/{{AssetUuid}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","assets","{{AssetUuid}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"436ab14a-250a-4cc8-b139-ee2ce7dc88dd","name":"Get Asset Details","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/assets/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"asset\": {\r\n        \"id\": 32,\r\n        \"uuid\": \"ea83e09b-28b7-4eaf-8a0c-d2aa667176cb\",\r\n        \"iiif\": \"http://localhost:8080/resources/iiif/3/ea83e09b-28b7-4eaf-8a0c-d2aa667176cb/info.json\",\r\n        \"filename\": \"photo.jpg\",\r\n        \"mimetype\": \"image/jpeg\",\r\n        \"fileSize\": 138820,\r\n        \"published\": true\r\n    }\r\n}"}],"_postman_id":"5531995b-85bb-42ea-972c-2211600e49ef"},{"name":"Adjust publication status for multiple linked assets","id":"9a25165e-0d12-4c2f-a562-ad818393a90b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"publish\": true,\n    \"asset\": {\n        \"type\": \"uuid\",\n        \"uuids\": [\"89bc72f2-edca-48bc-a491-f1210b7d331b\", \"f6fc2f2e-d338-44bd-817e-659012d7bc3b\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/asset/publish","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","asset","publish"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"0af678cd-5084-49c2-959f-32f879d2a54b","name":"Adjust publication status by multiple asset uuids","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"publish\": true,\n    \"asset\": {\n        \"type\": \"uuid\",\n        \"uuids\": [\"89bc72f2-edca-48bc-a491-f1210b7d331b\", \"f6fc2f2e-d338-44bd-817e-659012d7bc3b\"]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/asset/publish"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"bee3d595-b206-4c01-8607-67a9f4d4df4c","name":"Adjust publication status by record id","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"publish\": true,\n    \"asset\": {\n        \"type\": \"record\",\n        \"recordId\": \"89bc72f2-edca-48bc-a491-f1210b7d331b\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/asset/publish"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9a25165e-0d12-4c2f-a562-ad818393a90b"},{"name":"(Un)publish asset by id","id":"76639d33-4e0c-4fd7-9d89-3d929791d4b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{ \n    publish: true\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/asset/{{assetId}}/publish","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","asset","{{assetId}}","publish"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"a142c08c-7e68-43e4-b7b0-f340b0c9ec4a","name":"Publish asset by id","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{ \n    publish: true\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/asset/{{assetId}}/publish"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e47d646a-5adc-49cf-b71c-8612a900e824","name":"Unpublish asset by id","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{ \n    publish: false\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/asset/{{assetId}}/publish"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"76639d33-4e0c-4fd7-9d89-3d929791d4b0"}],"id":"b02724c9-9726-4e25-bbfa-ccc1b4ab7eaa","_postman_id":"b02724c9-9726-4e25-bbfa-ccc1b4ab7eaa","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Authentication","item":[{"name":"Authenticate (Username/Password)","event":[{"listen":"prerequest","script":{"id":"9671a0bb-518e-47e7-9964-50e595fd5823","exec":["if (pm.environment.get(\"username\") && !pm.collectionVariables.get(\"username\"))","    pm.collectionVariables.set(\"username\", pm.environment.get(\"username\"));","if (pm.environment.get(\"password\") && !pm.collectionVariables.get(\"password\"))","    pm.collectionVariables.set(\"password\", pm.environment.get(\"password\"));",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"cd4c7186-2ef9-4f3c-94b3-8517cee1ee81","exec":["pm.test(\"Username & Password available\", function() {","    const password = pm.environment.get(\"password\");","    const username = pm.environment.get(\"username\");","    pm.expect(password).to.be.a(\"string\");","    pm.expect(username).to.be.a(\"string\");","    pm.expect(password).not.to.eql(\"\");","    pm.expect(username).not.to.eql(\"\");","})","","pm.test(\"Auth response conforms to expected JSON structure\", function() {","    pm.response.to.have.status(200);","    pm.response.to.be.json;","    const response = pm.response.json();","    pm.expect(response).to.be.a(\"object\");","    pm.expect(response.access_token).not.to.be.undefined;","    pm.expect(response.access_token).to.be.a(\"string\");","","    pm.expect(response.expires_in).not.to.be.undefined;","    pm.expect(response.expires_in).to.be.a(\"number\")","","    pm.expect(response.refresh_expires_in).not.to.be.undefined;","    pm.expect(response.refresh_expires_in).to.be.a(\"number\")","","    pm.expect(response.token_type).not.to.be.undefined;","    pm.expect(response.token_type).to.be.a(\"string\");","    pm.expect(response.token_type).to.eql(\"Bearer\");","","    pm.expect(response.refresh_token).not.to.be.undefined;","    pm.expect(response['not-before-policy']).not.to.be.undefined;","    pm.expect(response.session_state).not.to.be.undefined;","","    pm.expect(response.scope).not.to.be.undefined;","    pm.expect(response.scope).to.be.a(\"string\");","})","","pm.test(\"Set Bearer Token\", function() {","    const response = pm.response.json();","    pm.collectionVariables.set(\"bearer_token\", response.access_token);","})"],"type":"text/javascript","packages":{}}}],"id":"389c6d9c-9bb6-4184-a7a7-553e95e987a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"memorix-ui","type":"text"},{"key":"username","value":"","description":"<p>Your Memorix Username (can be set in ENV)</p>\n","type":"text"},{"key":"password","value":"","description":"<p>Your Memorix Password (can be set in ENV)</p>\n","type":"text"}]},"url":"{{auth_service}}/auth/realms/{{tenant}}/protocol/openid-connect/token","description":"<p>Use this endpoint to authenticate against our OpenID provider. Make sure to set the correct Key/Value parts for <em>username</em> and <em>password</em>. Check the Postman variables for the correct values of <em>{{auth_service}}</em> and <em>{{tenant}}</em>.</p>\n","urlObject":{"path":["auth","realms","{{tenant}}","protocol","openid-connect","token"],"host":["{{auth_service}}"],"query":[],"variable":[]}},"response":[{"id":"66a293b6-18a1-479f-b692-005bc996a4c4","name":"Authentication response example","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"memorix-ui","type":"text"},{"key":"username","value":"test@picturae.com","description":"Your Memorix Username (can be set in ENV)","type":"text"},{"key":"password","value":"•••••••","description":"Your Memorix Password (can be set in ENV)","type":"text"}]},"url":"{{auth_service}}/auth/realms/{{tenant}}/protocol/openid-connect/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Jun 2021 10:54:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3998"},{"key":"Cache-Control","value":"no-store"},{"key":"Set-Cookie","value":"KEYCLOAK_LOCALE=nl; Version=1; Path=/auth/realms/pic/; HttpOnly"},{"key":"Set-Cookie","value":"KC_RESTART=; Version=1; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Max-Age=0; Path=/auth/realms/pic/; HttpOnly"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{someToken}\",\n    \"expires_in\": 300,\n    \"refresh_expires_in\": 1800,\n    \"refresh_token\": \"{someRefreshToken}\",\n    \"token_type\": \"Bearer\",\n    \"not-before-policy\": 1602267100,\n    \"session_state\": \"25680359-1704-4d97-a1e4-9ae2b50f68d3\",\n    \"scope\": \"profile email\"\n}"}],"_postman_id":"389c6d9c-9bb6-4184-a7a7-553e95e987a4"},{"name":"Authenticate (Service account)","event":[{"listen":"prerequest","script":{"id":"9671a0bb-518e-47e7-9964-50e595fd5823","exec":["if (pm.environment.get(\"username\") && !pm.collectionVariables.get(\"username\"))","    pm.collectionVariables.set(\"username\", pm.environment.get(\"username\"));","if (pm.environment.get(\"password\") && !pm.collectionVariables.get(\"password\"))","    pm.collectionVariables.set(\"password\", pm.environment.get(\"password\"));",""],"type":"text/javascript"}},{"listen":"test","script":{"id":"cd4c7186-2ef9-4f3c-94b3-8517cee1ee81","exec":["pm.test(\"Username & Password available\", function() {","    const password = pm.environment.get(\"password\");","    const username = pm.environment.get(\"username\");","    pm.expect(password).to.be.a(\"string\");","    pm.expect(username).to.be.a(\"string\");","    pm.expect(password).not.to.eql(\"\");","    pm.expect(username).not.to.eql(\"\");","})","","pm.test(\"Auth response conforms to expected JSON structure\", function() {","    pm.response.to.have.status(200);","    pm.response.to.be.json;","    const response = pm.response.json();","    pm.expect(response).to.be.a(\"object\");","    pm.expect(response.access_token).not.to.be.undefined;","    pm.expect(response.access_token).to.be.a(\"string\");","","    pm.expect(response.expires_in).not.to.be.undefined;","    pm.expect(response.expires_in).to.be.a(\"number\")","","    pm.expect(response.refresh_expires_in).not.to.be.undefined;","    pm.expect(response.refresh_expires_in).to.be.a(\"number\")","","    pm.expect(response.token_type).not.to.be.undefined;","    pm.expect(response.token_type).to.be.a(\"string\");","    pm.expect(response.token_type).to.eql(\"Bearer\");","","    pm.expect(response.refresh_token).not.to.be.undefined;","    pm.expect(response['not-before-policy']).not.to.be.undefined;","    pm.expect(response.session_state).not.to.be.undefined;","","    pm.expect(response.scope).not.to.be.undefined;","    pm.expect(response.scope).to.be.a(\"string\");","})","","pm.test(\"Set Bearer Token\", function() {","    const response = pm.response.json();","    pm.collectionVariables.set(\"bearer_token\", response.access_token);","})"],"type":"text/javascript"}}],"id":"2db0d54a-0c1c-417c-ac83-b2b011c2077d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"memorix-ui","type":"text","description":"<p>Client ID of a Service Account</p>\n"},{"key":"client_secret","value":"","description":"<p>Your Memorix Password (can be set in ENV)</p>\n","type":"text"}]},"url":"{{auth_service}}/auth/realms/{{tenant}}/protocol/openid-connect/token","description":"<p>Use this endpoint to authenticate against our OpenID provider. Make sure to set the correct Key/Value parts for <em>username</em> and <em>password</em>. Check the Postman variables for the correct values of <em>{{auth_service}}</em> and <em>{{tenant}}</em>.</p>\n","urlObject":{"path":["auth","realms","{{tenant}}","protocol","openid-connect","token"],"host":["{{auth_service}}"],"query":[],"variable":[]}},"response":[{"id":"6a8967e5-dc82-4b20-b3ad-bdab956f5ec5","name":"Authentication response example","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"memorix-ui","type":"text"},{"key":"username","value":"","description":"Your Memorix Username (can be set in ENV)","type":"text"},{"key":"password","value":"","description":"Your Memorix Password (can be set in ENV)","type":"text"}]},"url":"{{auth_service}}/auth/realms/{{tenant}}/protocol/openid-connect/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Jun 2021 10:54:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3998"},{"key":"Cache-Control","value":"no-store"},{"key":"Set-Cookie","value":"KEYCLOAK_LOCALE=nl; Version=1; Path=/auth/realms/pic/; HttpOnly"},{"key":"Set-Cookie","value":"KC_RESTART=; Version=1; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Max-Age=0; Path=/auth/realms/pic/; HttpOnly"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Pragma","value":"no-cache"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Content-Type-Options","value":"nosniff"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{sometoken}\",\n    \"expires_in\": 300,\n    \"refresh_expires_in\": 1800,\n    \"refresh_token\": \"{someRefreshToken}\",\n    \"token_type\": \"Bearer\",\n    \"not-before-policy\": 1602267100,\n    \"session_state\": \"25680359-1704-4d97-a1e4-9ae2b50f68d3\",\n    \"scope\": \"profile email\"\n}"}],"_postman_id":"2db0d54a-0c1c-417c-ac83-b2b011c2077d"}],"id":"c6f88c46-0998-4e6e-99bb-b5e61d773f8e","_postman_id":"c6f88c46-0998-4e6e-99bb-b5e61d773f8e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Bulk actions","item":[{"name":"Depot","item":[{"name":"Set depot container to records by query","id":"5f61648d-c2c3-43bc-9f2a-e6c5093a8214","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"endContainerId\": null,\n\t\t\"startContainerId\": \"d26575eb-cfea-4132-9495-db63bcb0f9ca\",\n\t\t\"type\": \"SET_DEPOT_CONTAINER\"\n\t},\n\t\"query\": {\n\t\t\"queries\": [\n\t\t\t{\n\t\t\t\t\"query\": \"\",\n\t\t\t\t\"type\": \"FullTextQuery\"\n\t\t\t},\n            {\n\t\t\t\t\"field\": \"recordType.id\",\n\t\t\t\t\"operator\": \"equals\",\n\t\t\t\t\"type\": \"FieldQuery\",\n\t\t\t\t\"value\": \"File\"\n\t\t\t}\t\t\t\n\t\t],\n\t\t\"type\": \"AndQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Remove a selection of records from a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"d6ad46d5-874c-4462-bbb5-581887afb343","name":"[SET] overrides the value of the field of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"SET\",\n            \"value\": \"true\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"8634f729-c1e0-4c19-9f29-493db5b0fc9b","name":"[CLEAR] removes existing value(s) of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"CLEAR\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"4ff237f7-acc3-4b80-b566-d00fe259f718","name":"[PREPEND] prepends string value with provided prefix","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"PREPEND\",\n            \"value\": \"my prefix \"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"d3517d1d-b913-49de-815a-dafb02fe7f79","name":"[APPEND] appends provided postfix to a string value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \" my postfix\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"a7d8e18d-f9d4-4109-a871-30413368f5dd","name":"[APPEND] appends provided resource to existing resources","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:linkableField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \"https://memorix.com/resources/records/{recordId}\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"91adb95b-03bc-4138-93f7-bf191eaba3d8","name":"[REPLACE] replaces piece of text if found in record value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"REPLACE\",\n            \"value\": {\n                \"search\": \"something\",\n                \"replace\": \"something else\",\n                \"ignoreCase\": true\n            }\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5f61648d-c2c3-43bc-9f2a-e6c5093a8214"},{"name":"Add to depot container to records by query","id":"5dc83cdc-7bdb-4c8b-bd43-4e9a64323434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"endContainerId\": null,\n\t\t\"startContainerId\": \"d26575eb-cfea-4132-9495-db63bcb0f9ca\",\n\t\t\"type\": \"ADD_TO_DEPOT_CONTAINER\"\n\t},\n\t\"query\": {\n\t\t\"queries\": [\n\t\t\t{\n\t\t\t\t\"query\": \"lippman\",\n\t\t\t\t\"type\": \"FullTextQuery\"\n\t\t\t},\n            {\n\t\t\t\t\"field\": \"recordType.id\",\n\t\t\t\t\"operator\": \"equals\",\n\t\t\t\t\"type\": \"FieldQuery\",\n\t\t\t\t\"value\": \"File\"\n\t\t\t}\t\t\t\n\t\t],\n\t\t\"type\": \"AndQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Remove a selection of records from a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"6322e61d-5fda-44d7-948a-27ade37c4c83","name":"[SET] overrides the value of the field of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"SET\",\n            \"value\": \"true\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"66019ac6-51a9-4518-ba7d-0bcf14184b44","name":"[CLEAR] removes existing value(s) of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"CLEAR\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"7c332bb7-c49b-43cb-a2e3-cf39dc7030dd","name":"[PREPEND] prepends string value with provided prefix","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"PREPEND\",\n            \"value\": \"my prefix \"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"f8f85473-8c1b-4618-8663-e06641932ae3","name":"[APPEND] appends provided postfix to a string value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \" my postfix\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"e1c39354-e629-46aa-8b73-bb7737a7dbbd","name":"[APPEND] appends provided resource to existing resources","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:linkableField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \"https://memorix.com/resources/records/{recordId}\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"b62867c3-7af6-4013-b0d0-d2d0cd7a3064","name":"[REPLACE] replaces piece of text if found in record value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"REPLACE\",\n            \"value\": {\n                \"search\": \"something\",\n                \"replace\": \"something else\",\n                \"ignoreCase\": true\n            }\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5dc83cdc-7bdb-4c8b-bd43-4e9a64323434"},{"name":"Remove depot container to records by query","id":"4496b1f7-481c-4a93-a0fa-2f77ce7f5ead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"type\": \"REMOVE_DEPOT_CONTAINERS\"\n\t},\n\t\"query\": {\n\t\t\"queries\": [\n\t\t\t{\n\t\t\t\t\"query\": \"lippman\",\n\t\t\t\t\"type\": \"FullTextQuery\"\n\t\t\t},\n            {\n\t\t\t\t\"field\": \"recordType.id\",\n\t\t\t\t\"operator\": \"equals\",\n\t\t\t\t\"type\": \"FieldQuery\",\n\t\t\t\t\"value\": \"File\"\n\t\t\t}\t\t\t\n\t\t],\n\t\t\"type\": \"AndQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Remove a selection of records from a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"b742d4ad-2962-4e8e-ae11-cfa7dccf4499","name":"[SET] overrides the value of the field of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"SET\",\n            \"value\": \"true\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"84e0279a-c4e6-4efa-bbc5-7e5ecf05130c","name":"[CLEAR] removes existing value(s) of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"CLEAR\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"bf222755-b9bd-436b-b6fe-a3eb87918201","name":"[PREPEND] prepends string value with provided prefix","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"PREPEND\",\n            \"value\": \"my prefix \"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"600796d5-be15-44d3-8edc-19d7c09e94c6","name":"[APPEND] appends provided postfix to a string value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \" my postfix\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"086c0974-e0ba-4c43-9494-60e55887941b","name":"[APPEND] appends provided resource to existing resources","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:linkableField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \"https://memorix.com/resources/records/{recordId}\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"e373e84a-abc5-4a73-9311-0c7841167fe8","name":"[REPLACE] replaces piece of text if found in record value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"REPLACE\",\n            \"value\": {\n                \"search\": \"something\",\n                \"replace\": \"something else\",\n                \"ignoreCase\": true\n            }\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4496b1f7-481c-4a93-a0fa-2f77ce7f5ead"},{"name":"Set container depot","id":"49fe3710-1195-4a00-b3aa-b93e2a4af1fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"depotId\": \"1feae266-0a8f-4f31-871b-5858b3f365a3\",\n\t\t\"type\": \"SET_CONTAINER_DEPOT\"\n\t},\n\t\"query\": {\n\t\t\"ids\": [\n\t\t\t\"5f2fd5c2-6514-4c74-83f2-e5e480813f8b\"\n\t\t],\n\t\t\"type\": \"IdsQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/containers/query","description":"<p>Move the container to a depot</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","containers","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"57fb70f2-ea52-4701-bce4-893fbeaf6602","name":"[SET] overrides the value of the field of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"SET\",\n            \"value\": \"true\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"7e3dfa68-7192-43fd-924e-2c78d8a05699","name":"[CLEAR] removes existing value(s) of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"CLEAR\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"b208a9fe-8fbd-47b9-9a4a-f6a050917dae","name":"[PREPEND] prepends string value with provided prefix","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"PREPEND\",\n            \"value\": \"my prefix \"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"b020a65f-457e-4416-9771-41675aaa4925","name":"[APPEND] appends provided postfix to a string value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \" my postfix\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"d1100d37-77e0-42ee-a982-fda612d892b1","name":"[APPEND] appends provided resource to existing resources","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:linkableField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \"https://memorix.com/resources/records/{recordId}\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"ed2210bd-3ded-4616-bb76-4d9d83edf03d","name":"[REPLACE] replaces piece of text if found in record value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"REPLACE\",\n            \"value\": {\n                \"search\": \"something\",\n                \"replace\": \"something else\",\n                \"ignoreCase\": true\n            }\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"49fe3710-1195-4a00-b3aa-b93e2a4af1fc"},{"name":"Set container parent","id":"c8c4818a-ae27-4659-b912-7522c3279f59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"parentContainerId\": \"278a39db-8bda-4534-9024-9fe8558dc2a5\",\n\t\t\"type\": \"SET_PARENT_CONTAINER\"\n\t},\n\t\"query\": {\n\t\t\"ids\": [\n\t\t\t\"def49a0d-39e2-4596-8a54-008fc5c918e9\"\n\t\t],\n\t\t\"type\": \"IdsQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/containers/query","description":"<p>Set the parent container of the container</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","containers","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"a5d447ce-56e9-42cf-b0ed-ba82499034dc","name":"[SET] overrides the value of the field of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"SET\",\n            \"value\": \"true\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"a19bef60-ad8d-4410-8750-5ba232fd0b9e","name":"[CLEAR] removes existing value(s) of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:field\",\n        \"operation\": {\n            \"type\": \"CLEAR\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"0b825568-7204-4228-bc93-41ccf6564897","name":"[PREPEND] prepends string value with provided prefix","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"PREPEND\",\n            \"value\": \"my prefix \"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"9837c035-3158-46bf-ab58-3bfc39057a5d","name":"[APPEND] appends provided postfix to a string value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \" my postfix\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"74d1ff40-e473-48ff-ad4c-62aaaaab28fc","name":"[APPEND] appends provided resource to existing resources","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:linkableField\",\n        \"operation\": {\n            \"type\": \"APPEND\",\n            \"value\": \"https://memorix.com/resources/records/{recordId}\"\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"95091d05-2d4a-44ac-be4b-56ebe463d751","name":"[REPLACE] replaces piece of text if found in record value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"recordTypeId\": ,\n        \"path\": \"RecordTypeId.recordtypeId:stringField\",\n        \"operation\": {\n            \"type\": \"REPLACE\",\n            \"value\": {\n                \"search\": \"something\",\n                \"replace\": \"something else\",\n                \"ignoreCase\": true\n            }\n        }\n    },\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c8c4818a-ae27-4659-b912-7522c3279f59"}],"id":"9131d97d-0e56-4339-9faa-e8ceab4c9230","_postman_id":"9131d97d-0e56-4339-9faa-e8ceab4c9230","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Change record fields","id":"e380c498-2767-4da5-8874-de6f52184fc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"operations\": [\n        {\n            \"recordTypeId\": \"File\",\n            \"path\": \"File.file:title\",\n            \"operation\": {\n                \"type\": \"SET\",\n                \"value\": \"My title\"\n            }\n        },\n        {\n            \"recordTypeId\": \"File\",\n            \"path\": \"File.file:textarea\",\n            \"operation\": {\n                \"type\": \"SET\",\n                \"value\": \"My textarea\"\n            }\n        },\n        {\n            \"recordTypeId\": \"accessibilityAndRights\",\n            \"path\": \"accessibilityAndRights.allowRequestsOrReservations\",\n            \"operation\": {\n                \"type\": \"SET\",\n                \"value\": true            }\n        }\n    ],\n    \"recordIds\": [\n        \"a4edec02-c857-4995-a4af-bbfa749fb9f6\",\n        \"5a16b02b-17eb-4884-ae48-78085f4bc667\",\n        \"5dab29ec-d766-4a67-9031-395e823cf511\"\n    ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids/change-fields","description":"<p>Bulk actions allow the user to modify multiple the records based on provided selection. Selection is a combination of queries, similar to ElasticSearch query DSL. The following can be used:</p>\n<p>Field query:</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","ids","change-fields"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"56e6afcc-2c2b-4d20-a141-1c2f48bd9527","name":"[SET] overrides the value of the field of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operations\": [ \n        {\n            \"recordTypeId\": ,\n            \"path\": \"RecordTypeId.recordtypeId:field\",\n            \"operation\": {\n                \"type\": \"SET\",\n                \"value\": \"true\"\n            }\n        }\n    ],\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-fields"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"b50cd09d-e1d7-402e-8df1-3501a31f0706","name":"[SET] publication of assets","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"operations\": [\n    {\n      \"recordTypeId\": \"asset\",\n      \"path\": \"asset.assetPublicationStatus\",\n      \"operation\": {\n        \"type\": \"SET\",\n        \"value\": \"false\"\n      }\n    }\n  ],\n  \"recordIds\": [\n    \"\"\n  ]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-fields"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"id\": \"e32e62f2-9be8-49e6-aa42-88e5ac500762\",\r\n    \"userId\": \"33c86922-f8e7-4b11-888f-0fc159dfdbd9\",\r\n    \"start\": \"2025-10-03T12:08:17.531926438\",\r\n    \"activity\": \"ApplyFieldsOperation\",\r\n    \"progress\": null,\r\n    \"count\": {\r\n        \"queued\": 0,\r\n        \"finished\": 0,\r\n        \"failed\": 0\r\n    },\r\n    \"end\": null\r\n}"},{"id":"50203f0e-29a1-4002-863e-2fcb029ea327","name":"[CLEAR] removes existing value(s) of any type","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operations\": [\n        {\n            \"recordTypeId\": ,\n            \"path\": \"RecordTypeId.recordtypeId:field\",\n            \"operation\": {\n                \"type\": \"CLEAR\"\n            }\n        }\n    ],\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-fields"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"5f00dea0-35e8-41ee-83a3-5c4de438ab50","name":"[PREPEND] prepends string value with provided prefix","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operations\": [\n        {\n            \"recordTypeId\": ,\n            \"path\": \"RecordTypeId.recordtypeId:stringField\",\n            \"operation\": {\n                \"type\": \"PREPEND\",\n                \"value\": \"my prefix \"\n            }\n        }\n    ],\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-fields"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"1a7e68fa-9ca0-4a18-bd01-44b48531bff0","name":"[APPEND] appends provided postfix to a string value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operations\": [\n        {\n            \"recordTypeId\": ,\n            \"path\": \"RecordTypeId.recordtypeId:stringField\",\n            \"operation\": {\n                \"type\": \"APPEND\",\n                \"value\": \" my postfix\"\n            }\n        }\n    ],\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-fields"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"b0f7f8f1-06e9-412f-bd5f-b9e55fb6b7c6","name":"[APPEND] appends provided resource to existing resources","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operations\": [\n        {\n            \"recordTypeId\": ,\n            \"path\": \"RecordTypeId.recordtypeId:linkableField\",\n            \"operation\": {\n                \"type\": \"APPEND\",\n                \"value\": \"https://memorix.com/resources/records/{recordId}\"\n            }\n        }\n    ],\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""},{"id":"8dc1224c-22f6-4143-85ce-afcea9b56a4e","name":"[REPLACE] replaces piece of text if found in record value","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operations\": [\n        {\n            \"recordTypeId\": ,\n            \"path\": \"RecordTypeId.recordtypeId:stringField\",\n            \"operation\": {\n                \"type\": \"REPLACE\",\n                \"value\": {\n                    \"search\": \"something\",\n                    \"replace\": \"something else\",\n                    \"ignoreCase\": true\n                }\n            }\n        }\n    ],\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query/change-field"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e380c498-2767-4da5-8874-de6f52184fc8"},{"name":"Add records to set by query","id":"169c0556-49ae-4fff-bb3d-d7f09f914b3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"setId\": \"b7902865-16b0-4f4f-a29c-a09e6628e947\",\n\t\t\"type\": \"ADD_TO_SET\"\n\t},\n\t\"query\": {\n        \"query\": \"Something something\",\n        \"type\": \"FullTextQuery\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Add a selection of records to a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"169c0556-49ae-4fff-bb3d-d7f09f914b3e"},{"name":"Remove records from set by query","id":"8ffe67d9-47d6-48a7-95a0-eff773dcc8ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"setId\": \"7c4b8a11-35ad-4a51-96cf-553ccc5c883c\",\n\t\t\"type\": \"REMOVE_FROM_SET\"\n\t},\n\t\"query\": {\n\t\t\"queries\": [\n\t\t\t{\n\t\t\t\t\"query\": \"\",\n\t\t\t\t\"type\": \"FullTextQuery\"\n\t\t\t},\n            {\n\t\t\t\t\"field\": \"set.id\",\n\t\t\t\t\"operator\": \"equals\",\n\t\t\t\t\"type\": \"FieldQuery\",\n\t\t\t\t\"value\": \"7c4b8a11-35ad-4a51-96cf-553ccc5c883c\"\n\t\t\t}\t\t\t\n\t\t],\n\t\t\"type\": \"AndQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Remove a selection of records from a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ffe67d9-47d6-48a7-95a0-eff773dcc8ba"},{"name":"Move records from set to set by query","id":"08c10e59-db19-4359-8fd7-a710a00473fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"from\": \"7c4b8a11-35ad-4a51-96cf-553ccc5c883c\",\n        \"to\": \"04b22eac-c23d-4058-a28e-5ac1164a5943\",\n\t\t\"type\": \"MOVE_TO_SET\"\n\t},\n    \"query\": {\n\t\t\"queries\": [\n\t\t\t{\n\t\t\t\t\"query\": \"\",\n\t\t\t\t\"type\": \"FullTextQuery\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"field\": \"set.id\",\n\t\t\t\t\"operator\": \"equals\",\n\t\t\t\t\"type\": \"FieldQuery\",\n\t\t\t\t\"value\": \"04b22eac-c23d-4058-a28e-5ac1164a5943\"\n\t\t\t}\n\t\t],\n\t\t\"type\": \"AndQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Remove a selection of records from a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"08c10e59-db19-4359-8fd7-a710a00473fa"},{"name":"Move records from collection to collection by query","id":"2fb5552b-f9c2-48b9-a687-553ec86b9d57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"from\": \"7c4b8a11-35ad-4a51-96cf-553ccc5c883c\",\n        \"to\": \"04b22eac-c23d-4058-a28e-5ac1164a5943\",\n\t\t\"type\": \"MOVE_TO_SET\"\n\t},\n    \"query\": {\n\t\t\"queries\": [\n\t\t\t{\n\t\t\t\t\"query\": \"\",\n\t\t\t\t\"type\": \"FullTextQuery\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"field\": \"set.id\",\n\t\t\t\t\"operator\": \"equals\",\n\t\t\t\t\"type\": \"FieldQuery\",\n\t\t\t\t\"value\": \"04b22eac-c23d-4058-a28e-5ac1164a5943\"\n\t\t\t}\n\t\t],\n\t\t\"type\": \"AndQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Remove a selection of records from a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2fb5552b-f9c2-48b9-a687-553ec86b9d57"},{"name":"Delete records by ids","id":"260e2554-9c8b-4b5e-9eb4-d85a74f95f77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"from\": \"7c4b8a11-35ad-4a51-96cf-553ccc5c883c\",\n        \"to\": \"04b22eac-c23d-4058-a28e-5ac1164a5943\",\n\t\t\"type\": \"MOVE_TO_SET\"\n\t},\n    \"query\": {\n\t\t\"queries\": [\n\t\t\t{\n\t\t\t\t\"query\": \"\",\n\t\t\t\t\"type\": \"FullTextQuery\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"field\": \"set.id\",\n\t\t\t\t\"operator\": \"equals\",\n\t\t\t\t\"type\": \"FieldQuery\",\n\t\t\t\t\"value\": \"04b22eac-c23d-4058-a28e-5ac1164a5943\"\n\t\t\t}\n\t\t],\n\t\t\"type\": \"AndQuery\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Remove a selection of records from a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"260e2554-9c8b-4b5e-9eb4-d85a74f95f77"},{"name":"Move records from project to project by id","id":"04e18fb2-72d8-4212-bdfb-ab6f0887ae35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"from\": \"7c4b8a11-35ad-4a51-96cf-553ccc5c883c\",\n        \"to\": \"04b22eac-c23d-4058-a28e-5ac1164a5943\",\n\t\t\"type\": \"MOVE_TO_PROJECT\"\n\t},\n    \"recordIds\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids","description":"<p>Remove a selection of records from a set</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","ids"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"04e18fb2-72d8-4212-bdfb-ab6f0887ae35"},{"name":"Change record context","id":"a89ebc4f-ee0c-4019-a85f-3d43a4cb1fa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {},\n    \"query\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"c8a75d12-82ac-467d-98fe-1c06d14b754d","name":"[CREATE_RECORDS]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {},\n    \"operation\": {\n        \"type\": \"CREATE_RECORDS\",\n        \"startFrom\": 10 | NULL,\n        \"amount\": 10,\n        \"collectionId\": {{collectionId}},\n        \"recordTypeId\": {{recordTypeId}},\n        \"parentId\": {{recordId}} | NULL,\n        \"model\": {{JsonLD model}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b0644f7d-27a6-4f3d-bffd-33239a1c5e46","name":"[REMOVE_RECORDS]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {},\n    \"operation\": {\n        \"type\": \"REMOVE_RECORDS\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ce817855-ee45-42f8-8ebf-5ad4254353b0","name":"[COLLECTION_MOVE] moves records to another collection","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {},\n    \"operation\": {\n        \"type\": \"COLLECTION_MOVE\",\n        \"collectionId\": {{collectionId}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"74a31247-f0fa-43d1-a0a5-d6fc666e6955","name":"[ADD_TO_SET]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"query\": {},\n    \"operation\": {\n        \"type\": \"ADD_TO_SET\",\n        \"setId\": {{setId}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"85161aaf-c503-4b65-a775-24dfe4ab9887","name":"[REMOVE_FROM_SET]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"query\": {},\n    \"operation\": {\n        \"type\": \"REMOVE_FROM_SET\",\n        \"setId\": {{setId}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"66ec3e1b-baec-4a48-a010-785815c29981","name":"[ADD_TO_PROJECT]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"query\": {},\n    \"operation\": {\n        \"type\": \"ADD_TO_PROJECT\",\n        \"projectId\": {{projectId}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ed350a5f-dfe1-4d50-9b28-0ae8a49040dc","name":"[REMOVE_FROM_PROJECT]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {},\n    \"operation\": {\n        \"type\": \"REMOVE_FROM_PROJECT\",\n        \"projectId\": {{projectId}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ca2b7995-97a3-4ea1-9802-ff6d0752ed65","name":"[CHANGE_WORKFLOW_STEP]","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {},\n    \"operation\": {\n        \"type\": \"CHANGE_WORKFLOW_STEP\",\n        \"projectId\": {{projectId}},\n        \"stepId\": {{stepId}},\n        \"message\": \"message text as string\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"04ba61af-e09f-48a9-8c17-4816e9b3c6d3","name":"[ADD_TO_DEPOT_CONTAINER] will add records to a depot container","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {},\n    \"operation\": {\n        \"type\": \"ADD_TO_DEPOT_CONTAINER\",\n        \"startContainerId\": {{startContainerId}},\n        \"endContainerId\": {{endContainerId}} | NULL\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6484eb85-fb8a-405a-a6fc-4155e65fba82","name":"[SET_DEPOT_CONTAINER] will replace existing containers with new one","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {},\n    \"operation\": {\n        \"type\": \"SET_DEPOT_CONTAINER\",\n        \"startContainerId\": {{startContainerId}},\n        \"endContainerId\": {{endContainerId}} | NULL\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"6e56818b-656a-47db-a3e3-4984bc7d3fc2","name":"[REMOVE_DEPOT_CONTAINERS] will remove all containers linked to a record","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {},\n    \"operation\": {\n        \"type\": \"REMOVE_DEPOT_CONTAINERS\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a89ebc4f-ee0c-4019-a85f-3d43a4cb1fa7"},{"name":"Change record context by ids","id":"79271de0-beb5-4340-b3a3-69d88bbf26c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {},\n    \"recordIds\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids","description":"<p><strong>This endpoint is deprecated</strong></p>\n<p>Use POST https://test.memorix.io/bulk/records/query with IdsQuery</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","ids"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"79271de0-beb5-4340-b3a3-69d88bbf26c4"},{"name":"Activity log - list bulk actions","id":"0bc3351f-1448-4e4d-992a-bb79491c8929","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/activity-log/bulk?page=1&perPage=25&id=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","bulk"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>current page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>amount of results per page</p>\n","type":"text/plain"},"key":"perPage","value":"25"},{"description":{"content":"<p>filter on id of bulk job</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[{"id":"f1262228-02c3-4c3a-9b5c-d6ae27daebe1","name":"Activity log for bulk actions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/activity-log/bulk?page=1&perPage=25","host":["https://test.memorix.io"],"path":["activity-log","bulk"],"query":[{"key":"page","value":"1","description":"current page number"},{"key":"perPage","value":"25","description":"amount of results per page"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"200f26d2-0328-4880-98f0-1fe3c48a188d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T11:22:43.817532\",\n                \"activity\": \"ApplyAccessibilityFieldOperation\",\n                \"progress\": {\n                    \"current\": 1064,\n                    \"total\": 1064,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T11:25:00.653510\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"7850a828-a58d-4d86-8e86-3fa3f4e9fd61\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T10:14:29.320917\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 11,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T10:14:32.569477\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"c5089184-1f84-403b-a462-007ce08a7391\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T09:00:59.845682\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T09:01:00.775902\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f336e69a-15d9-42f3-ab09-a352273e2f2f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T08:56:30.269595\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T08:56:31.778948\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f4719a82-5880-4630-9c10-4921bd160a16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-11T10:06:46.338534\",\n                \"activity\": \"ApplyFieldOperation\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"d5167014-3e52-4167-886b-267113a869e9\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-08T11:21:13.715930\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 6,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d84e327-64f9-4f07-bc2a-e832e90f772d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-01T10:46:30.568088\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e7540c11-154c-4bda-a509-f3379d5ec9bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:37:14.009621\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"2a08a4e2-87a6-432f-be4e-6ea7bc016576\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:32:49.315655\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"10eff075-cfa2-420c-aa20-09094cced4b4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-31T08:30:33.484903\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"4a43698f-6b59-43e9-96b2-4b6ba24a3559\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:46.161730\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"b0048841-a4bb-44a2-8462-df49fdb6b648\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:34.719153\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e1555ce7-eedb-4de7-a639-6217ac6a33f4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-25T10:14:08.845327\",\n                \"activity\": \"AddToProject\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"86272fc1-e68c-4694-88ed-e813265de7bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:16:23.723434\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ebe55b41-4028-4e6a-8061-fdd20d924109\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:14:11.302465\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"46c04f87-5d3e-4a1b-8d7f-b423c45957d4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:12:31.173256\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d87ff30-8898-46eb-8c24-4136ce946ed4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-24T15:10:24.145922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ac9104c8-e681-4d1d-bb36-134d35953b97\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:55:38.276922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"02dfbd0a-c875-423f-89ae-0e6b1fb4c246\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:50:03.518030\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"a5d45fc0-aa63-4111-a4f5-89314d234e31\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T09:04:38.085628\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"20a164b8-0aa2-4723-b6b2-2eba347d732f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:25:40.149996\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f7ab2564-f02d-430b-96b2-03bff3eba69a\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:32.651105\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"956837fc-c162-4ff9-a115-e85a43a67c16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:08.284025\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 20,\n                    \"total\": 20,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"cb2c72da-b0f3-4c12-a691-d07b6f15ea20\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T21:00:58.750066\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"8adb7eeb-96bd-4a41-9ced-b5ea00cf561c\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T20:56:50.947735\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 25,\n        \"total\": 160,\n        \"max\": null\n    }\n}"}],"_postman_id":"0bc3351f-1448-4e4d-992a-bb79491c8929"},{"name":"Activity log - list bulk action records","id":"c40072f3-6b74-4539-a7a8-7a2c79b564dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/activity-log/bulk/{{bulkJobId}}?page=1&perPage=25&status=FAILED","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","bulk","{{bulkJobId}}"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>current page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>amount of results per page</p>\n","type":"text/plain"},"key":"perPage","value":"25"},{"description":{"content":"<p>one of FAILED, FINISHED or QUEUED (case insensitive)</p>\n","type":"text/plain"},"key":"status","value":"FAILED"}],"variable":[]}},"response":[{"id":"654a2788-9f77-4109-8203-daca62a338c7","name":"Activity log for bulk actions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/activity-log/bulk?page=1&perPage=25","host":["https://test.memorix.io"],"path":["activity-log","bulk"],"query":[{"key":"page","value":"1","description":"current page number"},{"key":"perPage","value":"25","description":"amount of results per page"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"200f26d2-0328-4880-98f0-1fe3c48a188d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T11:22:43.817532\",\n                \"activity\": \"ApplyAccessibilityFieldOperation\",\n                \"progress\": {\n                    \"current\": 1064,\n                    \"total\": 1064,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T11:25:00.653510\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"7850a828-a58d-4d86-8e86-3fa3f4e9fd61\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T10:14:29.320917\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 11,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T10:14:32.569477\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"c5089184-1f84-403b-a462-007ce08a7391\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T09:00:59.845682\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T09:01:00.775902\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f336e69a-15d9-42f3-ab09-a352273e2f2f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T08:56:30.269595\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T08:56:31.778948\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f4719a82-5880-4630-9c10-4921bd160a16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-11T10:06:46.338534\",\n                \"activity\": \"ApplyFieldOperation\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"d5167014-3e52-4167-886b-267113a869e9\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-08T11:21:13.715930\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 6,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d84e327-64f9-4f07-bc2a-e832e90f772d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-01T10:46:30.568088\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e7540c11-154c-4bda-a509-f3379d5ec9bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:37:14.009621\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"2a08a4e2-87a6-432f-be4e-6ea7bc016576\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:32:49.315655\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"10eff075-cfa2-420c-aa20-09094cced4b4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-31T08:30:33.484903\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"4a43698f-6b59-43e9-96b2-4b6ba24a3559\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:46.161730\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"b0048841-a4bb-44a2-8462-df49fdb6b648\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:34.719153\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e1555ce7-eedb-4de7-a639-6217ac6a33f4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-25T10:14:08.845327\",\n                \"activity\": \"AddToProject\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"86272fc1-e68c-4694-88ed-e813265de7bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:16:23.723434\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ebe55b41-4028-4e6a-8061-fdd20d924109\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:14:11.302465\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"46c04f87-5d3e-4a1b-8d7f-b423c45957d4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:12:31.173256\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d87ff30-8898-46eb-8c24-4136ce946ed4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-24T15:10:24.145922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ac9104c8-e681-4d1d-bb36-134d35953b97\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:55:38.276922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"02dfbd0a-c875-423f-89ae-0e6b1fb4c246\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:50:03.518030\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"a5d45fc0-aa63-4111-a4f5-89314d234e31\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T09:04:38.085628\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"20a164b8-0aa2-4723-b6b2-2eba347d732f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:25:40.149996\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f7ab2564-f02d-430b-96b2-03bff3eba69a\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:32.651105\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"956837fc-c162-4ff9-a115-e85a43a67c16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:08.284025\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 20,\n                    \"total\": 20,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"cb2c72da-b0f3-4c12-a691-d07b6f15ea20\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T21:00:58.750066\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"8adb7eeb-96bd-4a41-9ced-b5ea00cf561c\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T20:56:50.947735\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 25,\n        \"total\": 160,\n        \"max\": null\n    }\n}"},{"id":"de7739c6-1c79-4553-8bee-55011c0c38de","name":"Activity log for a specific bulk action","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/activity-log/bulk/{{bulkJobId}}?page=1&perPage=5&status=FAILED","host":["https://test.memorix.io"],"path":["activity-log","bulk","{{bulkJobId}}"],"query":[{"key":"page","value":"1","description":"current page number"},{"key":"perPage","value":"5","description":"amount of results per page"},{"key":"status","value":"FAILED","description":"one of FAILED, FINISHED or QUEUED (case insensitive)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": {\n                \"bulkJob\": \"cbc71df7-4f86-414e-906f-815f3059e437\",\n                \"recordId\": \"17f82933-6d2a-4928-8dff-6f4262b94802\"\n            },\n            \"status\": \"FINISHED\",\n            \"attempt\": 1,\n            \"createdAt\": \"2022-04-26T08:31:52.212219\",\n            \"modifiedAt\": \"2022-04-26T08:31:56.021342\",\n            \"cause\": null\n        },\n        {\n            \"id\": {\n                \"bulkJob\": \"cbc71df7-4f86-414e-906f-815f3059e437\",\n                \"recordId\": \"11182f15-29f2-4b75-8971-8ce357e8073f\"\n            },\n            \"status\": \"FINISHED\",\n            \"attempt\": 1,\n            \"createdAt\": \"2022-04-26T08:31:52.220768\",\n            \"modifiedAt\": \"2022-04-26T08:31:56.106451\",\n            \"cause\": null\n        },\n        {\n            \"id\": {\n                \"bulkJob\": \"cbc71df7-4f86-414e-906f-815f3059e437\",\n                \"recordId\": \"02dbe579-2bcb-40a6-a7b3-1a7161ae32be\"\n            },\n            \"status\": \"FAILED\",\n            \"attempt\": 1,\n            \"createdAt\": \"2022-04-26T08:31:52.238225\",\n            \"modifiedAt\": \"2022-04-26T08:31:56.163611\",\n            \"cause\": \"Field [jobTitle] can not be changed in record [02dbe579-2bcb-40a6-a7b3-1a7161ae32be] as it is not a part of record type [Persoon]\"\n        },\n        {\n            \"id\": {\n                \"bulkJob\": \"cbc71df7-4f86-414e-906f-815f3059e437\",\n                \"recordId\": \"fb102631-89b3-4f8d-8231-5ab2f910710c\"\n            },\n            \"status\": \"FAILED\",\n            \"attempt\": 1,\n            \"createdAt\": \"2022-04-26T08:31:52.350935\",\n            \"modifiedAt\": \"2022-04-26T08:31:56.259313\",\n            \"cause\": \"Field [jobTitle] can not be changed in record [fb102631-89b3-4f8d-8231-5ab2f910710c] as it is not a part of record type [Persoonsvermelding]\"\n        },\n        {\n            \"id\": {\n                \"bulkJob\": \"cbc71df7-4f86-414e-906f-815f3059e437\",\n                \"recordId\": \"820a7212-ead1-4eb2-bf63-03196d555ae5\"\n            },\n            \"status\": \"FAILED\",\n            \"attempt\": 1,\n            \"createdAt\": \"2022-04-26T08:31:52.395069\",\n            \"modifiedAt\": \"2022-04-26T08:31:56.345223\",\n            \"cause\": \"Field [jobTitle] can not be changed in record [820a7212-ead1-4eb2-bf63-03196d555ae5] as it is not a part of record type [ErfgoedregisterAdres]\"\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 5,\n        \"total\": 250,\n        \"max\": null\n    }\n}"}],"_postman_id":"c40072f3-6b74-4539-a7a8-7a2c79b564dd"},{"name":"Activity log - list bulk actions Copy","id":"6056f501-6428-44f3-ae02-b80a4073e9a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/activity-log/bulk?page=1&perPage=25&id=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","bulk"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>current page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>amount of results per page</p>\n","type":"text/plain"},"key":"perPage","value":"25"},{"description":{"content":"<p>filter on id of bulk job</p>\n","type":"text/plain"},"key":"id","value":""}],"variable":[]}},"response":[{"id":"b58ddbf9-5265-40ce-b26d-5bb86e4f302c","name":"Activity log for bulk actions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/activity-log/bulk?page=1&perPage=25","host":["https://test.memorix.io"],"path":["activity-log","bulk"],"query":[{"key":"page","value":"1","description":"current page number"},{"key":"perPage","value":"25","description":"amount of results per page"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"200f26d2-0328-4880-98f0-1fe3c48a188d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T11:22:43.817532\",\n                \"activity\": \"ApplyAccessibilityFieldOperation\",\n                \"progress\": {\n                    \"current\": 1064,\n                    \"total\": 1064,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T11:25:00.653510\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"7850a828-a58d-4d86-8e86-3fa3f4e9fd61\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T10:14:29.320917\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 11,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T10:14:32.569477\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"c5089184-1f84-403b-a462-007ce08a7391\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T09:00:59.845682\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T09:01:00.775902\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f336e69a-15d9-42f3-ab09-a352273e2f2f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T08:56:30.269595\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T08:56:31.778948\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f4719a82-5880-4630-9c10-4921bd160a16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-11T10:06:46.338534\",\n                \"activity\": \"ApplyFieldOperation\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"d5167014-3e52-4167-886b-267113a869e9\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-08T11:21:13.715930\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 6,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d84e327-64f9-4f07-bc2a-e832e90f772d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-01T10:46:30.568088\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e7540c11-154c-4bda-a509-f3379d5ec9bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:37:14.009621\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"2a08a4e2-87a6-432f-be4e-6ea7bc016576\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:32:49.315655\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"10eff075-cfa2-420c-aa20-09094cced4b4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-31T08:30:33.484903\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"4a43698f-6b59-43e9-96b2-4b6ba24a3559\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:46.161730\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"b0048841-a4bb-44a2-8462-df49fdb6b648\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:34.719153\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e1555ce7-eedb-4de7-a639-6217ac6a33f4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-25T10:14:08.845327\",\n                \"activity\": \"AddToProject\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"86272fc1-e68c-4694-88ed-e813265de7bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:16:23.723434\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ebe55b41-4028-4e6a-8061-fdd20d924109\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:14:11.302465\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"46c04f87-5d3e-4a1b-8d7f-b423c45957d4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:12:31.173256\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d87ff30-8898-46eb-8c24-4136ce946ed4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-24T15:10:24.145922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ac9104c8-e681-4d1d-bb36-134d35953b97\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:55:38.276922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"02dfbd0a-c875-423f-89ae-0e6b1fb4c246\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:50:03.518030\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"a5d45fc0-aa63-4111-a4f5-89314d234e31\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T09:04:38.085628\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"20a164b8-0aa2-4723-b6b2-2eba347d732f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:25:40.149996\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f7ab2564-f02d-430b-96b2-03bff3eba69a\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:32.651105\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"956837fc-c162-4ff9-a115-e85a43a67c16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:08.284025\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 20,\n                    \"total\": 20,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"cb2c72da-b0f3-4c12-a691-d07b6f15ea20\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T21:00:58.750066\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"8adb7eeb-96bd-4a41-9ced-b5ea00cf561c\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T20:56:50.947735\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 25,\n        \"total\": 160,\n        \"max\": null\n    }\n}"}],"_postman_id":"6056f501-6428-44f3-ae02-b80a4073e9a5"},{"name":"Bulk fields by record id","id":"97279296-8f88-464f-8491-e1f5e140d820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"arguments\": {\n    \"q\": \"\",\n    \"page\": 1,\n    \"perPage\": 1000\n  },\n  \"recordIds\": [\n    \"1ef27635-eb77-45f1-8939-6997a3fb7f87\"\n  ]\n}"},"url":"https://test.memorix.io/bulk/ids/fields","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","ids","fields"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"97279296-8f88-464f-8491-e1f5e140d820"},{"name":"Bulk fields by query","id":"13441a6c-5589-4bba-8b2d-e8f75435855b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"arguments\": {\n    \"q\": \"\",\n    \"page\": 1,\n    \"perPage\": 1000\n  },\n  \"query\": {\n    \"queries\": [\n      {\n        \"query\": \"\",\n        \"type\": \"FullTextQuery\"\n      },\n      {\n        \"queries\": [],\n        \"type\": \"OrQuery\"\n      }\n    ],\n    \"type\": \"AndQuery\"\n  }\n}"},"url":"https://test.memorix.io/bulk/query/fields","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","query","fields"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"13441a6c-5589-4bba-8b2d-e8f75435855b"},{"name":"Delete records by ids","id":"0e029a65-56af-41e8-85b3-e588b3f9f8a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"type\": \"REMOVE_RECORDS\"\n\t},\n\t\"recordIds\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids","description":"<p>Delete records by multiple id's</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","ids"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e029a65-56af-41e8-85b3-e588b3f9f8a6"},{"name":"Delete records by query","id":"882c820e-3f59-4625-8da3-134c82e99116","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"operation\": {\n\t\t\"type\": \"REMOVE_RECORDS\"\n\t},\n    \"query\": {\n        \"type\": \"FieldQuery\",\n        \"operator\": \"equals\",\n        \"field\": \"recordType.id\",\n        \"value\": \"SomeRecordType\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","description":"<p>Delete records by search query</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"882c820e-3f59-4625-8da3-134c82e99116"},{"name":"Create records from file assets","id":"837e61a9-b983-4801-bbb2-2513b7aac57e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"operation\": {\r\n        \"type\": \"CREATE_RECORDS_FROM_ASSETS\",\r\n        \"recordTypeId\": \"File\",\r\n        \"collectionId\": \"b71bdbfa-1313-4e77-b5e8-9217805c60d1\",\r\n        \"recordField\": \"file:textarea\",\r\n        \"folderPath\": \"/TEST\",\r\n        \"startFrom\": -111111121,\r\n        \"model\": [\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/new\",\r\n                \"@type\": \"http://localhost:8080/resources/recordtypes/File\"\r\n            },\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/new\",\r\n                \"@type\": \"http://memorix.io/ontology#Record\"\r\n            },\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/new\",\r\n                \"http://localhost:8080/resources/recordtypes/File#id\": \"value will be replaced\"\r\n            },\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/new\",\r\n                \"http://localhost:8080/resources/recordtypes/File#title\": \"Test\"\r\n            },\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/new\",\r\n                \"http://localhost:8080/resources/recordtypes/File#fonds\": {\r\n                    \"@id\": \"http://localhost:8080/resources/records/a9126f58-ebce-4d86-a5f4-44097a311fb9\"\r\n                }\r\n            },\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/a9126f58-ebce-4d86-a5f4-44097a311fb9\",\r\n                \"@type\": \"http://localhost:8080/resources/recordtypes/Fonds\"\r\n            },\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/a9126f58-ebce-4d86-a5f4-44097a311fb9/context\",\r\n                \"@type\": \"http://memorix.io/ontology#Context\"\r\n            },\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/a9126f58-ebce-4d86-a5f4-44097a311fb9/context\",\r\n                \"http://memorix.io/ontology#hasRecord\": {\r\n                    \"@id\": \"http://localhost:8080/resources/records/a9126f58-ebce-4d86-a5f4-44097a311fb9\"\r\n                }\r\n            },\r\n            {\r\n                \"@id\": \"http://localhost:8080/resources/records/a9126f58-ebce-4d86-a5f4-44097a311fb9/context\",\r\n                \"http://purl.org/dc/terms/title\": \"Current Fonds\"\r\n            }\r\n        ]\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/new","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","new"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"837e61a9-b983-4801-bbb2-2513b7aac57e"}],"id":"b90d9027-b662-4c9c-8775-6017067d502e","description":"<p>Bulk actions allow the user to modify multiple records based on selection using similar mechanism as ElasticSearch queries DSL. The following can be used:</p>\n<p>REGULAR QUERIES</p>\n<p><strong>FullTextQuery</strong> - will select all records where any field is matching the given searchprase.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"FullTextQuery\",\n    \"query\": \"my search phrase\"\n}\n\n</code></pre>\n<p><strong>FieldQuery</strong> - will select all the records with a match for given field value. Can be used to retrieve records of collection, set, project or i.e. all records containing a specific field value.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"FieldQuery\",\n    \"field\": \"collection.id\",\n    \"operator\": \"equals\",\n    \"value\": {{collectionId}},\n}\n\n</code></pre>\n<p><strong>IdsQuery</strong> - will select all the records with given ids.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"IdsQuery\",\n    \"ids\": [ {{recordId1}}, {{recordId2}} ]\n}\n\n</code></pre>\n<p>AGGREGATION QUERIES</p>\n<p><strong>AndQuery</strong> - will combine the above queries to allow more accurate selection. Only the records which match ALL conditions will be returned.</p>\n<p><em>The example above will return all the records from a collection with at least one field value matching the searchphrase</em>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"AndQuery\",\n    \"queries\": [\n        {\n            \"type\": \"SimpleSearchQuery\",\n            \"query\": \"my search phrase\"\n        },\n        {\n            \"type\": \"FieldQuery\",\n            \"field\": \"collection.id\",\n            \"operator\": \"equals\",\n            \"value\": {{collectionId}},\n        }\n    ]\n}\n\n</code></pre>\n<p><strong>OrQuery</strong> - will combine the above queries to allow more distinctive selection. All the records which match ANY condition will be returned.</p>\n<p><em>The example above will return all the records which are part of either collection1 or collection 2.</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"OrQuery\",\n    \"queries\": [\n        {\n            \"type\": \"FieldQuery\",\n            \"field\": \"collection.id\",\n            \"operator\": \"equals\",\n            \"value\": {{collectionId1}},\n        },\n        {\n            \"type\": \"FieldQuery\",\n            \"field\": \"collection.id\",\n            \"operator\": \"equals\",\n            \"value\": {{collectionId2}},\n        }\n    ]\n}\n\n</code></pre>\n<p>REVERSE SELECTION QUERIES</p>\n<p><strong>NotQuery</strong> - will reverse the selection returning all the records which DO NOT MATCH the provided criteria.</p>\n<p><em>The example below will select all the records which are not a part of a given collection.</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"NotQuery\",\n    \"query\": {\n        \"type\": \"FieldQuery\",\n        \"field\": \"collection.id\",\n        \"operator\": \"equals\",\n        \"value\": {{collectionId}}\n    }\n}\n\n</code></pre>\n","_postman_id":"b90d9027-b662-4c9c-8775-6017067d502e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Collections","item":[{"name":"List Collections","event":[{"listen":"test","script":{"id":"d988bb49-9a8c-4cad-8c90-37b971daf022","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'http://schema.org/ItemList',","        'memorix:Collection'","    ]","    Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:Collection');","    pm.collectionVariables.set(\"CollectionId\", Memorix.path.basename(Memorix.lastSeenIdentifier))","});",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"18e5022f-32c8-4fa3-87ca-373a01ec3bcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/collections","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","collections"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Repeatable Filter by memorix:Recordtype</p>\n","type":"text/plain"},"key":"filter.type","value":""},{"disabled":true,"description":{"content":"<p>Define property for ordering ('created' or 'modified')</p>\n","type":"text/plain"},"key":"orderBy","value":"created"},{"disabled":true,"description":{"content":"<p>Request specific page of result set (offset by 1).</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Maximum number of items per page</p>\n","type":"text/plain"},"key":"perPage","value":"25"},{"disabled":true,"key":"order","value":"asc"},{"disabled":true,"description":{"content":"<p>Search by collection title</p>\n","type":"text/plain"},"key":"title","value":"Files"}],"variable":[]}},"response":[{"id":"aa0506b6-1a1d-4da3-9cb1-14935864d0f9","name":"List Collections (Turtle)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/collections?filter.type=&title=","host":["https://test.memorix.io"],"path":["resources","collections"],"query":[{"key":"filter.type","value":"","type":"text","description":"Filter by memorix:Recordtype"},{"key":"orderBy","value":"created","type":"text","description":"Define property for ordering ('created' or 'modified')","disabled":true},{"key":"order","value":"asc","type":"text","description":"Type of ordering ('asc' or 'desc')","disabled":true},{"key":"page","value":"1","type":"text","description":"Request specific page of result set (offset by 1).","disabled":true},{"key":"perPage","value":"25","type":"text","description":"Maximum number of items per page","disabled":true},{"key":"title","value":"","description":"summary","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 01 Mar 2022 08:13:05 GMT"},{"key":"Server","value":"ktor-server-core/1.6.7"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"text/turtle"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n\n<http://0.0.0.0:8080/resources/collections/d277ebd9-27b6-4fdc-8ea3-15f37bd855c9>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/d277ebd9-27b6-4fdc-8ea3-15f37bd855c9/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/Event> ;\n        dcterms:created      \"2022-02-14T15:40:02.281963\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Shared information about Persons and Organizations for RCMH and MSG collections.\" ;\n        dcterms:modified     \"2022-02-14T17:38:22.128093\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:title        \"RCMH / MSG Events\" ;\n        <http://schema.org/numberOfItems>\n                \"17\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n[ rdf:type               memorix:Pagination ;\n  memorix:numberOfPages  \"1\"^^<http://www.w3.org/2001/XMLSchema#int> ;\n  memorix:page           \"1\"^^<http://www.w3.org/2001/XMLSchema#int> ;\n  memorix:perPage        \"25\"^^<http://www.w3.org/2001/XMLSchema#int> ;\n  memorix:total          \"6\"^^<http://www.w3.org/2001/XMLSchema#int>\n] .\n\n<http://0.0.0.0:8080/resources/collections/581ab856-f2af-4338-9a87-eca06587fd6b>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/581ab856-f2af-4338-9a87-eca06587fd6b/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/CreativeWork> ;\n        dcterms:created      \"2022-02-14T18:13:02.169902\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Collections of items from the Radio City Music Hall archive\" ;\n        dcterms:title        \"MSG Archive\" ;\n        <http://schema.org/numberOfItems>\n                \"2\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n<http://0.0.0.0:8080/resources/collections#total>\n        rdf:type  <http://schema.org/ItemList> .\n\n<http://0.0.0.0:8080/resources/collections/9cec964c-5aa7-441b-963a-e25505fee50d>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/9cec964c-5aa7-441b-963a-e25505fee50d/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/CreativeWork> ;\n        dcterms:created      \"2022-02-14T17:39:02.947609\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Collections of items from the Radio City Music Hall archive\" ;\n        dcterms:title        \"RCMH Archive\" ;\n        <http://schema.org/numberOfItems>\n                \"3\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n<http://0.0.0.0:8080/resources/collections/5d4d6e7d-985d-409e-917a-1011bc512735>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/5d4d6e7d-985d-409e-917a-1011bc512735/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/Box> , <http://0.0.0.0:8080/resources/recordtypes/Folder> ;\n        dcterms:created      \"2022-02-28T10:20:47.785381\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"The heart of the Conway Library is the private collection of Lord Conway of Allington, which came to The Courtauld Institute of Art in 1932. Since then, the Library has been developed continuously as a teaching and research collection. It now contains over one million images: photographs and cuttings of world architecture, architectural drawings and publications, sculpture, ivories, seals, metalwork, manuscript illumination, stained glass, wall paintings, panel paintings and textiles.\" ;\n        dcterms:modified     \"2022-03-01T08:08:53.009420\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:title        \"The Conway Library\" ;\n        <http://schema.org/numberOfItems>\n                \"0\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n<http://0.0.0.0:8080/resources/collections/8f770b00-4f5d-48c2-9801-1fa1aefa1899>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/8f770b00-4f5d-48c2-9801-1fa1aefa1899/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/Person> , <http://0.0.0.0:8080/resources/recordtypes/Organization> ;\n        dcterms:created      \"2022-02-14T15:38:16.240039\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Shared information about Persons and Organizations for RCMH and MSG collections.\" ;\n        dcterms:modified     \"2022-02-14T16:45:31.326706\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:title        \"Persons and Organizations\" ;\n        <http://schema.org/numberOfItems>\n                \"5\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n<http://0.0.0.0:8080/resources/collections/425a49c0-054e-4536-9330-addfd3186aaa>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/425a49c0-054e-4536-9330-addfd3186aaa/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/CreativeWork> ;\n        dcterms:created      \"2022-02-28T10:38:23.702795\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Anthony Kersting's Archive of over 160,000 images which was donated to the Courtauld upon his death in 2008. His photographs were licensed to illustrate books for the National Trust, many of Nikolaus Pevsner's Guides, Arthur Mee's King's England series of guidebooks, and Encyclopaedia Britannica. His archive also covers architecture of almost every European country, Asia, New Zealand, the Middle and Far East. Kersting's election in 1947 to a Fellow of the Royal Geographical Society was principally in recognition of his photographs of Islamic architecture with particular reference to Iran, Iraq (including Kurdistan and the Yazidi people), Syria and Israel.\" ;\n        dcterms:modified     \"2022-02-28T10:40:18.333681\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:title        \"The Anthony Kersting Archive\" ;\n        <http://schema.org/numberOfItems>\n                \"0\"^^<http://www.w3.org/2001/XMLSchema#int> .\n"},{"id":"ef369400-0c8e-4098-8769-a34a88170c24","name":"List Collections (Turtle) Copy","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/collections?order=asc&orderBy=title","host":["https://test.memorix.io"],"path":["resources","collections"],"query":[{"key":"orderBy","value":"created","type":"text","description":"Define property for ordering ('created' or 'modified')","disabled":true},{"key":"order","value":"asc","description":"Type of ordering ('asc' or 'desc')"},{"key":"page","value":"1","type":"text","description":"Request specific page of result set (offset by 1).","disabled":true},{"key":"perPage","value":"25","type":"text","description":"Maximum number of items per page","disabled":true},{"key":"orderBy","value":"title"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Tue, 01 Mar 2022 08:13:05 GMT"},{"key":"Server","value":"ktor-server-core/1.6.7"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"text/turtle"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n\n<http://0.0.0.0:8080/resources/collections/d277ebd9-27b6-4fdc-8ea3-15f37bd855c9>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/d277ebd9-27b6-4fdc-8ea3-15f37bd855c9/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/Event> ;\n        dcterms:created      \"2022-02-14T15:40:02.281963\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Shared information about Persons and Organizations for RCMH and MSG collections.\" ;\n        dcterms:modified     \"2022-02-14T17:38:22.128093\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:title        \"RCMH / MSG Events\" ;\n        <http://schema.org/numberOfItems>\n                \"17\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n[ rdf:type               memorix:Pagination ;\n  memorix:numberOfPages  \"1\"^^<http://www.w3.org/2001/XMLSchema#int> ;\n  memorix:page           \"1\"^^<http://www.w3.org/2001/XMLSchema#int> ;\n  memorix:perPage        \"25\"^^<http://www.w3.org/2001/XMLSchema#int> ;\n  memorix:total          \"6\"^^<http://www.w3.org/2001/XMLSchema#int>\n] .\n\n<http://0.0.0.0:8080/resources/collections/581ab856-f2af-4338-9a87-eca06587fd6b>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/581ab856-f2af-4338-9a87-eca06587fd6b/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/CreativeWork> ;\n        dcterms:created      \"2022-02-14T18:13:02.169902\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Collections of items from the Radio City Music Hall archive\" ;\n        dcterms:title        \"MSG Archive\" ;\n        <http://schema.org/numberOfItems>\n                \"2\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n<http://0.0.0.0:8080/resources/collections#total>\n        rdf:type  <http://schema.org/ItemList> .\n\n<http://0.0.0.0:8080/resources/collections/9cec964c-5aa7-441b-963a-e25505fee50d>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/9cec964c-5aa7-441b-963a-e25505fee50d/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/CreativeWork> ;\n        dcterms:created      \"2022-02-14T17:39:02.947609\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Collections of items from the Radio City Music Hall archive\" ;\n        dcterms:title        \"RCMH Archive\" ;\n        <http://schema.org/numberOfItems>\n                \"3\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n<http://0.0.0.0:8080/resources/collections/5d4d6e7d-985d-409e-917a-1011bc512735>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/5d4d6e7d-985d-409e-917a-1011bc512735/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/Box> , <http://0.0.0.0:8080/resources/recordtypes/Folder> ;\n        dcterms:created      \"2022-02-28T10:20:47.785381\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"The heart of the Conway Library is the private collection of Lord Conway of Allington, which came to The Courtauld Institute of Art in 1932. Since then, the Library has been developed continuously as a teaching and research collection. It now contains over one million images: photographs and cuttings of world architecture, architectural drawings and publications, sculpture, ivories, seals, metalwork, manuscript illumination, stained glass, wall paintings, panel paintings and textiles.\" ;\n        dcterms:modified     \"2022-03-01T08:08:53.009420\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:title        \"The Conway Library\" ;\n        <http://schema.org/numberOfItems>\n                \"0\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n<http://0.0.0.0:8080/resources/collections/8f770b00-4f5d-48c2-9801-1fa1aefa1899>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/8f770b00-4f5d-48c2-9801-1fa1aefa1899/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/Person> , <http://0.0.0.0:8080/resources/recordtypes/Organization> ;\n        dcterms:created      \"2022-02-14T15:38:16.240039\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Shared information about Persons and Organizations for RCMH and MSG collections.\" ;\n        dcterms:modified     \"2022-02-14T16:45:31.326706\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:title        \"Persons and Organizations\" ;\n        <http://schema.org/numberOfItems>\n                \"5\"^^<http://www.w3.org/2001/XMLSchema#int> .\n\n<http://0.0.0.0:8080/resources/collections/425a49c0-054e-4536-9330-addfd3186aaa>\n        rdf:type             memorix:Collection ;\n        memorix:History      <http://0.0.0.0:8080/resources/collections/425a49c0-054e-4536-9330-addfd3186aaa/history> ;\n        memorix:Recordtype   <http://0.0.0.0:8080/resources/recordtypes/CreativeWork> ;\n        dcterms:created      \"2022-02-28T10:38:23.702795\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <http://0.0.0.0:8080/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf> ;\n        dcterms:description  \"Anthony Kersting's Archive of over 160,000 images which was donated to the Courtauld upon his death in 2008. His photographs were licensed to illustrate books for the National Trust, many of Nikolaus Pevsner's Guides, Arthur Mee's King's England series of guidebooks, and Encyclopaedia Britannica. His archive also covers architecture of almost every European country, Asia, New Zealand, the Middle and Far East. Kersting's election in 1947 to a Fellow of the Royal Geographical Society was principally in recognition of his photographs of Islamic architecture with particular reference to Iran, Iraq (including Kurdistan and the Yazidi people), Syria and Israel.\" ;\n        dcterms:modified     \"2022-02-28T10:40:18.333681\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:title        \"The Anthony Kersting Archive\" ;\n        <http://schema.org/numberOfItems>\n                \"0\"^^<http://www.w3.org/2001/XMLSchema#int> .\n"}],"_postman_id":"18e5022f-32c8-4fa3-87ca-373a01ec3bcb"},{"name":"Get single Collection","id":"b98f145c-28a8-44ab-8f04-5dd64e6084e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/collections/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","collections",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"e043302a-4c23-4795-8b0b-5e0c6cd8a341","name":"Get single Collection","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/collections/"},"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n\n<https://example.memorix-test.nl/resources/collections/966ed713-6961-4311-b18a-bd5a9a8702fe>\n        rdf:type             memorix:Collection ;\n        memorix:History      <https://example.memorix-test.nl/resources/collections/966ed713-6961-4311-b18a-bd5a9a8702fe/history> ;\n        dcterms:created      \"2022-02-03T13:29:38.459593\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:modified     \"2022-02-03T14:29:38.459593\"^^<http://www.w3.org/2001/XMLSchema#dateTime> ;\n        dcterms:creator      <https://example.memorix-test.nl/resources/users/696bf3ab-c709-492f-a52b-e6454aba81b2> ;\n        dcterms:description  \"Coppie to nex datah\" ;\n        dcterms:title        \"Achter werkingen\" ;\n        <http://schema.org/numberOfItems>\n                \"0\"^^<http://www.w3.org/2001/XMLSchema#int> .\n"}],"_postman_id":"b98f145c-28a8-44ab-8f04-5dd64e6084e5"},{"name":"Add new Collection","id":"2aca1381-276c-470b-8bff-4a818ac77688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/ld+json","type":"text"},{"key":"Content-Type","value":"{{Content-type}}","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/collections","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","collections"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Provide a Collection ID to store this Collection. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.</p>\n","type":"text/plain"},"key":"collectionId","value":""}],"variable":[]}},"response":[{"id":"712afbdb-51b3-4d7f-ad01-fbfecba7ed51","name":"Add new Collection (Turtle)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix dct: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix recordtypes: </resources/recordtypes/> .\n<> a memorix:Collection ;\n  dct:description \"Collection of Persons and Organisations\" ;\n  dct:title \"Persons & Organisations\" ;\n  memorix:hasRecordtype recordtypes:Persoon ."},"url":"https://test.memorix.io/resources/collections"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2aca1381-276c-470b-8bff-4a818ac77688"},{"name":"Modify existing Collection","id":"e835680b-8c1f-4c14-952a-4a2673896636","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/turtle","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix dct: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n\n<#> a <http://memorix.io/ontology#Collection> ;\n   dct:description \"Aanwinsten van Archief Delft\" ;\n   dct:title \"Aanwinsten\" ;\n   memorix:hasRecordtype </resources/recordtypes/Aanwinst>\n.\n"},"url":"https://test.memorix.io/resources/collections/06e945b6-d638-4963-9b2d-0bcb411f6931","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","collections","06e945b6-d638-4963-9b2d-0bcb411f6931"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"bd593e4c-ff78-4fe9-8e6c-0454e9de927a","name":"Modify exisiting Collection","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix dct: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix recordtypes: </resources/recordtypes/> .\n<> a memorix:Collection ;\n  dct:description \"My modified Collection\" ;\n  dct:title \"My Collection\" ;\n  memorix:hasRecordtype recordtypes:All ."},"url":"https://test.memorix.io/resources/collections/2e5cc7c9-2b8e-48d4-90c4-b9747ce069d6"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e835680b-8c1f-4c14-952a-4a2673896636"},{"name":"Delete Collection","id":"c852ae32-1430-4687-a4e9-2377bc179f6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/collections/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","collections",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c852ae32-1430-4687-a4e9-2377bc179f6e"}],"id":"71c1cfa8-1b9f-40f3-beaa-a10f6ba95a8d","description":"<p>Collections are permanent groupings of Records that are conceptually linked. Possible uses could be for works that were donated as a group, objects that all belonged to the same person, or that were shown together in a historical exhibition etc. Normally you wouldn’t use this to describe a category of works such as “books,” though that is your choice. Object can only be in a single collection.</p>\n","_postman_id":"71c1cfa8-1b9f-40f3-beaa-a10f6ba95a8d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Configuration","item":[{"name":"Organization","item":[{"name":"Public","item":[{"name":"Get Public Opening Hours","id":"4fc59ea3-91be-46bb-95b4-4745493f400a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://test.memorix.io/public/opening-hours","urlObject":{"path":["public","opening-hours"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"40e35e94-0c86-41a3-a9fe-bf6279446a0d","name":"Get Public Opening Hours","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/public/opening-hours"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"openingHours\": {\n        \"monday\": {\n            \"isOpen\": true,\n            \"openAt\": \"11:00\",\n            \"closedAt\": \"16:00\"\n        },\n        \"tuesday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"wednesday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"thursday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"friday\": {\n            \"isOpen\": true,\n            \"openAt\": \"09:00\",\n            \"closedAt\": \"15:00\"\n        },\n        \"saturday\": {\n            \"isOpen\": true,\n            \"openAt\": \"10:00\",\n            \"closedAt\": \"15:00\"\n        },\n        \"sunday\": {\n            \"isOpen\": false,\n            \"openAt\": \"00:00\",\n            \"closedAt\": \"00:00\"\n        }\n    }\n}"}],"_postman_id":"4fc59ea3-91be-46bb-95b4-4745493f400a"},{"name":"List Public Closed Days","id":"144bc57e-a145-4505-864f-ab68a864d7c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://test.memorix.io/public/closed-days?year=2025","urlObject":{"path":["public","closed-days"],"host":["https://test.memorix.io"],"query":[{"key":"year","value":"2025"}],"variable":[]}},"response":[{"id":"48761e83-43fc-4dea-b2ab-d910c1f0e2c7","name":"List Public Closed Days","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/public/closed-days?year=2025","host":["https://test.memorix.io"],"path":["public","closed-days"],"query":[{"key":"year","value":"2025"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"date\": \"2025-03-25\"\n    },\n    {\n        \"date\": \"2025-04-05\"\n    },\n    {\n        \"date\": \"2025-04-06\"\n    },\n    {\n        \"date\": \"2025-05-15\"\n    }\n]"}],"_postman_id":"144bc57e-a145-4505-864f-ab68a864d7c8"}],"id":"8074b5ca-56b2-479c-acee-b0b00bf2f9c9","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"7051aa7a-e4b9-48d4-a71f-672813445210","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"9cd33d3a-7488-4f8c-b43a-9e4fbc12fc8a","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"8074b5ca-56b2-479c-acee-b0b00bf2f9c9","description":""},{"name":"Create new Organization","id":"6cda4103-5ac3-4650-a6ec-72cfe3a2d89e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Organization name\",\r\n    \"alternateName\": \"ORGN\",\r\n    \"isilCode\": \"NL-0800070000\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/organization","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"6cda4103-5ac3-4650-a6ec-72cfe3a2d89e"},{"name":"Get Organization","id":"9739e965-b7f9-4918-b23a-00d14949e655","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/organization","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"7af611cb-f285-43e7-b753-fa6db8e1d7d4","name":"Get Organization","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/organization"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix schema: <http://schema.org/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix specialOpeningHoursSpecification: <https://example.memorix.io/resources/organization/specialOpeningHoursSpecification/> .\n@prefix openingHoursSpecification: <https://example.memorix.io/resources/organization/openingHoursSpecification/> .\n\n<https://example.memorix.io/api/resources/organization> a memorix:Organization;\n  sh:shapesGraph </api/resources/shapes/Organization> ;\n  schema:legalName \"Stadsarchief Amsterdam\";\n  schema:url <https://www.amsterdam.nl/stadsarchief/> ;\n  schema:email \"stadsarchief@amsterdam.nl\";\n  schema:location [\n  \ta schema:Place;\n    schema:address \"\"\"<p>Vijzelstraat 32<br>1017 HL Amsterdam</p>\n        <p><em>Zakelijk bezoek:</em>\n        Herengracht 482\n        1017 CB Amsterdam</p>\n\n        <p><em>Postadres:</em><br>\n        Postbus 51140\n        1007 EC Amsterdam</p>\"\"\";\n    schema:openingHoursSpecification [rdf:Seq (\n\t\topeningHoursSpecification:983d45b4-c2b2-11eb-879a-dbb8830414ac\n\t\topeningHoursSpecification:983d45b4-c2b2-11eb-879a-dbb8830414bd\n\t\topeningHoursSpecification:983d45b4-c2b2-11eb-879a-dbb8830414ce\n\t)];\n    schema:specialOpeningHoursSpecification [rdf:Seq (\n\t\tspecialOpeningHoursSpecification:0f859514-c56d-11ec-bd8f-3af3da210acb\n\t)]\n  ]\n.\n\nopeningHoursSpecification:983d45b4-c2b2-11eb-879a-dbb8830414ac rdf:type schema:OpeningHoursSpecification .\nopeningHoursSpecification:983d45b4-c2b2-11eb-879a-dbb8830414bd rdf:type schema:OpeningHoursSpecification .\nopeningHoursSpecification:983d45b4-c2b2-11eb-879a-dbb8830414ce rdf:type schema:OpeningHoursSpecification . \nspecialOpeningHoursSpecification:0f859514-c56d-11ec-bd8f-3af3da210acb rdf:type schema:OpeningHoursSpecification .\n"}],"_postman_id":"9739e965-b7f9-4918-b23a-00d14949e655"},{"name":"Save Organization","id":"ea94ffc9-5302-4479-8e1d-c36aad457ec9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/organization","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"4af9eca9-7b6c-4b35-a4d4-11bb03c7f633","name":"Save Organization","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"@prefix schema: <http://schema.org/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n\n<> a schema:Organization, memorix:Tenant;\n  schema:legalName \"Stadsarchief Amsterdam\";\n  schema:url <https://www.amsterdam.nl/stadsarchief/> ;\n  schema:address \"\"\"<p>Vijzelstraat 32<br>1017 HL Amsterdam</p>\n\t<p><em>Zakelijk bezoek:</em>\n\tHerengracht 482\n\t1017 CB Amsterdam</p>\n\n\t<p><em>Postadres:</em><br>\n\tPostbus 51140\n\t1007 EC Amsterdam</p>\"\"\";\n  schema:email \"stadsarchief@amsterdam.nl\";\n."},"url":"https://test.memorix.io/resources/organization"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix schema: <http://schema.org/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix : <#> .\n\n<> a schema:Organization, memorix:Tenant;\n  schema:legalName \"Stadsarchief Amsterdam\";\n  schema:url <https://www.amsterdam.nl/stadsarchief/> ;\n  schema:address \"\"\"<p>Vijzelstraat 32<br>1017 HL Amsterdam</p>\n\t<p><em>Zakelijk bezoek:</em>\n\tHerengracht 482\n\t1017 CB Amsterdam</p>\n\n\t<p><em>Postadres:</em><br>\n\tPostbus 51140\n\t1007 EC Amsterdam</p>\"\"\";\n  schema:email \"stadsarchief@amsterdam.nl\";\n."}],"_postman_id":"ea94ffc9-5302-4479-8e1d-c36aad457ec9"},{"name":"Get Opening Hours","id":"45cfc980-95f8-4ad3-a702-9909292aed93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/organization/opening-hours","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization","opening-hours"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"e5e33592-5835-4eae-9fa9-8de7e30d5eb9","name":"Get Opening Hours","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/organization/opening-hours"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"openingHours\": {\n        \"monday\": {\n            \"isOpen\": true,\n            \"openAt\": \"11:00\",\n            \"closedAt\": \"16:00\"\n        },\n        \"tuesday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"wednesday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"thursday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"friday\": {\n            \"isOpen\": true,\n            \"openAt\": \"09:00\",\n            \"closedAt\": \"15:00\"\n        },\n        \"saturday\": {\n            \"isOpen\": true,\n            \"openAt\": \"10:00\",\n            \"closedAt\": \"15:00\"\n        },\n        \"sunday\": {\n            \"isOpen\": false,\n            \"openAt\": \"00:00\",\n            \"closedAt\": \"00:00\"\n        }\n    }\n}"}],"_postman_id":"45cfc980-95f8-4ad3-a702-9909292aed93"},{"name":"List Closed Days","id":"05ff0db0-8cf1-4a38-9499-87acd0c02bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/organization/closed-days?year=2025","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization","closed-days"],"host":["https://test.memorix.io"],"query":[{"key":"year","value":"2025"}],"variable":[]}},"response":[{"id":"a3bf394e-7478-4aeb-82a1-3244df108382","name":"List Closed Days","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/organization/closed-days?year=2025","host":["https://test.memorix.io"],"path":["resources","organization","closed-days"],"query":[{"key":"year","value":"2025"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"date\": \"2025-03-25\"\n    },\n    {\n        \"date\": \"2025-04-05\"\n    },\n    {\n        \"date\": \"2025-04-06\"\n    },\n    {\n        \"date\": \"2025-05-15\"\n    }\n]"}],"_postman_id":"05ff0db0-8cf1-4a38-9499-87acd0c02bad"},{"name":"Create/Update Opening Hours","id":"133b29f8-b87e-44d7-bafe-dadaa98ceb15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"monday\": {\n    \"isOpen\": true,\n    \"openAt\": \"11:00:00\",\n    \"closedAt\": \"16:00:00\"\n  },\n  \"tuesday\": {\n    \"isOpen\": true,\n    \"openAt\": \"13:00:00\",\n    \"closedAt\": \"20:00:00\"\n  },\n  \"wednesday\": {\n    \"isOpen\": true,\n    \"openAt\": \"13:00:00\",\n    \"closedAt\": \"20:00:00\"\n  },\n  \"thursday\": {\n    \"isOpen\": true,\n    \"openAt\": \"13:00:00\",\n    \"closedAt\": \"20:00:00\"\n  },\n  \"friday\": {\n    \"isOpen\": true,\n    \"openAt\": \"09:00:00\",\n    \"closedAt\": \"15:00:00\"\n  },\n  \"saturday\": {\n    \"isOpen\": true,\n    \"openAt\": \"10:00:00\",\n    \"closedAt\": \"15:00:00\"\n  },\n  \"sunday\": {\n    \"isOpen\": false,\n    \"openAt\": \"00:00:00\",\n    \"closedAt\": \"00:00:00\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/organization/opening-hours","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization","opening-hours"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"b9f941c8-ab7d-4b0a-82e1-6b19c03bb78c","name":"Create/Update Opening Hours","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"monday\": {\n    \"isOpen\": true,\n    \"openAt\": \"11:00:00\",\n    \"closedAt\": \"16:00:00\"\n  },\n  \"tuesday\": {\n    \"isOpen\": true,\n    \"openAt\": \"13:00:00\",\n    \"closedAt\": \"20:00:00\"\n  },\n  \"wednesday\": {\n    \"isOpen\": true,\n    \"openAt\": \"13:00:00\",\n    \"closedAt\": \"20:00:00\"\n  },\n  \"thursday\": {\n    \"isOpen\": true,\n    \"openAt\": \"13:00:00\",\n    \"closedAt\": \"20:00:00\"\n  },\n  \"friday\": {\n    \"isOpen\": true,\n    \"openAt\": \"09:00:00\",\n    \"closedAt\": \"15:00:00\"\n  },\n  \"saturday\": {\n    \"isOpen\": true,\n    \"openAt\": \"10:00:00\",\n    \"closedAt\": \"15:00:00\"\n  },\n  \"sunday\": {\n    \"isOpen\": false,\n    \"openAt\": \"00:00:00\",\n    \"closedAt\": \"00:00:00\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/organization/opening-hours"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"openingHours\": {\n        \"monday\": {\n            \"isOpen\": true,\n            \"openAt\": \"11:00\",\n            \"closedAt\": \"16:00\"\n        },\n        \"tuesday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"wednesday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"thursday\": {\n            \"isOpen\": true,\n            \"openAt\": \"13:00\",\n            \"closedAt\": \"20:00\"\n        },\n        \"friday\": {\n            \"isOpen\": true,\n            \"openAt\": \"09:00\",\n            \"closedAt\": \"15:00\"\n        },\n        \"saturday\": {\n            \"isOpen\": true,\n            \"openAt\": \"10:00\",\n            \"closedAt\": \"15:00\"\n        },\n        \"sunday\": {\n            \"isOpen\": false,\n            \"openAt\": \"00:00\",\n            \"closedAt\": \"00:00\"\n        }\n    }\n}"}],"_postman_id":"133b29f8-b87e-44d7-bafe-dadaa98ceb15"},{"name":"Create New Closed Days","id":"33d6b68c-334f-40ae-a998-30fddea01197","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://test.memorix.io/resources/organization/closed-days","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization","closed-days"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"7d93a055-5e2c-4a6b-b791-c50d1b94c04d","name":"Create New Closed Days","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"date\": \"2025-03-21\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/organization/closed-days"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"date\": \"2025-03-21\"\n}"}],"_postman_id":"33d6b68c-334f-40ae-a998-30fddea01197"},{"name":"Delete Opening Hours","id":"18e1584f-5711-4d86-b654-ff27f3151b84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/organization/opening-hours","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization","opening-hours"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"18e1584f-5711-4d86-b654-ff27f3151b84"},{"name":"Delete Closed Days","id":"e962004c-9736-4052-bca0-1109435a255b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/organization/closed-days/{{date}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","organization","closed-days","{{date}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e962004c-9736-4052-bca0-1109435a255b"}],"id":"48456cdd-662a-4389-bf8f-312983058675","_postman_id":"48456cdd-662a-4389-bf8f-312983058675","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Get configuration","id":"6b95b6ce-3c95-4726-aa4e-e49efc0c540a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/admin/config/{{configId}}","description":"<p>Get application configuration, currently there is only global configuration available for reservations.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","config","{{configId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"5b5961c3-749a-4524-abc8-ac5c4ea99157","name":"Get reservation configuration","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/admin/config/reservation"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6b95b6ce-3c95-4726-aa4e-e49efc0c540a"},{"name":"Update configuration","id":"232e835d-717c-426e-b523-f824d0a572fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"digitizationRequest\",\n    \"validation\": {\n        \"maxRequests\": 1,\n        \"duration\": \"Day\",\n        \"allowList\": [ \"test@example.com\" ]\n    },\n    \"from\": \"noreply@picturae.com\",\n    \"replyTo\": \"helpdesk@picturae.com\",    \n    \"confirmationMail\": {\n        \"title\": \"Confirmation digitization request\",\n        \"body\": \"Bedankt voor uw aanvraag.\"\n    },\n    \"notify\": \"helpdesk@picturae.com\",\n    \"instituteNotifyMail\": {\n        \"title\": \"A new digitization request\",\n        \"body\": \"There is a new sdigitization ${fondsId} ${fileId} ${recordId} ${name} ${email}.\"\n    },\n    \"rejectionMail\": {\n        \"title\": \"Digitization request rejected\",\n        \"body\": \"The request has been denied\"\n    },\n    \"finishedMail\": {\n        \"title\": \"Digitization request completed\",\n        \"body\": \"The request has been digitized\"\n    }    \n}\n"},"url":"https://test.memorix.io/admin/config","description":"<p>Update application configuration.</p>\n<h2 id=\"reservation-configuration\">Reservation configuration</h2>\n<p>The notify adres can be null</p>\n<p>The following placeholders can be used in the mail template and will be replaced by the actual values.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>placeholders</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>${fondsId}</td>\n<td>The fond id of the requested record</td>\n</tr>\n<tr>\n<td>${fileId}</td>\n<td>The file id of the requested record</td>\n</tr>\n<tr>\n<td>${recordId}</td>\n<td>The record id that was requested</td>\n</tr>\n<tr>\n<td>${name}</td>\n<td>The name of the person that has done the request</td>\n</tr>\n<tr>\n<td>${email}</td>\n<td>The email of the person that has done the request</td>\n</tr>\n<tr>\n<td>${depot}</td>\n<td>The depot title</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"reservation\",    \n    \"from\": \"noreply@picturae.com\",\n    \"replyTo\": \"helpdesk@picturae.com\",\n    \"notify\": \"info@picturae.com\",\n    \"visitorMail\": {\n        \"title\": \"Reservering van ${fondsId} ${fileId}\",\n        \"body\": \"Bedankt voor uw reserveringsaanvraag,\\r\\n\\r\\nArchiefbestand:\\r\\nRecord    : ${recordIri}\\r\\nFonds ID: ${fondsId}\\r\\nFile  ID: ${fileId}\\r\\n\\r\\nop: ${reserveDateFrom}\\r\\n\\r\\nDeze zal te bekijken zijn op de studiezaal.\"\n    },\n    \"instituteMail\": {\n        \"title\": \"Reservering van ${fondsId} ${fileId}\",\n        \"body\": \"Naam: ${name}\\r\\nEmail: ${email}\\r\\n\\r\\nReservering van archiefbestand:\\r\\nRecord  : ${recordIri)}\\r\\nFonds ID: ${fondsId}\\r\\nFile  ID: ${fileId}\\r\\n\\r\\nOp: ${reserveDateFrom}\"\n    },\n    \"daysInAdvance\": 1\n}\n\n</code></pre>\n<h2 id=\"digitization-requests\">Digitization requests</h2>\n<p>The <code>notify</code> adres can be null if you don't want to receive a notification for new requests.<br />And the `serialNumber` property can be null if you don't want the serial number to be prefixed.</p>\n<p>The following placeholders can be used in the mail template and will be replaced by the actual values.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>placeholders</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>${fondsId}</td>\n<td>The fond id of the requested record</td>\n</tr>\n<tr>\n<td>${fileId}</td>\n<td>The file id of the requested record</td>\n</tr>\n<tr>\n<td>${recordId}</td>\n<td>The record id that was requested</td>\n</tr>\n<tr>\n<td>${name}</td>\n<td>The name of the person that has done the request</td>\n</tr>\n<tr>\n<td>${email}</td>\n<td>The email of the person that has done the request</td>\n</tr>\n<tr>\n<td>${reason}</td>\n<td>The reason why a status has been changed (only for rejected status)</td>\n</tr>\n<tr>\n<td>${depot}</td>\n<td>The depot title</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"digitizationRequest\",\n    \"validation\": {\n        \"maxRequests\": 1,\n        \"duration\": \"Day\",\n        \"allowList\": [ \"test@example.com\" ]\n    },\n    \"from\": \"noreply@picturae.com\",\n    \"replyTo\": \"helpdesk@picturae.com\",    \n    \"confirmationMail\": {\n        \"title\": \"Confirmation digitization request\",\n        \"body\": \"Bedankt voor uw aanvraag.\"\n    },\n    \"notify\": \"helpdesk@picturae.com\",\n    \"instituteNotifyMail\": {\n        \"title\": \"A new digitization request\",\n        \"body\": \"There is a new sdigitization ${fondsId} ${fileId} ${recordId} ${name} ${email}.\"\n    },\n    \"rejectionMail\": {\n        \"title\": \"Digitization request rejected\",\n        \"body\": \"The request has been denied\"\n    },\n    \"finishedMail\": {\n        \"title\": \"Digitization request completed\",\n        \"body\": \"The request has been digitized\"\n    }\n}\n\n</code></pre>\n<h2 id=\"project\">Project</h2>\n<p>Project configuration allows you to set the formatting for the serial number generated in records in a project.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"project\",\n    \"serialNumber\": {\n        \"prefixChar\": \"0\",\n        \"length\": 5\n    }\n}\n\n</code></pre>\n<h2 id=\"oai-pmh\">OAI-PMH</h2>\n<p>Configure OAI-PMH settings to be used in identify verb.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"oaiPmh\",\n    \"administrativeEmail\": \"test@example.com\",\n    \"repositoryName\": \"Chris archive\"\n}\n\n</code></pre>\n<h2 id=\"spam-protection\">Spam protection</h2>\n<p>Configure spam protection for feedback and reservation or digi requests.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"spamProtection\",\n    \"reCaptchaKey\": \"secret-key\",\n    \"reCaptchaThreshold\": 0.5,\n    \"reCaptchaHost\": null\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","config"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"b2ae5988-37af-409e-ad21-6339d79d92a6","name":"Update reservation configuration","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"reservation\",    \n    \"from\": \"noreply@picturae.com\",\n    \"replyTo\": \"helpdesk@picturae.com\",\n    \"notify\": \"info@picturae.com\",\n    \"visitorMail\": {\n        \"title\": \"Reservering van ${fondsId} ${fileId}\",\n        \"body\": \"Bedankt voor uw reserveringsaanvraag,\\r\\n\\r\\nArchiefbestand:\\r\\nRecord    : ${recordIri}\\r\\nFonds ID: ${fondsId}\\r\\nFile  ID: ${fileId}\\r\\n\\r\\nop: ${reserveDateFrom}\\r\\n\\r\\nDeze zal te bekijken zijn op de studiezaal.\"\n    },\n    \"instituteMail\": {\n        \"title\": \"Reservering van ${fondsId} ${fileId}\",\n        \"body\": \"Naam: ${name}\\r\\nEmail: ${email}\\r\\n\\r\\nReservering van archiefbestand:\\r\\nRecord  : ${recordIri)}\\r\\nFonds ID: ${fondsId}\\r\\nFile  ID: ${fileId}\\r\\n\\r\\nOp: ${reserveDateFrom}\"\n    },\n    \"daysInAdvance\": 1\n}"},"url":"https://test.memorix.io/admin/config"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"319aa4a3-1654-42c6-8b32-305cf7b7618d","name":"Update digitization requests configuration","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"digitizationRequest\",\n    \"validation\": {\n        \"maxRequests\": 1,\n        \"duration\": \"Day\",\n        \"allowList\": [ \"test@example.com\" ]\n    },\n    \"from\": \"noreply@picturae.com\",\n    \"replyTo\": \"helpdesk@picturae.com\",    \n    \"confirmationMail\": {\n        \"title\": \"Confirmation digitization request\",\n        \"body\": \"Bedankt voor uw aanvraag.\"\n    },\n    \"notify\": \"helpdesk@picturae.com\",\n    \"instituteNotifyMail\": {\n        \"title\": \"A new digitization request\",\n        \"body\": \"There is a new sdigitization ${fondsId} ${fileId} ${recordId} ${name} ${email}.\"\n    },\n    \"rejectionMail\": {\n        \"title\": \"Digitization request rejected\",\n        \"body\": \"The request has been denied\"\n    },\n    \"finishedMail\": {\n        \"title\": \"Digitization request completed\",\n        \"body\": \"The request has been digitized\"\n    }\n}\n"},"url":"https://test.memorix.io/admin/config"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"aae9dbaa-94bb-4751-bfd2-8f244b1d875f","name":"Update project configuration","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"project\",\n    \"serialNumber\": {\n        \"prefixChar\": \"0\",\n        \"length\": 5\n    }\n}\n"},"url":"https://test.memorix.io/admin/config"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"897502ec-effb-4938-80e0-8bd2b858c9cf","name":"Update OAI-PMH configuration","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"oaiPmh\",\n    \"administrativeEmail\": \"test@example.com\",\n    \"repositoryName\": \"Chris archive\"\n}\n"},"url":"https://test.memorix.io/admin/config"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"ece8c8b2-d219-4779-bc40-70e8ae15e2e2","name":"Update reservation configuration per depot","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"reservation\",\n  \"replyTo\": \"memorix.servicedesk@vitecsoftware.com\",\n  \"notify\": [\n    \"info@memorix.nl\"\n  ],\n  \"visitorMail\": {\n    \"title\": \"Reservering van ${fondsId} ${fileId}\",\n    \"body\": \"Bedankt voor uw reserveringsaanvraag,\\r\\n\\r\\nArchiefbestand:\\r\\nRecord    : ${recordIri}\\r\\nFonds ID: ${fondsId}\\r\\nFile  ID: ${fileId}\\r\\n\\r\\nop: ${reserveDateFrom}\\r\\n\\r\\nDeze zal te bekijken zijn op de studiezaal.\"\n  },\n  \"instituteMail\": {\n    \"title\": \"Reservering van ${fondsId} ${fileId}\",\n    \"body\": \"Naam: ${name}\\r\\nEmail: ${email}\\r\\n\\r\\nReservering van archiefbestand:\\r\\nRecord  : ${recordIri)}\\r\\nFonds ID: ${fondsId}\\r\\nFile  ID: ${fileId}\\r\\n\\r\\nOp: ${reserveDateFrom}\"\n  },\n  \"daysInAdvance\": 4,\n  \"maxReservedDays\": 7,\n  \"depots\": [\n          {                                             \n              \"depotId\": \"27bae138-dcd6-4900-b606-17578b1a3604\",\n              \"daysInAdvance\": 3,                                                   \n              \"maxReservedDays\": 7\n          },                                                                 \n          {       \n              \"depotId\": \"e2ac896d-54f9-4f75-a8d9-9af572469330\",\n              \"daysInAdvance\": 8,\n              \"maxReservedDays\": null                                                 \n          }\n      ]  \n}"},"url":"https://test.memorix.io/admin/config"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"232e835d-717c-426e-b523-f824d0a572fe"},{"name":"Update website url","id":"65d0204b-ebe1-4d05-af26-cb43b786a82c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/publication","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","publication"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"6902cd53-7861-475d-afae-9b1813838132","name":"Update website url","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"websiteUrl\":\"http:example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/publication"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"65d0204b-ebe1-4d05-af26-cb43b786a82c"},{"name":"Get website url","id":"648bdf20-be9c-43ab-b4de-a09a6b7e6d78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/publication","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","publication"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"f799b475-27ab-4448-ba04-94f569672c98","name":"Get website url","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/publication"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"websiteUrl\": \"http:example.com\"\n} "}],"_postman_id":"648bdf20-be9c-43ab-b4de-a09a6b7e6d78"}],"id":"4d4f1b68-0f0b-4404-b72b-6c96b91ea6aa","_postman_id":"4d4f1b68-0f0b-4404-b72b-6c96b91ea6aa","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Dataset","item":[{"name":"Distribution","item":[{"name":"Get all distributions","id":"f1069b20-a7ba-4506-a89f-ae209854820d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io//admin/dataset/{datasetId}/distributions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["","admin","dataset","{datasetId}","distributions"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"f1069b20-a7ba-4506-a89f-ae209854820d"}],"id":"859eefca-1dcd-4a8b-9b1b-64226416be30","_postman_id":"859eefca-1dcd-4a8b-9b1b-64226416be30","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Get dataset","id":"36823bd3-3a88-47e7-8181-6dbde88a6523","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/dataset/{{datasetId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","dataset","{{datasetId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"36823bd3-3a88-47e7-8181-6dbde88a6523"},{"name":"List datasets","id":"a304162d-a8ee-4369-b610-cb26bce45a78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/admin/dataset?page=1&perPage=25","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","dataset"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"}],"variable":[]}},"response":[],"_postman_id":"a304162d-a8ee-4369-b610-cb26bce45a78"},{"name":"Update dataset","id":"9aa4364d-3d3b-44d7-9fa8-1cc4b5e75bb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"Dataset title\",\r\n    \"description\": \"Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\",\r\n    \"licenseId\" :\"{{licenseId}}\",\r\n    \"contactName\" :\"Test\",\r\n    \"contactEmail\": \"test@test.com\",\r\n    \"contactTelephone\": \"23435465766\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/dataset/ad2b2c3c-8ca3-4098-8bf4-c7b08aae8e1b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","dataset","ad2b2c3c-8ca3-4098-8bf4-c7b08aae8e1b"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"9aa4364d-3d3b-44d7-9fa8-1cc4b5e75bb1"},{"name":"Register Dataset With NDE","id":"94f286ec-7936-459e-a692-bba69b018077","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://test.memorix.io/admin/dataset/{{datasetId}}/register","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","dataset","{{datasetId}}","register"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"94f286ec-7936-459e-a692-bba69b018077"}],"id":"c461fb1f-d3fb-48c2-bcb8-695e06eee1b5","_postman_id":"c461fb1f-d3fb-48c2-bcb8-695e06eee1b5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Dam","item":[{"name":"List Folders","id":"9fe77c3c-a274-46b8-b3b9-c80947eb9e65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{host}}/resources/dam/folders","description":"<p>Retrieve folders from nextcloud.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","dam","folders"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"dc580095-a05c-4da2-9689-540a2cecba4d","name":"List Folders","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"path\":\"\",\r\n    \"offset\": 0,\r\n    \"pageSize\": 10,\r\n    \"sortOrder\": \"ASC\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{host}}/resources/dam/folders"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"total\": 10,\r\n    \"entries\": [\r\n        {\r\n            \"uid\": \"90\",\r\n            \"title\": \"artsy\",\r\n            \"path\": \"/artsy\",\r\n            \"size\": 7279255620,\r\n            \"files\": 8,\r\n            \"subFolders\": 0\r\n        },\r\n        {\r\n            \"uid\": \"5140421\",\r\n            \"title\": \"chris\",\r\n            \"path\": \"/chris\",\r\n            \"size\": 7977958973,\r\n            \"files\": 6,\r\n            \"subFolders\": 14\r\n        },\r\n        {\r\n            \"uid\": \"10193984\",\r\n            \"title\": \"CODE0001\",\r\n            \"path\": \"/CODE0001\",\r\n            \"size\": 9327,\r\n            \"files\": 1,\r\n            \"subFolders\": 0\r\n        },\r\n        {\r\n            \"uid\": \"5143127\",\r\n            \"title\": \"Demo 17-04-2024\",\r\n            \"path\": \"/Demo 17-04-2024\",\r\n            \"size\": 55407585,\r\n            \"files\": 0,\r\n            \"subFolders\": 2\r\n        },\r\n        {\r\n            \"uid\": \"4929161\",\r\n            \"title\": \"edepot\",\r\n            \"path\": \"/edepot\",\r\n            \"size\": 35979616584,\r\n            \"files\": 0,\r\n            \"subFolders\": 7\r\n        },\r\n        {\r\n            \"uid\": \"4938572\",\r\n            \"title\": \"Genealogie raadpleegomgeving\",\r\n            \"path\": \"/Genealogie raadpleegomgeving\",\r\n            \"size\": 175991620,\r\n            \"files\": 0,\r\n            \"subFolders\": 1\r\n        },\r\n        {\r\n            \"uid\": \"4938295\",\r\n            \"title\": \"Giovani test\",\r\n            \"path\": \"/Giovani test\",\r\n            \"size\": 9112979,\r\n            \"files\": 7,\r\n            \"subFolders\": 12\r\n        },\r\n        {\r\n            \"uid\": \"10150023\",\r\n            \"title\": \"iiif_test\",\r\n            \"path\": \"/iiif_test\",\r\n            \"size\": 25943,\r\n            \"files\": 1,\r\n            \"subFolders\": 0\r\n        },\r\n        {\r\n            \"uid\": \"10200110\",\r\n            \"title\": \"Jos\",\r\n            \"path\": \"/Jos\",\r\n            \"size\": 72031239,\r\n            \"files\": 10,\r\n            \"subFolders\": 839\r\n        },\r\n        {\r\n            \"uid\": \"10201009\",\r\n            \"title\": \"Jos (1)\",\r\n            \"path\": \"/Jos (1)\",\r\n            \"size\": 102406148,\r\n            \"files\": 1,\r\n            \"subFolders\": 1000\r\n        }\r\n    ]\r\n}"}],"_postman_id":"9fe77c3c-a274-46b8-b3b9-c80947eb9e65"}],"id":"1f8d5596-4a55-4abb-a7dc-49e421e9988e","_postman_id":"1f8d5596-4a55-4abb-a7dc-49e421e9988e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Depot","item":[{"name":"Container types","item":[{"name":"List container types","id":"4113a02e-c7ea-436c-9fc0-b64dd42cc231","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/depot/containerType?page=1&perPage=25","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","containerType"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"}],"variable":[]}},"response":[{"id":"ba211c12-63e4-4b1d-b98a-bc6d9625da71","name":"List container types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://example.memorix.io/resources/shapes"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": [\n        {\n            \"id\": \"7e2981dc-5501-4d6b-8155-1df99aa3cb6c\",\n            \"title\": \"Doos\",\n            \"created_at\": \"2021-09-17T11:31:58.471161\",\n            \"created_by\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n            \"modified_at\": null,\n            \"modified_by\": null\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 10,\n        \"total\": 1\n    }\n}"}],"_postman_id":"4113a02e-c7ea-436c-9fc0-b64dd42cc231"},{"name":"Create container type","id":"3cb4477a-8fcc-4d9d-8120-cd84f5213747","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Closet\"\n}"},"url":"https://test.memorix.io/resources/depot/containerType","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","containerType"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"3cb4477a-8fcc-4d9d-8120-cd84f5213747"},{"name":"Delete container type","id":"9f4728e2-f08f-46c2-9867-d306a7c3a7c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/depot/containerType/94aa0d1b-1ea8-4ea8-a33f-7a8415aa024a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","containerType","94aa0d1b-1ea8-4ea8-a33f-7a8415aa024a"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f4728e2-f08f-46c2-9867-d306a7c3a7c3"}],"id":"1d150328-67fe-4f78-8c62-c519553d7e64","description":"<p>Container types are linked to a container, these wil usually contains titles as closet, shelve, box.</p>\n","_postman_id":"1d150328-67fe-4f78-8c62-c519553d7e64","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Depots","item":[{"name":"List depots","id":"bc27fe9b-08fa-4bbc-b696-57514d482283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/depot/depot?currentPage=1&perPage=10&q=depot","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","depot"],"host":["https://test.memorix.io"],"query":[{"key":"currentPage","value":"1"},{"key":"perPage","value":"10"},{"description":{"content":"<p>Searchphrase to search by depot title (optional)</p>\n","type":"text/plain"},"key":"q","value":"depot"}],"variable":[]}},"response":[{"id":"4a9a8c6a-a25b-4a62-8f83-d990b602cfb3","name":"List depots","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"result\": [\n        {\n            \"id\": \"850cec49-7768-4296-b976-c3b33051db45\",\n            \"title\": \"Depot 4\",\n            \"address\": \"Address..\",\n            \"description\": \"Description..\",\n            \"created_at\": \"2021-09-17T11:32:24.108437\",\n            \"created_by\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n            \"modified_at\": null,\n            \"modified_by\": null\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 1,\n        \"total\": 1\n    }\n}"},"url":"https://example.memorix.io/resources/shapes"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": [\n        {\n            \"id\": \"7e2981dc-5501-4d6b-8155-1df99aa3cb6c\",\n            \"title\": \"Doos\",\n            \"created_at\": \"2021-09-17T11:31:58.471161\",\n            \"created_by\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n            \"modified_at\": null,\n            \"modified_by\": null\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 10,\n        \"total\": 1\n    }\n}"}],"_postman_id":"bc27fe9b-08fa-4bbc-b696-57514d482283"},{"name":"Get depot","id":"c458e226-db9d-44b8-aa7e-3f4ae742eecc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/depot/depot/708c2219-2535-41c3-92ff-f062808d556d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","depot","708c2219-2535-41c3-92ff-f062808d556d"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c458e226-db9d-44b8-aa7e-3f4ae742eecc"},{"name":"Create depot","id":"af7a8d49-721f-4e69-85c5-821bb9754133","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Depot 1\",\n    \"address\": \"Address..\",\n    \"description\": \"Description..\"\n}"},"url":"https://test.memorix.io/resources/depot/depot","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","depot"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"af7a8d49-721f-4e69-85c5-821bb9754133"},{"name":"Update depot","id":"1802f945-49f2-4b84-94c6-05d5471c7e3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Depot 1\",\n    \"address\": \"Address..\",\n    \"description\": \"Description..\"\n}"},"url":"https://test.memorix.io/resources/depot/depot/850cec49-7768-4296-b976-c3b33051db45","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","depot","850cec49-7768-4296-b976-c3b33051db45"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1802f945-49f2-4b84-94c6-05d5471c7e3c"},{"name":"Delete depot","id":"1a5c2c1a-be96-428d-ba96-61aa664aa3cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/depot/depot/850cec49-7768-4296-b976-c3b33051db45","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","depot","850cec49-7768-4296-b976-c3b33051db45"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a5c2c1a-be96-428d-ba96-61aa664aa3cf"}],"id":"b0565ec9-2f07-46c3-927e-d221c477433c","description":"<p>Container types are linked to a container, these wil usually contains titles as closet, shelve, box.</p>\n","_postman_id":"b0565ec9-2f07-46c3-927e-d221c477433c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Containers","item":[{"name":"bulk","item":[{"name":"Move containers to another depot","id":"25caebe3-5585-481b-adea-777e6d821d2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"type\": \"IdsQuery\",\n        \"ids\": [\n            {{ContainerId}},\n            {{ContainerId}},\n            {{ContainerId}},\n            {{ContainerId}}\n        ]\n    },\n    \"operation\": {\n        \"type\": \"SET_CONTAINER_DEPOT\",\n        \"depotId\": {{DepotId}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/containers/query","description":"<p>This operation will change the depot of a container.</p>\n<p>Only containers without parent are allowed! Containers with parent will not be moved, opeation will result in failure. In order to change the containers with assigned parent use \"Move containers to another parent container\" operation.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","containers","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"25caebe3-5585-481b-adea-777e6d821d2b"},{"name":"Move containers to another parent container","id":"5ccc52b5-ad4f-4d81-9cf5-81413b7a9d50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"type\": \"IdsQuery\",\n        \"ids\": [\n            {{ContainerId}},\n            {{ContainerId}},\n            {{ContainerId}},\n            {{ContainerId}}\n        ]\n    },\n    \"operation\": {\n        \"type\": \"SET_PARENT_CONTAINER\",\n        \"parentContainerId\": {{ContainerId}}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/containers/query","description":"<p>This operation will change the parent container of a container.</p>\n<p>In case parent container is in another depot, depot of the current container will be changed as well.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","containers","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ccc52b5-ad4f-4d81-9cf5-81413b7a9d50"}],"id":"58c526b2-0f9d-4f7b-bdb4-69614cf84015","description":"<p>For bulk operations on depot containers only \"IdsQquery\" is currently supported!</p>\n","_postman_id":"58c526b2-0f9d-4f7b-bdb4-69614cf84015","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"List Containers","id":"c74c5cd9-cdfc-4646-8d38-3a01939874c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"depot","value":"18e788bd-2ad7-4686-87ea-e4edadf975e0","type":"text"},{"key":"query","value":"banana","type":"text"}],"url":"https://test.memorix.io/resources/depot/container?page=1&perPage=25&query=Kast 1 / Plank 2&title=Kast 1&code=AB1234&filter.id=0e293150-35a6-4f2f-9947-38ba57ce3676&filter.depot=8eff9a75-8588-4d49-bcce-85e070b67780&filter.type=8c136e7d-48c9-4aa3-9692-bb6030b6b72d&filter.code=AB123&orderBy=title&order=asc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","container"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"query","value":"Kast 1 / Plank 2"},{"key":"title","value":"Kast 1"},{"key":"code","value":"AB1234"},{"key":"filter.id","value":"0e293150-35a6-4f2f-9947-38ba57ce3676"},{"key":"filter.depot","value":"8eff9a75-8588-4d49-bcce-85e070b67780"},{"key":"filter.type","value":"8c136e7d-48c9-4aa3-9692-bb6030b6b72d"},{"key":"filter.code","value":"AB123"},{"key":"orderBy","value":"title"},{"key":"order","value":"asc"}],"variable":[]}},"response":[],"_postman_id":"c74c5cd9-cdfc-4646-8d38-3a01939874c0"},{"name":"Get container","id":"2fe4582c-ea86-4b14-a033-0c6141e367d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/depot/container/4f17de67-fb95-48ad-9e9e-dcbbdf7f7b32","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","container","4f17de67-fb95-48ad-9e9e-dcbbdf7f7b32"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2fe4582c-ea86-4b14-a033-0c6141e367d3"},{"name":"Create container","id":"ea96031d-3e86-4449-856a-673ce09c41b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"A big box\",\n    \"depot\": \"708c2219-2535-41c3-92ff-f062808d556d\",\n    \"parent\": null,\n    \"type\": \"c8e46b31-27c9-4d4f-a4b3-feb3e7ec334c\",\n    \"serial_number\": 123,\n    \"code\": \"BA123\",\n    \"width_cm\": 12,\n    \"height_cm\": 21,\n    \"depth_cm\": 42,\n    \"material\": \"Carton\",\n    \"producer\": \"J. Packaging\"    \n}"},"url":"https://test.memorix.io/resources/depot/container","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","container"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea96031d-3e86-4449-856a-673ce09c41b6"},{"name":"Update container","id":"dce4fa99-6731-4963-b94e-146c33028340","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Grandchild\",\n    \"depot\": \"a2b82e63-6895-4b0d-a4a0-3e822eb68510\",\n    \"parent\": \"0ea00b7a-1b8f-4ccf-becb-531b100ad4b8\",\n    \"type\": \"e3c02f3f-d751-4f2f-9a31-4d0ef6628b4c\",\n    \"serial_number\": 666,\n    \"code\": \"1\",\n    \"width_cm\": 12,\n    \"height_cm\": 21,\n    \"depth_cm\": 42,\n    \"material\": \"Carton\",\n    \"producer\": \"J. Packaging\"    \n}"},"url":"https://test.memorix.io/resources/depot/container/0ea00b7a-1b8f-4ccf-becb-531b100ad4b8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","container","0ea00b7a-1b8f-4ccf-becb-531b100ad4b8"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"dce4fa99-6731-4963-b94e-146c33028340"},{"name":"Delete container","id":"021a05d4-9965-4b8d-8b86-0559740360f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/depot/container/0ea00b7a-1b8f-4ccf-becb-531b100ad4b8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","container","0ea00b7a-1b8f-4ccf-becb-531b100ad4b8"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"021a05d4-9965-4b8d-8b86-0559740360f1"},{"name":"CSV Export containers","id":"ebb2a674-9fea-4b08-b045-b6f954b0941a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ids\": null,\n    \"search\": {\n        \"depots\": [\n            \"27bae138-dcd6-4900-b606-17578b1a3604\"\n        ],\n        \"types\": [\n            \"8dde92ff-53e5-4beb-a8f5-311385268d32\",\n            \"82595fde-4207-4528-bd7f-63afef788051\"\n        ],\n        \"title\": null,\n        \"code\": null\n    },\n    \"orderBy\": {\n        \"column\": \"title\",\n        \"direction\": \"asc\"\n    }\n}"},"url":"https://test.memorix.io/resources/depot/container/csv","description":"<blockquote>\n<p>Endpoint to export reservations to CSV. Can be exported by search query or by specified IDs, but not both. </p>\n</blockquote>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>parameter</th>\n<th>type</th>\n<th><strong>comment</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong><code>search</code></strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>- email</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>- name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>- fondsId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>- fileId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>- status</td>\n<td>Set of UUID</td>\n<td></td>\n</tr>\n<tr>\n<td>- reserveFrom</td>\n<td>LocalDateTime as String</td>\n<td>\"2023-10-01T00:00:00\"</td>\n</tr>\n<tr>\n<td>- reserveTill</td>\n<td>LocalDateTime as Strig</td>\n<td>\"2023-10-01T00:00:00\"</td>\n</tr>\n<tr>\n<td>- depot</td>\n<td>Array of UUID</td>\n<td></td>\n</tr>\n<tr>\n<td><strong><code>ids</code></strong></td>\n<td>Array of UUID</td>\n<td></td>\n</tr>\n<tr>\n<td><strong><code>orderBy</code></strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>- column</td>\n<td>String</td>\n<td>reserveFrom, fondsId, fileId, email, name, status</td>\n</tr>\n<tr>\n<td>- direction</td>\n<td>String</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","depot","container","csv"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ebb2a674-9fea-4b08-b045-b6f954b0941a"}],"id":"3ed55fbd-7ad7-458e-b13c-dcd4e0273e83","description":"<p>Container types are linked to a container, these wil usually contains titles as closet, shelve, box.</p>\n","_postman_id":"3ed55fbd-7ad7-458e-b13c-dcd4e0273e83","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Actions","item":[{"name":"Set record containers","id":"ed931fa1-6dd2-4b89-b83a-74b8a328c9b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"setRecordContainers\",\n    \"params\": {\n        \"record_id\": \"5a8a55b8-9106-4352-9c72-aa9dde63188a\",\n        \"containers\": [\n            {\n                \"start\": \"a7423d38-1cd4-45f0-a011-f8e59e35cd7b\",\n                \"end\": null\n            },\n            {\n                \"start\": \"443d16ae-1232-4a18-933c-8ee923fe2e18\",\n                \"end\": \"0e585c40-076f-497f-b535-e7410b9db558\"\n            }\n        ]        \n    },\n    \"id\": 4321\n}"},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ed931fa1-6dd2-4b89-b83a-74b8a328c9b3"}],"id":"8774ede9-1d86-4028-b904-6fdfb3e74a60","_postman_id":"8774ede9-1d86-4028-b904-6fdfb3e74a60","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}}],"id":"6309b414-1f79-4597-b62a-184483807e80","_postman_id":"6309b414-1f79-4597-b62a-184483807e80","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Digitization request","item":[{"name":"Visitor","item":[{"name":"Make digitization request","event":[{"listen":"prerequest","script":{"id":"1d15cad5-461b-4c09-9fb6-31bf33b6012b","exec":[""],"type":"text/javascript","packages":{}}}],"id":"ebf14b6c-0a67-4a26-8f42-fecee609f184","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"recordId\": \"9db96d0d-8cdb-4de1-bdec-aeaba813d51e\",\n    \"user\" : {\n      \"name\": \"Sander\",\n      \"email\": \"sander@vitecsoftware.com\"\n    },\n  \"remark\": \"Hier zou ik graag een plaatje van willen ...\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/digitization/request","description":"<p>Create a request for an archivecord that is defined as a \"File\" recordtype only records which have a fond and file identifier stored can be used.</p>\n<p>This request can then be handled in the admin to be digitized or rejected.</p>\n<h2 id=\"optional\">Optional</h2>\n<p>The remark string field is nullable the property can be removed or set to null if it's not required.</p>\n<h3 id=\"created-response\">created response</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 201 Created\n{\n    \"id\": \"d50ec22e-df11-498d-92fe-1b6c3ff90b7d\",\n    \"record\": {\n        \"id\": \"eb983991-ed43-4ccd-9d8a-1b88a7206d0a\",\n        \"fondsId\": \"-383662862\",\n        \"fileId\": \"-944921785\"\n    },\n    \"email\": \"j.doe@example.com\",\n    \"name\": \"Jane Doe\",\n    \"remark\": \"I'm excited to see it with my own eyes\",\n    \"status\": \"NEW\",\n    \"createdAt\": \"2022-11-29T12:26:28.132162\",\n    \"modifiedAt\": null\n}\n\n</code></pre><h3 id=\"validation-error-responses\">validation error responses</h3>\n<p>File record not found</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 400 Bad request\n{ \"message\":\"File not found by eb983991-ed43-4ccd-9d8a-1b88a7206d0b\"}\n\n</code></pre><p>There is a file record but it does not have an identifier configured</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 400 Bad request\n{ \"message\":\"File identifier is missing\"}\n\n</code></pre><p>There is a file record but it does not have a fonds record</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 400 Bad request\n{ \"message\":\"Fonds not found\"}\n\n</code></pre><p>There is a file record and a fonds record but no fonds identifier</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 400 Bad request\n{ \"message\":\"Fonds identifier is missing\"}\n\n</code></pre><p>The record does not have scanning on demand enabled in accessibility and rights</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 400 Bad request\n{ \"message\":\"Scanning on demand not allowed\"}\n\n</code></pre><p>The record is in a project already</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 400 Bad request\n{ \"message\":\"Record is in a project\"}\n\n</code></pre><p>Invalid email given</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 400 Bad request\n{ \"message\":\"Invalid email\"}\n\n</code></pre><p>The record id already has a existing digitization request</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 409 Conflict\n{ \"message\":\"Record already has a existing request\"}\n\n</code></pre><p>The maximum amount of request has been reached for this email</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 429 Too Many Requests\n{ \"message\":\"Max amount of requests reached\"}\n\n</code></pre><p>The scanning on demand configuration is missing, it needs to be configured in the admin</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP/1.1 424 Failed Dependency\n{ \"message\":\"Scanning on demand configuration not found\"}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["digitization","request"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ebf14b6c-0a67-4a26-8f42-fecee609f184"},{"name":"Make public digitization request (spam protection)","id":"b7759b27-9c37-4fd6-a656-4b61a63d10e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"recordId\": \"e08c7f22-6198-4434-9e6b-b522175eed0e\",\r\n    \"user\" : {\r\n      \"name\": \"Gio\",\r\n      \"email\": \"giovani.zanetti@vitecsoftware.com\"\r\n    },\r\n  \"remark\": \"Testing frontend\",\r\n  \"token\": \"[reCaptchaToken]\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/digitization/request/submit","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["digitization","request","submit"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7759b27-9c37-4fd6-a656-4b61a63d10e5"}],"id":"78e48d98-b488-4e61-a629-12dca59ad1fe","_postman_id":"78e48d98-b488-4e61-a629-12dca59ad1fe","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Admin","item":[{"name":"Actions","item":[{"name":"Update scanning on demand status","event":[{"listen":"test","script":{"id":"a344663f-8e6e-4ab5-8d9c-653dd502ccbe","exec":[""],"type":"text/javascript"}}],"id":"2fedf381-9751-4b0c-bebe-768be4bcee44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"method\": \"setDigitizationRequestStatus\",\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1234,\n    \"params\": {\n        \"ids\": [\n            \"b8fa4337-6348-4251-9143-90a2dffcf0eb\"\n        ],\n        \"data\": {\n            \"status\": \"PROCESSING\"\n        }\n    }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","description":"<p>Set the status of one or more scanning on demand requests.</p>\n<p>The possible values for the `status` property are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>status</strong></th>\n<th><strong>description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NEW</td>\n<td>New requests</td>\n</tr>\n<tr>\n<td>REJECTED</td>\n<td>Reject the request</td>\n</tr>\n<tr>\n<td>PROCESSING</td>\n<td>The request is added to a project</td>\n</tr>\n<tr>\n<td>FINISHED</td>\n<td>The request has been digitized</td>\n</tr>\n</tbody>\n</table>\n</div><p>The rejected status also requires setting a reason where the value is a concept id as follows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"method\": \"setDigitizationRequestStatus\",\n    \"jsonrpc\": \"2.0\",\n    \"id\": 1234,\n    \"params\": {\n        \"ids\": [\n            \"09565db2-4320-459a-9065-7efd182f9d4e\"\n        ],\n        \"data\": {\n            \"status\": \"REJECTED\",\n            \"reason\": \"9063634a-4a15-4956-8397-16a5c238cf8e\"\n        }\n    }\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2fedf381-9751-4b0c-bebe-768be4bcee44"}],"id":"dddc401e-a6e1-479d-b8d7-464ce6ed997b","_postman_id":"dddc401e-a6e1-479d-b8d7-464ce6ed997b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"List digitization requests","event":[{"listen":"prerequest","script":{"id":"1d15cad5-461b-4c09-9fb6-31bf33b6012b","exec":[""],"type":"text/javascript"}}],"id":"5c7e6c87-60a4-476b-8558-90b19bf80950","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"recordId\": \"eb983991-ed43-4ccd-9d8a-1b88a7206d0a\",\n    \"user\" : {\n      \"name\": \"Jane Doe\",\n      \"email\": \"j.doe@example.com\"\n  },\n  \"remark\": \"I'm excited to see it with my own eyes\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/digitization/requests?page=1&perPage=10&order=asc&orderBy=created_at","urlObject":{"path":["admin","digitization","requests"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>current page to return</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>amount of rows per page</p>\n","type":"text/plain"},"key":"perPage","value":"10"},{"disabled":true,"description":{"content":"<p>from request date</p>\n","type":"text/plain"},"key":"from","value":"2022-12-06"},{"disabled":true,"description":{"content":"<p>filter till request dat</p>\n","type":"text/plain"},"key":"till","value":"2022-12-06"},{"disabled":true,"description":{"content":"<p>can be repeated to filter multiple</p>\n","type":"text/plain"},"key":"status","value":"new"},{"disabled":true,"description":{"content":"<p>search for email</p>\n","type":"text/plain"},"key":"email","value":"j.doe@example.com"},{"disabled":true,"description":{"content":"<p>search for fond id</p>\n","type":"text/plain"},"key":"fondsId","value":"93677"},{"disabled":true,"description":{"content":"<p>search for file id</p>\n","type":"text/plain"},"key":"fileId","value":"2123638854"},{"disabled":true,"description":{"content":"<p>integer equals on serial number</p>\n","type":"text/plain"},"key":"serialNumber","value":"1"},{"disabled":true,"description":{"content":"<p>wildcard match on step title</p>\n","type":"text/plain"},"key":"stepTitle","value":"collect"},{"disabled":true,"description":{"content":"<p>wildcard match on project title</p>\n","type":"text/plain"},"key":"projectTitle","value":"digitization"},{"description":{"content":"<p>order direction</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>order column created_at, status, fonds_identifier, file_identifier, project_title, project_serial_number, step_title</p>\n","type":"text/plain"},"key":"orderBy","value":"created_at"}],"variable":[]}},"response":[],"_postman_id":"5c7e6c87-60a4-476b-8558-90b19bf80950"},{"name":"Export to CSV","id":"dfb4538a-bd19-408e-9abc-d61b34f6ac6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"status\":null,\n        \"from\":null,\n        \"till\":null,\n        \"email\":null,\n        \"fondsId\":null,\n        \"fileId\":null,\n        \"projectTitle\":null,\n        \"stepTitle\":null,\n        \"serialNumber\": null\n        },\n    \"ids\":null,\n    \"order\":{\n        \"column\":\"createdAt\",\n        \"direction\":\"asc\"\n        }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/digitization/requests/export/csv","description":"<blockquote>\n<p>Endpoint to export digital requests to CSV. Can be exported by search query or by specified IDs, but not both. </p>\n</blockquote>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>parameter</th>\n<th>type</th>\n<th><strong>comment</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong><code>query</code></strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><ul><ul><li>status</li></ul></ul></td>\n<td>Array of string</td>\n<td>\"new\", \"rejected\", \"processing\", \"finished\"</td>\n</tr>\n<tr>\n<td><ul><ul><li>from</li></ul></ul></td>\n<td>LocalDateTime as String</td>\n<td>\"2023-10-01T00:00:00\"</td>\n</tr>\n<tr>\n<td><ul><ul><li>till</li></ul></ul></td>\n<td>LocalDateTime as String</td>\n<td>\"2023-10-01T00:00:00\"</td>\n</tr>\n<tr>\n<td><ul><ul><li>email</li></ul></ul></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td><ul><ul><li>fondsId</li></ul></ul></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td><ul><ul><li>fileId</li></ul></ul></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td><ul><ul><li>projectTitle</li></ul></ul></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td><ul><ul><li>serialNumber</li></ul></ul></td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td><strong><code>ids</code></strong></td>\n<td>Array of UUID</td>\n<td></td>\n</tr>\n<tr>\n<td><strong><code>orderBy</code></strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><ul><ul><li>column</li></ul></ul></td>\n<td>String</td>\n<td>createdAt, status, fondsIdentifier, fileIdentifier, projectTitle, projectSeralNumber, stepTitle</td>\n</tr>\n<tr>\n<td><ul><ul><li>direction</li></ul></ul></td>\n<td>String</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","digitization","requests","export","csv"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"e34d0a1e-3f7b-42b4-8fe3-2112e586d733","name":"Export to CSV","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": null,\n    \"ids\":[\"8167eafe-54bc-4cd8-8454-8a9b026afc3b\", \"74f8f600-d2a6-4e2d-b671-9c87f2d9873a\"],\n    \"order\":{\n        \"column\":\"createdAt\",\n        \"direction\":\"asc\"\n        }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/digitization/requests/export/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Nov 2023 09:31:53 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"45"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ca3ea11a-bd77-4f78-a480-e0d4cb0d2611\"\n}"},{"id":"b542007f-e456-4b51-899a-62fc6f4f3fb4","name":"Export to CSV","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"status\":[\"new\"],\n        \"from\":\"2023-10-01T00:00:00\",\n        \"till\":null,\n        \"email\":\"test\",\n        \"fondsId\":\"-475115161\",\n        \"fileId\":\"1285540876\",\n        \"projectTitle\":\"ProjectD\",\n        \"stepTitle\":\"Step 1\",\n        \"serialNumber\": 1\n        },\n    \"ids\":null,\n    \"order\":{\n        \"column\":\"createdAt\",\n        \"direction\":\"asc\"\n        }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/digitization/requests/export/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Nov 2023 11:04:08 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"45"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"dd02a622-b745-4380-a8d7-393d58b2f659\"\n}"}],"_postman_id":"dfb4538a-bd19-408e-9abc-d61b34f6ac6a"},{"name":"Add digi requests records to a project","id":"49071a40-5f8a-4dbc-9cef-4eb126c0ef20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"ids\":[\"ae9f135e-f09d-4ff5-b788-18fc7a16a21c\", \"90ac4efb-19e4-4b64-a04f-88b319db4931\"],\n    \"projectId\":\"37850a1d-f771-4835-ad6d-0b29a0f89616\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/digitization/requests/add-to-project","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","digitization","requests","add-to-project"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"49071a40-5f8a-4dbc-9cef-4eb126c0ef20"}],"id":"befc35cf-aef9-476a-850c-988c7228a0a1","_postman_id":"befc35cf-aef9-476a-850c-988c7228a0a1","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}}],"id":"b44507da-61be-4da8-a3fc-cdcf2cbc7d64","_postman_id":"b44507da-61be-4da8-a3fc-cdcf2cbc7d64","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Edepot","item":[{"name":"Ingest Folder","id":"2ccd73c2-ba41-4310-8a6d-5755c7b542f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"folderName\": \"edepot/TMLO/1785/1785_2024-06-26\",\n    \"recordId\": \"467f253b-0f14-4507-a81a-45d9ab6cd08e\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/import/folder","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","import","folder"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ccd73c2-ba41-4310-8a6d-5755c7b542f5"},{"name":"AIP Delete request","id":"a9667747-9bb7-4b7b-8f46-e686e169c103","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"aipIds\" : [\"0087d9f8-eb5c-41e4-80b2-ddcda7b39403\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/aip/delete","description":"<p>When posting an array of aip uuid's a delete request is send for each valid uuid to the Archivematica Storage.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","aip","delete"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9667747-9bb7-4b7b-8f46-e686e169c103"},{"name":"AIP Transfer request","id":"cbc3a4e5-3f99-4542-bc0b-f2dd9e4db591","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"aipIds\" : [\"0087d9f8-eb5c-41e4-80b2-ddcda7b39403\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/aip/transfer","description":"<p>When posting an array of aip uuid's a the status of each aip reference is set to to_transfer. These AIP's will be downloaded and transfered to a sftp location periodicly.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","aip","transfer"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"cbc3a4e5-3f99-4542-bc0b-f2dd9e4db591"},{"name":"Activity log - list Edepot imports","id":"3233d310-278e-4724-a534-413b74f5639a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/activity-log/edepot?page=1&perPage=25","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","edepot"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>current page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>amount of results per page</p>\n","type":"text/plain"},"key":"perPage","value":"25"},{"disabled":true,"description":{"content":"<p>filter on id of bulk job</p>\n","type":"text/plain"},"key":"id","value":"950c84d5-0ce8-4938-9a36-e1e55a445b13"}],"variable":[]}},"response":[{"id":"d6c41e39-6a7a-4ee9-8bc0-77a7c59161b5","name":"Activity log for bulk actions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/activity-log/bulk?page=1&perPage=25","host":["https://test.memorix.io"],"path":["activity-log","bulk"],"query":[{"key":"page","value":"1","description":"current page number"},{"key":"perPage","value":"25","description":"amount of results per page"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"200f26d2-0328-4880-98f0-1fe3c48a188d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T11:22:43.817532\",\n                \"activity\": \"ApplyAccessibilityFieldOperation\",\n                \"progress\": {\n                    \"current\": 1064,\n                    \"total\": 1064,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T11:25:00.653510\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"7850a828-a58d-4d86-8e86-3fa3f4e9fd61\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T10:14:29.320917\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 11,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T10:14:32.569477\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"c5089184-1f84-403b-a462-007ce08a7391\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T09:00:59.845682\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T09:01:00.775902\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f336e69a-15d9-42f3-ab09-a352273e2f2f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T08:56:30.269595\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T08:56:31.778948\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f4719a82-5880-4630-9c10-4921bd160a16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-11T10:06:46.338534\",\n                \"activity\": \"ApplyFieldOperation\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"d5167014-3e52-4167-886b-267113a869e9\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-08T11:21:13.715930\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 6,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d84e327-64f9-4f07-bc2a-e832e90f772d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-01T10:46:30.568088\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e7540c11-154c-4bda-a509-f3379d5ec9bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:37:14.009621\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"2a08a4e2-87a6-432f-be4e-6ea7bc016576\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:32:49.315655\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"10eff075-cfa2-420c-aa20-09094cced4b4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-31T08:30:33.484903\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"4a43698f-6b59-43e9-96b2-4b6ba24a3559\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:46.161730\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"b0048841-a4bb-44a2-8462-df49fdb6b648\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:34.719153\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e1555ce7-eedb-4de7-a639-6217ac6a33f4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-25T10:14:08.845327\",\n                \"activity\": \"AddToProject\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"86272fc1-e68c-4694-88ed-e813265de7bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:16:23.723434\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ebe55b41-4028-4e6a-8061-fdd20d924109\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:14:11.302465\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"46c04f87-5d3e-4a1b-8d7f-b423c45957d4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:12:31.173256\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d87ff30-8898-46eb-8c24-4136ce946ed4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-24T15:10:24.145922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ac9104c8-e681-4d1d-bb36-134d35953b97\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:55:38.276922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"02dfbd0a-c875-423f-89ae-0e6b1fb4c246\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:50:03.518030\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"a5d45fc0-aa63-4111-a4f5-89314d234e31\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T09:04:38.085628\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"20a164b8-0aa2-4723-b6b2-2eba347d732f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:25:40.149996\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f7ab2564-f02d-430b-96b2-03bff3eba69a\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:32.651105\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"956837fc-c162-4ff9-a115-e85a43a67c16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:08.284025\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 20,\n                    \"total\": 20,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"cb2c72da-b0f3-4c12-a691-d07b6f15ea20\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T21:00:58.750066\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"8adb7eeb-96bd-4a41-9ced-b5ea00cf561c\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T20:56:50.947735\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 25,\n        \"total\": 160,\n        \"max\": null\n    }\n}"}],"_postman_id":"3233d310-278e-4724-a534-413b74f5639a"},{"name":"Activity log - list Edepot Import Records","id":"e9ada867-09b4-4176-b32d-01a46602934a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/activity-log/edepot/{{edepotJobId}}?page=1&perPage=25","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","edepot","{{edepotJobId}}"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>current page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>amount of results per page</p>\n","type":"text/plain"},"key":"perPage","value":"25"},{"disabled":true,"description":{"content":"<p>show Finished records</p>\n","type":"text/plain"},"key":"status","value":"Finished"},{"disabled":true,"description":{"content":"<p>show Failed records</p>\n","type":"text/plain"},"key":"status","value":"Failed"},{"disabled":true,"description":{"content":"<p>show Queued records</p>\n","type":"text/plain"},"key":"status","value":"Queued"}],"variable":[]}},"response":[{"id":"482058e6-62cd-493c-abc0-5fa8f4cd5148","name":"Activity log for bulk actions","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/activity-log/bulk?page=1&perPage=25","host":["https://test.memorix.io"],"path":["activity-log","bulk"],"query":[{"key":"page","value":"1","description":"current page number"},{"key":"perPage","value":"25","description":"amount of results per page"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"200f26d2-0328-4880-98f0-1fe3c48a188d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T11:22:43.817532\",\n                \"activity\": \"ApplyAccessibilityFieldOperation\",\n                \"progress\": {\n                    \"current\": 1064,\n                    \"total\": 1064,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T11:25:00.653510\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"7850a828-a58d-4d86-8e86-3fa3f4e9fd61\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T10:14:29.320917\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 11,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T10:14:32.569477\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"c5089184-1f84-403b-a462-007ce08a7391\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T09:00:59.845682\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T09:01:00.775902\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f336e69a-15d9-42f3-ab09-a352273e2f2f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-15T08:56:30.269595\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": \"2022-02-15T08:56:31.778948\"\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f4719a82-5880-4630-9c10-4921bd160a16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-11T10:06:46.338534\",\n                \"activity\": \"ApplyFieldOperation\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"d5167014-3e52-4167-886b-267113a869e9\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-08T11:21:13.715930\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 6,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d84e327-64f9-4f07-bc2a-e832e90f772d\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-02-01T10:46:30.568088\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e7540c11-154c-4bda-a509-f3379d5ec9bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:37:14.009621\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"2a08a4e2-87a6-432f-be4e-6ea7bc016576\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:32:49.315655\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"10eff075-cfa2-420c-aa20-09094cced4b4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-31T08:30:33.484903\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"4a43698f-6b59-43e9-96b2-4b6ba24a3559\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:46.161730\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"b0048841-a4bb-44a2-8462-df49fdb6b648\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-31T08:29:34.719153\",\n                \"activity\": \"RemoveRecord\",\n                \"progress\": {\n                    \"current\": 2,\n                    \"total\": 2,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"e1555ce7-eedb-4de7-a639-6217ac6a33f4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-25T10:14:08.845327\",\n                \"activity\": \"AddToProject\",\n                \"progress\": {\n                    \"current\": 1,\n                    \"total\": 1,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"86272fc1-e68c-4694-88ed-e813265de7bf\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:16:23.723434\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 6,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ebe55b41-4028-4e6a-8061-fdd20d924109\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:14:11.302465\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"46c04f87-5d3e-4a1b-8d7f-b423c45957d4\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T15:12:31.173256\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"name\": {\n                    \"givenName\": \"Siergiej\",\n                    \"surnamePrefix\": \"van\",\n                    \"surname\": \"Onda\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"5d87ff30-8898-46eb-8c24-4136ce946ed4\",\n                \"userId\": \"69614530-3451-42d9-b8d6-4edf672a6162\",\n                \"start\": \"2022-01-24T15:10:24.145922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"ac9104c8-e681-4d1d-bb36-134d35953b97\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:55:38.276922\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"02dfbd0a-c875-423f-89ae-0e6b1fb4c246\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T14:50:03.518030\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"a5d45fc0-aa63-4111-a4f5-89314d234e31\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T09:04:38.085628\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"20a164b8-0aa2-4723-b6b2-2eba347d732f\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:25:40.149996\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"f7ab2564-f02d-430b-96b2-03bff3eba69a\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:32.651105\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"956837fc-c162-4ff9-a115-e85a43a67c16\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-24T08:24:08.284025\",\n                \"activity\": \"RemoveFromSet\",\n                \"progress\": {\n                    \"current\": 20,\n                    \"total\": 20,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"cb2c72da-b0f3-4c12-a691-d07b6f15ea20\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T21:00:58.750066\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 11,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        },\n        {\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"bulkSummary\": {\n                \"id\": \"8adb7eeb-96bd-4a41-9ced-b5ea00cf561c\",\n                \"userId\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"start\": \"2022-01-21T20:56:50.947735\",\n                \"activity\": \"AddToSet\",\n                \"progress\": {\n                    \"current\": 0,\n                    \"total\": 3,\n                    \"etaSeconds\": null\n                },\n                \"end\": null\n            }\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 25,\n        \"total\": 160,\n        \"max\": null\n    }\n}"}],"_postman_id":"e9ada867-09b4-4176-b32d-01a46602934a"},{"name":"List AIPs","id":"0a66a1bc-92af-41cd-9960-3682aef18515","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/edepot/aip?orderBy=plannedDate&order=desc","description":"<p>List AIP's, sort by planned date or modified at date, modifiedFrom and till range filters can only be used together with the status filter.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","aip"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"aipId","value":"413d42b5-cfb6-43c1-b2a4-d284557ead60"},{"disabled":true,"key":"plannedActivity","value":"Uitplaatsen"},{"disabled":true,"key":"plannedDateFrom","value":"2029-12-31"},{"disabled":true,"key":"plannedDateTill","value":"2032-01-01"},{"disabled":true,"key":"status","value":"transfered"},{"disabled":true,"key":"perPage","value":"1"},{"disabled":true,"key":"page","value":"2"},{"disabled":true,"key":"from","value":"eyJpZCI6IjAzMTA1ZGUzLTY0MTUtNDIyMC04NWY2LWU0MzMzOWQ2YmU4ZCIsInBsYW5uZWREYXRlIjoiMjAzMS0wNi0yMSJ9"},{"key":"orderBy","value":"plannedDate"},{"key":"order","value":"desc"}],"variable":[]}},"response":[{"id":"887d1d0e-a273-42d3-8b68-21db3690e5dc","name":"List AIPs","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://test.memorix.io/edepot/aip?orderBy=plannedDate&order=desc","host":["https://test.memorix.io"],"path":["edepot","aip"],"query":[{"key":"aipId","value":"413d42b5-cfb6-43c1-b2a4-d284557ead60","type":"text","disabled":true},{"key":"plannedActivity","value":"Uitplaatsen","disabled":true},{"key":"plannedDateFrom","value":"2029-12-31","type":"text","disabled":true},{"key":"plannedDateTill","value":"2032-01-01","disabled":true},{"key":"status","value":"transfered","disabled":true},{"key":"perPage","value":"1","disabled":true},{"key":"page","value":"2","disabled":true},{"key":"from","value":"eyJpZCI6IjAzMTA1ZGUzLTY0MTUtNDIyMC04NWY2LWU0MzMzOWQ2YmU4ZCIsInBsYW5uZWREYXRlIjoiMjAzMS0wNi0yMSJ9","disabled":true},{"key":"orderBy","value":"plannedDate"},{"key":"order","value":"desc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 12 Jun 2025 10:13:54 GMT"},{"key":"Server","value":"Ktor/2.3.12"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"aipId\": \"a32a30f6-d296-4a65-8157-77a52e7de1d8\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2039-06-01\",\n            \"status\": \"transfer_failed\",\n            \"damPath\": \"edepot/aip/aip_test_sips\",\n            \"transferName\": \"aip\",\n            \"modifiedAt\": \"2025-06-01T11:21:46\"\n        },\n        {\n            \"aipId\": \"f01c8bb9-4392-4ca1-83d9-2d2e0499aa24\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2036-01-01\",\n            \"status\": \"transferred\",\n            \"damPath\": \"/edepot/31427/31427_202312041443\",\n            \"transferName\": \"31427\",\n            \"modifiedAt\": \"2025-06-11T11:21:46\"\n        },\n        {\n            \"aipId\": \"2f9b7497-6ec1-45c4-b41a-4090f961d853\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2035-12-31\",\n            \"status\": \"open\",\n            \"damPath\": \"/edepot/31427/31427_202312041438\",\n            \"transferName\": \"31427\",\n            \"modifiedAt\": \"2025-06-22T11:21:46\"\n        },\n        {\n            \"aipId\": \"dd7bbaeb-638c-4cab-98b9-68be597d5e82\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2035-06-01\",\n            \"status\": \"open\",\n            \"damPath\": \"/edepot/31427/31427_202312041425\",\n            \"transferName\": \"31427\",\n            \"modifiedAt\": \"2025-07-01T11:21:46\"\n        },\n        {\n            \"aipId\": \"3296853d-ed5c-44c6-9249-42d16979af71\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2035-01-01\",\n            \"status\": \"open\",\n            \"damPath\": \"/edepot/31427/31427_202312041148\",\n            \"transferName\": \"31427\",\n            \"modifiedAt\": \"2025-05-01T11:21:46\"\n        },\n        {\n            \"aipId\": \"8afe40c9-df13-4c3e-80d1-5a24a0d741bf\",\n            \"plannedActivity\": \"Uitplaatsen\",\n            \"plannedDate\": \"2033-11-22\",\n            \"status\": \"transfer_failed\",\n            \"damPath\": \"edepot/Picturae/Picturae_2025-08-27_09-33-33\",\n            \"transferName\": \"Picturae\",\n            \"modifiedAt\": \"2025-03-21T11:21:46\"\n        },\n        {\n            \"aipId\": \"42a8ec69-a4fc-43b9-8b17-dcff4dbfc9d5\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2033-11-22\",\n            \"status\": \"deleted\",\n            \"damPath\": \"edepot/Picturae/Picturae_2025-08-26_09-33-32\",\n            \"transferName\": \"Picturae\",\n            \"modifiedAt\": \"2025-11-01T11:21:46\"\n        }\n    ],\n    \"pagination\": {\n        \"perPage\": 25,\n        \"prev\": null,\n        \"next\": null\n    }\n}"},{"id":"3cb5bfa1-7c89-401e-931f-fb0bd078b866","name":"List AIPs with modifiedAt","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://test.memorix.io/edepot/aip?order=asc&status=open&orderBy=modifiedAt&modifiedFrom=2025-11-01T00:00:00&modifiedTill=2025-11-05T00:00:00","host":["https://test.memorix.io"],"path":["edepot","aip"],"query":[{"key":"aipId","value":"413d42b5-cfb6-43c1-b2a4-d284557ead60","type":"text","disabled":true},{"key":"plannedActivity","value":"Uitplaatsen","disabled":true},{"key":"plannedDateFrom","value":"2029-12-31","type":"text","disabled":true},{"key":"plannedDateTill","value":"2032-01-01","disabled":true},{"key":"status","value":"transfered","disabled":true},{"key":"perPage","value":"1","disabled":true},{"key":"page","value":"2","disabled":true},{"key":"from","value":"eyJpZCI6IjAzMTA1ZGUzLTY0MTUtNDIyMC04NWY2LWU0MzMzOWQ2YmU4ZCIsInBsYW5uZWREYXRlIjoiMjAzMS0wNi0yMSJ9","disabled":true},{"key":"order","value":"asc"},{"key":"status","value":"open"},{"key":"orderBy","value":"modifiedAt"},{"key":"modifiedFrom","value":"2025-11-01T00:00:00"},{"key":"modifiedTill","value":"2025-11-05T00:00:00"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"aipId\": \"3296853d-ed5c-44c6-9249-42d16979af71\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2035-01-01\",\n            \"status\": \"open\",\n            \"damPath\": \"/edepot/31427/31427_202312041148\",\n            \"transferName\": \"31427\",\n            \"modifiedAt\": \"2025-11-01T11:21:46\"\n        },\n        {\n            \"aipId\": \"dd7bbaeb-638c-4cab-98b9-68be597d5e82\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2035-06-01\",\n            \"status\": \"open\",\n            \"damPath\": \"/edepot/31427/31427_202312041425\",\n            \"transferName\": \"31427\",\n            \"modifiedAt\": \"2025-11-02T11:21:46\"\n        },\n        {\n            \"aipId\": \"2f9b7497-6ec1-45c4-b41a-4090f961d853\",\n            \"plannedActivity\": \"Vernietigen\",\n            \"plannedDate\": \"2035-12-31\",\n            \"status\": \"open\",\n            \"damPath\": \"/edepot/31427/31427_202312041438\",\n            \"transferName\": \"31427\",\n            \"modifiedAt\": \"2025-11-02T11:21:46\"\n        }\n    ],\n    \"pagination\": {\n        \"perPage\": 25,\n        \"prev\": null,\n        \"next\": null\n    }\n}"},{"id":"ec1a320e-8919-4339-a3d4-c85486be785b","name":"List AIPs with transferName","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://test.memorix.io/edepot/aip?perPage=10&transferName=TMLO","host":["https://test.memorix.io"],"path":["edepot","aip"],"query":[{"key":"aipId","value":"413d42b5-cfb6-43c1-b2a4-d284557ead60","type":"text","disabled":true},{"key":"plannedActivity","value":"Uitplaatsen","disabled":true},{"key":"plannedDateFrom","value":"2029-12-31","type":"text","disabled":true},{"key":"plannedDateTill","value":"2032-01-01","disabled":true},{"key":"status","value":"transfered","disabled":true},{"key":"perPage","value":"1","disabled":true},{"key":"page","value":"2","disabled":true},{"key":"from","value":"eyJpZCI6IjAzMTA1ZGUzLTY0MTUtNDIyMC04NWY2LWU0MzMzOWQ2YmU4ZCIsInBsYW5uZWREYXRlIjoiMjAzMS0wNi0yMSJ9","disabled":true},{"key":"perPage","value":"10"},{"key":"transferName","value":"TMLO"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"aipId\": \"82361257-9ede-4970-bc6c-3dce95807eb3\",\n            \"plannedActivity\": \"\",\n            \"plannedDate\": \"2026-04-09\",\n            \"status\": \"open\",\n            \"damPath\": \"/TMLO00001\",\n            \"transferName\": \"TMLO00001\",\n            \"modifiedAt\": \"2026-04-09T14:25:15.663891\"\n        }\n    ],\n    \"pagination\": {\n        \"perPage\": 10,\n        \"prev\": null,\n        \"next\": null\n    }\n}"}],"_postman_id":"0a66a1bc-92af-41cd-9960-3682aef18515"},{"name":"AIP info and log status","id":"39e5e712-0468-414d-83db-546ac8bd08c8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/edepot/aip/{{AipId}}","description":"<p>Get info from an AIP and the last 100 status rows from the log.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","aip","{{AipId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"26899155-29df-42d1-91bf-b37293a3e16a","name":"AIP info and log status","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/edepot/aip/{{AipId}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"aipId\": \"82361257-9ede-4970-bc6c-3dce95807eb3\",\n    \"plannedActivity\": \"\",\n    \"plannedDate\": \"2026-04-09\",\n    \"status\": \"open\",\n    \"damPath\": \"/TMLO00001\",\n    \"transferName\": \"TMLO00001\",\n    \"modifiedAt\": \"2026-04-09T14:25:15.663891\"\n}"}],"_postman_id":"39e5e712-0468-414d-83db-546ac8bd08c8"},{"name":"List AIP logs","id":"2a25b1bc-d60b-4da7-ac1e-6bdabdc3ef6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/aip/logs?page=1&perPage=10","description":"<p>List all AIP logs with pagination</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","aip","logs"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"}],"variable":[]}},"response":[{"id":"437dd98a-0af1-4e5f-9840-5c81c274ba6c","name":"List AIP logs","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n  \"action\": \"delete_requested\",\n  \"actionStatus\": \"ok\",\n  \"actionError\": null\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/edepot/aip/logs?page=1&perPage=10","host":["https://test.memorix.io"],"path":["edepot","aip","logs"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": \"1c965718-5bd4-4593-a89f-17156d87f81d\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"delete_requested\",\n            \"actionStatus\": \"ok\",\n            \"actionError\": null,\n            \"createdAt\": \"2025-10-03T14:51:22.751555\"\n        },\n        {\n            \"id\": \"882adfba-ad0b-451c-b754-631e1e82ee83\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"transfer_requested\",\n            \"actionStatus\": \"error\",\n            \"actionError\": null,\n            \"createdAt\": \"2025-10-03T09:39:51.350268\"\n        },\n        {\n            \"id\": \"29a1f3a7-9253-4b25-96d7-d814eea7ded1\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"delete_request_sent_to_am\",\n            \"actionStatus\": \"error\",\n            \"actionError\": \"Expected response body of the type 'class io.memorix.edepot.apiClient.AmStorageGetAipResponse' but was 'class io.ktor.utils.io.ByteBufferChannel'\\nIn response from `https://mmx-storage-test.edepot.memorix.nl/api/v2/file/3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b/`\\nResponse status `401 Unauthorized`\\nResponse header `ContentType: text/html; charset=utf-8` \\nRequest header `Accept: application/json`\\n\\nYou can read how to resolve NoTransformationFoundException at FAQ: \\nhttps://ktor.io/docs/faq.html#no-transformation-found-exception\",\n            \"createdAt\": \"2025-10-03T09:10:00.844705\"\n        },\n        {\n            \"id\": \"b59ef553-bab4-43d6-9767-427132305b9d\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"delete_request_get_aip\",\n            \"actionStatus\": \"error\",\n            \"actionError\": \"Expected response body of the type 'class io.memorix.edepot.apiClient.AmStorageGetAipResponse' but was 'class io.ktor.utils.io.ByteBufferChannel'\\nIn response from `https://mmx-storage-test.edepot.memorix.nl/api/v2/file/3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b/`\\nResponse status `401 Unauthorized`\\nResponse header `ContentType: text/html; charset=utf-8` \\nRequest header `Accept: application/json`\\n\\nYou can read how to resolve NoTransformationFoundException at FAQ: \\nhttps://ktor.io/docs/faq.html#no-transformation-found-exception\",\n            \"createdAt\": \"2025-10-03T09:10:00.836862\"\n        },\n        {\n            \"id\": \"666beda8-05f5-459f-8518-94c8b920aa12\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"delete_requested\",\n            \"actionStatus\": \"ok\",\n            \"actionError\": null,\n            \"createdAt\": \"2025-10-03T09:09:59.924012\"\n        },\n        {\n            \"id\": \"5b854165-bcd8-4e78-837e-c143ab369bbb\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"transfer_requested\",\n            \"actionStatus\": \"ok\",\n            \"actionError\": null,\n            \"createdAt\": \"2025-10-03T09:09:35.377409\"\n        },\n        {\n            \"id\": \"61833be7-56db-4a87-9d3a-437779dfc8e4\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"transfer_requested\",\n            \"actionStatus\": \"error\",\n            \"actionError\": null,\n            \"createdAt\": \"2025-10-03T09:09:14.372083\"\n        },\n        {\n            \"id\": \"41697488-b209-43c0-aba8-24805cecb946\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"transfer_requested\",\n            \"actionStatus\": \"ok\",\n            \"actionError\": null,\n            \"createdAt\": \"2025-10-03T09:08:27.611194\"\n        },\n        {\n            \"id\": \"ab7d0049-7831-42ad-a166-28a7fa3051be\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"transfer_requested\",\n            \"actionStatus\": \"error\",\n            \"actionError\": null,\n            \"createdAt\": \"2025-10-03T09:08:15.146732\"\n        },\n        {\n            \"id\": \"25123a03-7ab5-447d-b789-db9ba13a47d1\",\n            \"aip\": \"3f6a2ddc-d80b-4b7f-bf85-60fbff3f345b\",\n            \"action\": \"transfer_requested\",\n            \"actionStatus\": \"error\",\n            \"actionError\": null,\n            \"createdAt\": \"2025-10-02T13:36:16.562572\"\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 10,\n        \"total\": 20,\n        \"max\": null,\n        \"next\": null\n    }\n}"}],"_postman_id":"2a25b1bc-d60b-4da7-ac1e-6bdabdc3ef6e"},{"name":"Log AIP Actions","id":"fcd79436-8bf5-460a-8f67-177956e38570","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"action\": \"delete_requested\",\n  \"actionStatus\": \"ok\",\n  \"actionError\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/aip/{{AipId}}/log","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","aip","{{AipId}}","log"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"19b7442f-1440-4f77-b574-d19df3fd6cf4","name":"Log AIP Actions","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"action\": \"delete_requested\",\n  \"actionStatus\": \"ok\",\n  \"actionError\": null\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/aip/{{aipId}}/log"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"action\": \"delete_requested\",\n    \"actionStatus\": \"ok\",\n    \"actionError\": null\n}"}],"_postman_id":"fcd79436-8bf5-460a-8f67-177956e38570"},{"name":"Update AIP status","id":"5edc8772-112d-416b-89e0-c18685d9a0ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://test.memorix.io/edepot/aip/status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","aip","status"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"176eefe7-c7d4-4571-a8be-527ffd4b3101","name":"Update AIP status","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{ \n    \"aipIds\" : [\"{{aipId}}\"], \n    \"status\": \"transfer_failed\" \n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/aip/status"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"aipIds\": [\n        {\n            \"aipId\": \"{{aipId}}\",\n            \"error\": null\n        }\n    ]\n}"}],"_postman_id":"5edc8772-112d-416b-89e0-c18685d9a0ca"},{"name":"Update AIP Fields","id":"e96c9400-59f7-48da-8f0a-aca2e5e36a88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/aip/{{AipId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","aip","{{AipId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"51aa8131-a333-45d9-b364-bf66f1e84677","name":"Update AIP status","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{ \n    \"aipIds\" : [\"{{aipId}}\"], \n    \"status\": \"transfer_failed\" \n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/aip/status"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"aipIds\": [\n        {\n            \"aipId\": \"{{aipId}}\",\n            \"error\": null\n        }\n    ]\n}"}],"_postman_id":"e96c9400-59f7-48da-8f0a-aca2e5e36a88"}],"id":"d10fe093-746d-4279-b88c-62cf56b3343d","description":"<p>When Nexus is used in combination with Archivematica Edepot the following features can be used:</p>\n<ul>\n<li><p>Ingest, TMLO ingests in Archivematica also generate records in Nexus.</p>\n</li>\n<li><p>AIP management, I't possible to send delete requests for AIP's to Archivematica and/or transfer original files from an AIP to a SFTP location.</p>\n</li>\n</ul>\n","_postman_id":"d10fe093-746d-4279-b88c-62cf56b3343d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Export","item":[{"name":"Export to CSV","id":"e6cf107b-ee05-4d3f-a3b1-215c32e9aed5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"type\": \"FieldQuery\",\n        \"operator\": \"equals\",\n        \"field\": \"recordType.id\",\n        \"value\": \"AmsFile\"\n    }\n}\n"},"url":"https://test.memorix.io/export/records/csv","description":"<p>The query property can be any elastic search query, queries will be validated and are currently limited to</p>\n<ul>\n<li>1 record type</li>\n<li>100k records</li>\n</ul>\n<h3 id=\"success-response\">Success response</h3>\n<p>A successful response will return the export job id.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"id\": \"f25b1fd7-9e33-4470-af4e-ed38c29231dc\"\n}\n\n</code></pre><h3 id=\"error-response\">Error response</h3>\n<p>A failed validation will return a 400 with a error message e.g.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"message\": \"Records in result exceeds max allowed 100000, found 170485\"\n}\n\n</code></pre><h2 id=\"csv-format\">CSV Format</h2>\n<p>The CSV format is encoded as Excel, there are however some specific encodings for the following fields.</p>\n<ul>\n<li>repeatable fields</li>\n<li>repeatable groups</li>\n<li>geolocation fields</li>\n</ul>\n<p>The record id and collection id are always exported as first columns in the CSV.</p>\n<p>Example output of a CSV export.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>id,collection,Image.image:title\nd8dcd239-fb6e-4b68-a10a-e6e6bdafd69e,4672ce08-d9c6-4963-859d-c18036676a0c,Chuck Norris' beard is immutable.\n\n</code></pre><h3 id=\"repeatable-fields\">Repeatable fields</h3>\n<p>Repeatable fields are concatenated into 1 csv cell with the <code>|</code> character.<br />This means that a string field with 2 values would look like <code>foo|bar</code></p>\n<p>if the values already contains a <code>|</code> it must be escaped by <code>\\</code></p>\n<h3 id=\"repeatable-groups\">Repeatable groups</h3>\n<p>Fields within repeatable groups each are exported into their own column, and are concatenated with <code>^</code>.</p>\n<p>This means a field in a group value looks as follows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Image.image:group.memorix:order,Image.image:group.image:group-text\n\"foo^bar\",\n\n</code></pre><p>Values which already contain a <code>^</code> must be escaped with <code>\\</code></p>\n<h3 id=\"link-fields\">Link fields</h3>\n<p>Link fields are exported with the <code>⇾</code> character to separate the link and title. <code>http://example.com/thingy⇾Title</code></p>\n<h3 id></h3>\n<p>Geolocation fields</p>\n<p>Geolocation fields are encoded as JSON objects in a CSV cell as follows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"iri\":\"http://example.com/geo\",\"name\":\"Amsterdam\",\"latitude\":52.3676,\"longitude\":4.9041,\"sameAs\":\"https://www.amsterdam.nl\"}\n\n</code></pre>\n<p>Repeatable geolocation fields are separated with <code>|</code> as normal repeatable fields.</p>\n<h2 id=\"csv-headers\">CSV Headers</h2>\n<p>The CSV headers determine the field of the recordtype that is exported.</p>\n<p>For example <code>Image.image:title</code> can be split up as follows.</p>\n<p><code>Image</code> = Recordtype ID</p>\n<p><code>image:title</code> = The field which has <code>sh:path image:title</code> ;</p>\n<h3 id=\"groups\">Groups</h3>\n<p>Fields in groups are nested and concatenated with a <code>.</code> in the following way.</p>\n<p><code>Image.image:group.dc:title</code></p>\n<p><code>Image</code> = Recordtype ID</p>\n<p><code>image:group</code> = Group of fields</p>\n<p><code>dc:title</code> = Field within the group with <code>sh:path dc:title</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["export","records","csv"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"b435c04e-924d-4a61-8398-8ee38ccddb97","name":"Export to CSV","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"type\": \"FullTextQuery\",\n        \"query\": \"search term\"\n    }\n}\n"},"url":"https://test.memorix.io/export/records/csv"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e6cf107b-ee05-4d3f-a3b1-215c32e9aed5"},{"name":"Export activity log","id":"d428e53f-f0e8-43a6-9dbf-07327d33ce8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/activity-log/export","description":"<p>The activity log can be retrieved at.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /activity-log/export\n    ?page={currentPage}\n    &amp;perPage={itemsPerPage}\n    &amp;id={optionalId}    \n\n</code></pre><h3 id=\"response\">Response</h3>\n<p>The response will be in the following format the <code>file.url</code> contains the encoded path for the file in nextcloud.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"rows\": [\n        {\n            \"id\": \"506a0f86-1fcb-4078-8b3d-a54ac6227a66\",\n            \"status\": \"finished\",\n            \"file\": {\n                \"url\": \"Memorix Nexus/upload/export/export-csv-2023-07-31T11:30:05.042548.csv\"\n            },\n            \"error\": null,\n            \"createdBy\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n            \"createdAt\": \"2023-07-31T11:30:03.445650\",\n            \"modifiedAt\": null\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 25,\n        \"total\": 1,\n        \"max\": null\n    }\n}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","export"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"page","value":"{currentPage}"},{"disabled":true,"key":"perPage","value":"{itemsPerPage}"},{"disabled":true,"key":"id","value":"{optionalId}"}],"variable":[]}},"response":[],"_postman_id":"d428e53f-f0e8-43a6-9dbf-07327d33ce8e"},{"name":"Export fond to CSV","id":"f9b82b35-f620-4e16-b32d-a65745776823","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://test.memorix.io/export/fonds/{{fond_id}}/csv","description":"<blockquote>\n<p>/export/fonds/{{fond_id}}/csv </p>\n</blockquote>\n<p>Endpoint to export a fond by ID to CSV.</p>\n<p>The output is export job id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["export","fonds","{{fond_id}}","csv"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"87505bd1-a306-4ac2-84be-85514e460b0a","name":"Export fond to CSV","originalRequest":{"method":"POST","header":[],"url":"https://test.memorix.io/export/fonds/0ec435cc-2a81-44b9-b1b9-c00eac64a022/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 15 Nov 2023 14:43:42 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"45"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"d947196c-d3c7-49f9-afcc-551f2ac0904c\"\n}"}],"_postman_id":"f9b82b35-f620-4e16-b32d-a65745776823"}],"id":"c8a2e59f-2504-42fe-83d1-45416ca06460","_postman_id":"c8a2e59f-2504-42fe-83d1-45416ca06460","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Feedback","item":[{"name":"Create comment","id":"ec5aa816-6af8-430e-aa2b-e4b4dcb970f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"rogier@memorix.io\",\r\n    \"comment\": \"Comment on a later date.\",\r\n    \"recordId\": \"09380edf-261a-4ce1-8dfd-808213953ef8\",\r\n    \"token\": \"tokenReturnedByRecaptcha\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/comments","urlObject":{"path":["resources","comments"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"1594283e-150d-4096-90ca-44ea27855d18","name":"Create comment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n    \"status\": \"New\",\n    \"email\": \"tester@memorix.io\",\n    \"comment\": \"This is a test comment to validate the comment creation.\",\n    \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n    \"published\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/comments"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:14:50 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n    \"status\": \"NEW\",\n    \"email\": \"tester@memorix.io\",\n    \"comment\": \"This is a test comment to validate the comment creation.\",\n    \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n    \"published\": false,\n    \"createdBy\": \"1eee57c3-cf47-4849-b64e-444270071624\",\n    \"createdAt\": \"2024-04-11T11:14:50.794845\",\n    \"modifiedBy\": null,\n    \"modifiedAt\": null\n}"}],"_postman_id":"ec5aa816-6af8-430e-aa2b-e4b4dcb970f3"},{"name":"Create comment (spam protection)","id":"a4830ff6-8a1d-4def-8376-4eaa74cb52f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"rogier@memorix.io\",\n    \"comment\": \"Comment on a later date.\",\n    \"recordId\": \"09380edf-261a-4ce1-8dfd-808213953ef8\",\n    \"token\": \"tokenReturnedByRecaptcha\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/comments/submit","description":"<p>Add a new comment validated by recaptcha to come from a human being, this requires the recaptcha configuration to be enabled.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","comments","submit"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"f7270ee4-83aa-4447-b937-97a52e150743","name":"Create comment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n    \"status\": \"New\",\n    \"email\": \"tester@memorix.io\",\n    \"comment\": \"This is a test comment to validate the comment creation.\",\n    \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n    \"published\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/comments"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:14:50 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n    \"status\": \"NEW\",\n    \"email\": \"tester@memorix.io\",\n    \"comment\": \"This is a test comment to validate the comment creation.\",\n    \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n    \"published\": false,\n    \"createdBy\": \"1eee57c3-cf47-4849-b64e-444270071624\",\n    \"createdAt\": \"2024-04-11T11:14:50.794845\",\n    \"modifiedBy\": null,\n    \"modifiedAt\": null\n}"}],"_postman_id":"a4830ff6-8a1d-4def-8376-4eaa74cb52f2"},{"name":"Get comment","id":"51968a68-35cf-4c04-b4f1-707fbdbca964","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/comments/b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","comments","b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"cfd1139a-598d-4b19-a7da-15583a24c15c","name":"Get comment","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/comments/b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:21:47 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n    \"status\": \"PROCESSED\",\n    \"email\": \"tester@memorix.io\",\n    \"comment\": \"This is a test comment to validate the updating of a comment.\",\n    \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n    \"published\": true,\n    \"createdBy\": \"1eee57c3-cf47-4849-b64e-444270071624\",\n    \"createdAt\": \"2024-04-11T11:14:50.794845\",\n    \"modifiedBy\": \"1eee57c3-cf47-4849-b64e-444270071624\",\n    \"modifiedAt\": \"2024-04-11T11:15:15.555574\"\n}"}],"_postman_id":"51968a68-35cf-4c04-b4f1-707fbdbca964"},{"name":"List comments","id":"d4ed8bcc-4920-4954-91e5-b20e838d10c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://test.memorix.io/resources/comments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","comments"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"email","value":"tester"},{"disabled":true,"key":"recordId","value":"3090224d-42bd-4aab-9024-6dfc149ee2e8"},{"disabled":true,"key":"recordTitle","value":""},{"disabled":true,"key":"status","value":"New"},{"disabled":true,"key":"from","value":"2024-04-27"},{"disabled":true,"key":"till","value":"2024-04-30"},{"disabled":true,"key":"collectionId","value":""},{"disabled":true,"key":"published","value":""},{"disabled":true,"key":"page","value":"2"},{"disabled":true,"key":"perPage","value":"3"},{"disabled":true,"key":"order","value":"desc"},{"disabled":true,"key":"orderBy","value":"createdAt"}],"variable":[]}},"response":[{"id":"0bbfd397-f5fc-4085-b554-bb88473230e9","name":"List comments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://test.memorix.io/resources/comments","host":["https://test.memorix.io"],"path":["resources","comments"],"query":[{"key":"status","value":null,"description":"Status. One of [\"New\", \"Rejected\", \"Processed\"]","disabled":true},{"key":"from","value":null,"description":"From date","disabled":true},{"key":"till","value":null,"description":"Till date","disabled":true},{"key":"recordId","value":null,"description":"UUID of the record to filter on","disabled":true},{"key":"recordTypeId","value":null,"disabled":true},{"key":"collectionId","value":null,"disabled":true},{"key":"published","value":null,"disabled":true},{"key":"email","value":null,"disabled":true},{"key":"recordTitle","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:15:07 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n            \"status\": \"New\",\n            \"email\": \"tester@memorix.io\",\n            \"comment\": \"This is a test comment to validate the comment creation.\",\n            \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n            \"recordTitle\": \"Chuck Norris' beard is immutable.\",\n            \"collectionId\": \"4672ce08-d9c6-4963-859d-c18036676a0c\",\n            \"recordTypeId\": \"Image\",\n            \"recordTypeTitle\": \"Image\",\n            \"createdByName\": \"Test User\",\n            \"modifiedByName\": \"\"\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 10,\n        \"total\": 1,\n        \"max\": null\n    }\n}"}],"_postman_id":"d4ed8bcc-4920-4954-91e5-b20e838d10c0"},{"name":"List published comments","id":"d779e524-6311-4885-a9d4-bd249896ca11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://test.memorix.io/resources/comments/published","description":"<p>This endpoint is almost identical to the \"List comments\" endpoint but will only return published comments and does not require special permissions.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","comments","published"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"email","value":"tester"},{"disabled":true,"key":"recordId","value":"3090224d-42bd-4aab-9024-6dfc149ee2e8"},{"disabled":true,"key":"recordTitle","value":""},{"disabled":true,"key":"status","value":"New"},{"disabled":true,"key":"from","value":"2024-04-27"},{"disabled":true,"key":"till","value":"2024-04-30"},{"disabled":true,"key":"collectionId","value":""},{"disabled":true,"key":"page","value":"2"},{"disabled":true,"key":"perPage","value":"3"},{"disabled":true,"key":"order","value":"desc"},{"disabled":true,"key":"orderBy","value":"createdAt"}],"variable":[]}},"response":[{"id":"97ced0e6-c086-4258-9dde-622a4b8e3fd7","name":"List comments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://test.memorix.io/resources/comments","host":["https://test.memorix.io"],"path":["resources","comments"],"query":[{"key":"status","value":null,"description":"Status. One of [\"New\", \"Rejected\", \"Processed\"]","disabled":true},{"key":"from","value":null,"description":"From date","disabled":true},{"key":"till","value":null,"description":"Till date","disabled":true},{"key":"recordId","value":null,"description":"UUID of the record to filter on","disabled":true},{"key":"recordTypeId","value":null,"disabled":true},{"key":"collectionId","value":null,"disabled":true},{"key":"published","value":null,"disabled":true},{"key":"email","value":null,"disabled":true},{"key":"recordTitle","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:15:07 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n            \"status\": \"New\",\n            \"email\": \"tester@memorix.io\",\n            \"comment\": \"This is a test comment to validate the comment creation.\",\n            \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n            \"recordTitle\": \"Chuck Norris' beard is immutable.\",\n            \"collectionId\": \"4672ce08-d9c6-4963-859d-c18036676a0c\",\n            \"recordTypeId\": \"Image\",\n            \"recordTypeTitle\": \"Image\",\n            \"createdByName\": \"Test User\",\n            \"modifiedByName\": \"\"\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 10,\n        \"total\": 1,\n        \"max\": null\n    }\n}"}],"_postman_id":"d779e524-6311-4885-a9d4-bd249896ca11"},{"name":"List comments published comments","id":"940e58c7-71ab-44a2-9409-d048ba50c7c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://test.memorix.io/resources/comments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","comments"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"email","value":"tester"},{"disabled":true,"key":"recordId","value":"3090224d-42bd-4aab-9024-6dfc149ee2e8"},{"disabled":true,"key":"recordTitle","value":""},{"disabled":true,"key":"status","value":"New"},{"disabled":true,"key":"from","value":"2024-04-27"},{"disabled":true,"key":"till","value":"2024-04-30"},{"disabled":true,"key":"collectionId","value":""},{"disabled":true,"key":"published","value":""},{"disabled":true,"key":"page","value":"2"},{"disabled":true,"key":"perPage","value":"3"},{"disabled":true,"key":"order","value":"desc"},{"disabled":true,"key":"orderBy","value":"createdAt"}],"variable":[]}},"response":[{"id":"a8e20548-aa7e-4c6a-bb5b-3b8347421628","name":"List comments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://test.memorix.io/resources/comments","host":["https://test.memorix.io"],"path":["resources","comments"],"query":[{"key":"status","value":null,"description":"Status. One of [\"New\", \"Rejected\", \"Processed\"]","disabled":true},{"key":"from","value":null,"description":"From date","disabled":true},{"key":"till","value":null,"description":"Till date","disabled":true},{"key":"recordId","value":null,"description":"UUID of the record to filter on","disabled":true},{"key":"recordTypeId","value":null,"disabled":true},{"key":"collectionId","value":null,"disabled":true},{"key":"published","value":null,"disabled":true},{"key":"email","value":null,"disabled":true},{"key":"recordTitle","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:15:07 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n            \"status\": \"New\",\n            \"email\": \"tester@memorix.io\",\n            \"comment\": \"This is a test comment to validate the comment creation.\",\n            \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n            \"recordTitle\": \"Chuck Norris' beard is immutable.\",\n            \"collectionId\": \"4672ce08-d9c6-4963-859d-c18036676a0c\",\n            \"recordTypeId\": \"Image\",\n            \"recordTypeTitle\": \"Image\",\n            \"createdByName\": \"Test User\",\n            \"modifiedByName\": \"\"\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 10,\n        \"total\": 1,\n        \"max\": null\n    }\n}"}],"_postman_id":"940e58c7-71ab-44a2-9409-d048ba50c7c9"},{"name":"List status options","id":"cfa0fd15-1a5e-4037-a78c-43a25e612814","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://test.memorix.io/resources/comments/statuses","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","comments","statuses"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"6194934b-5fda-4b59-964f-3d9724a11ca7","name":"List status options","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/comments/statusses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:49:02 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Length","value":"30"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    \"New\",\n    \"Rejected\",\n    \"Processed\"\n]"}],"_postman_id":"cfa0fd15-1a5e-4037-a78c-43a25e612814"},{"name":"Update comment","id":"e4b17414-7581-40c9-b9c6-9d65e92a177e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"Processed\",\n    \"comment\": \"This is a test comment to validate the updating of a comment.\",\n    \"published\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/comments/b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","comments","b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"833c124f-f95b-4c59-b5c4-d23f9105ab46","name":"Update comment","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"Processed\",\n    \"comment\": \"This is a test comment to validate the updating of a comment.\",\n    \"published\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/comments/b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:15:15 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8\",\n    \"status\": \"PROCESSED\",\n    \"email\": \"tester@memorix.io\",\n    \"comment\": \"This is a test comment to validate the updating of a comment.\",\n    \"recordId\": \"576fa024-f1e6-4a24-9858-5085bb0b259c\",\n    \"published\": true,\n    \"createdBy\": \"1eee57c3-cf47-4849-b64e-444270071624\",\n    \"createdAt\": \"2024-04-11T11:14:50.794845\",\n    \"modifiedBy\": \"1eee57c3-cf47-4849-b64e-444270071624\",\n    \"modifiedAt\": \"2024-04-11T11:15:15.555574\"\n}"}],"_postman_id":"e4b17414-7581-40c9-b9c6-9d65e92a177e"},{"name":"Delete comment","id":"7c3c15da-75bb-4048-825c-b56fa7b04282","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/comments/b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","comments","b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"d3951358-0d16-4dbe-bd85-ea77f54daaec","name":"Delete comment","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/comments/b8f0a9cf-0103-48cf-8e47-0ed5ec74bca8"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 11 Apr 2024 11:44:51 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7c3c15da-75bb-4048-825c-b56fa7b04282"}],"id":"c4eb0043-5600-4ef5-afd6-48a07699df03","_postman_id":"c4eb0043-5600-4ef5-afd6-48a07699df03","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Import","item":[{"name":"Import from CSV","id":"696f8a0b-dfb3-4ec7-bc74-439b18c3d02e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"file","file":{}},"url":"https://test.memorix.io/import/records/csv/{{originalFilename.csv}}?linkAssets=false","description":"<p>Import an CSV to create / update records.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location --request PUT 'http://localhost:8080/import/records/csv' \\\n--header 'Content-Type: text/csv' \\\n--data '@/csv/records.csv'\n\n</code></pre><h2 id=\"csv-format\">CSV Format</h2>\n<p>The CSV format is encoded with the following characters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>type</strong></th>\n<th><strong>character</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>delimiter</td>\n<td>,</td>\n</tr>\n<tr>\n<td>quote</td>\n<td>\"</td>\n</tr>\n</tbody>\n</table>\n</div><p>The record id and collection id are always exported as first columns in the CSV.</p>\n<p>Example output of a CSV export.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>id,collection,Image.image:title\nd8dcd239-fb6e-4b68-a10a-e6e6bdafd69e,4672ce08-d9c6-4963-859d-c18036676a0c,Chuck Norris' beard is immutable.\n\n</code></pre><p>there are however some specific encodings for the following fields.</p>\n<ul>\n<li>repeatable fields</li>\n<li>repeatable groups</li>\n</ul>\n<h3 id=\"geolocation-fields\">geolocation fields</h3>\n<p>Repeatable fields</p>\n<p>Repeatable fields are concatenated into 1 csv cell with the <code>|</code> character.<br />This means that a string field with 2 values would look like <code>foo|bar</code></p>\n<p>if the values already contains a <code>|</code> it must be escaped by <code>\\</code></p>\n<p>Important*\nIf there already is a value '|` the value can't be imported safely</p>\n<h3 id=\"repeatable-groups\">Repeatable groups</h3>\n<p>Fields within repeatable groups each are exported into their own column, and are concatenated with <code>^</code>.</p>\n<p>if the values already contains a <code>^</code> it must be escaped by <code>\\</code></p>\n<p>Important*\nIf there already is a value '^` the value can't be imported safely</p>\n<p>This means a field in a group value looks as follows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Image.image:group.memorix:order,Image.image:group.image:group-text\n\"foo^bar\",\n\n</code></pre><p>Values which already contain a <code>^</code> must be escaped with <code>\\</code></p>\n<h3 id=\"geolocation-fields-1\">Geolocation fields</h3>\n<p>Geolocation fields are encoded as JSON objects in a CSV cell as follows.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"iri\":\"http://example.com/geo\",\"name\":\"Amsterdam\",\"latitude\":52.3676,\"longitude\":4.9041,\"sameAs\":\"https://www.amsterdam.nl\"}\n\n</code></pre>\n<p>Repeatable geolocation fields are separated with <code>|</code> as normal repeatable fields.</p>\n<h2 id=\"csv-headers\">CSV Headers</h2>\n<p>The CSV headers determine the field of the recordtype that is exported.</p>\n<p>For example <code>Image.image:title</code> can be split up as follows.</p>\n<p><code>Image</code> = Recordtype ID</p>\n<p><code>image:title</code> = The field which has <code>sh:path image:title</code> ;</p>\n<h3 id=\"groups\">Groups</h3>\n<p>Fields in groups are nested and concatenated with a <code>.</code> in the following way.</p>\n<p><code>Image.image:group.dc:title</code></p>\n<p><code>Image</code> = Recordtype ID</p>\n<p><code>image:group</code> = Group of fields</p>\n<p><code>dc:title</code> = Field within the group with <code>sh:path dc:title</code></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["import","records","csv","{{originalFilename.csv}}"],"host":["https://test.memorix.io"],"query":[{"key":"linkAssets","value":"false"}],"variable":[]}},"response":[{"id":"2e14c9b2-43ea-4b71-ac4c-2e8482d825ec","name":"Export to CSV","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"type\": \"FullTextQuery\",\n        \"query\": \"search term\"\n    }\n}\n"},"url":"https://test.memorix.io/export/records/csv"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"696f8a0b-dfb3-4ec7-bc74-439b18c3d02e"},{"name":"Import job activity log","id":"d3edd0fe-50a0-4159-af90-cc025359d705","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/activity-log/import","description":"<p>The activity log can be retrieved at.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /activity-log/import\n    ?page={currentPage}\n    &amp;perPage={itemsPerPage}\n\n</code></pre><h3 id=\"response\">Response</h3>\n<p>The response will be in the following format the <code>file.url</code> contains the encoded path for the file in nextcloud.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\n{\n    \"rows\": [\n        {\n            \"id\": \"df7ce201-a0b4-465b-a7d2-167305fe5a19\",\n            \"summary\": {\n                \"status\": \"finished\",\n                \"file\": \"upload/import/records/2023/records-2023-09-26T11:59:21.648241.csv\",\n                \"contentLength\": 1813,\n                \"error\": null\n            },\n            \"count\": {\n                \"total\": 8,\n                \"succeeded\": 8,\n                \"failed\": 0\n            },\n            \"user\": {\n                \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                \"name\": {\n                    \"givenName\": \"Barry\",\n                    \"surnamePrefix\": \"\",\n                    \"surname\": \"Batsbak\"\n                }\n            },\n            \"createdAt\": \"2023-09-26T11:59:28.216012\",\n            \"modifiedAt\": \"2023-09-26T11:59:30.952358\"\n        }\n], \n\"pagination\": {\n        \"page\": 1,\n        \"perPage\": 25,\n        \"total\": 22,\n        \"max\": null\n    }\n}\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","import"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"page","value":"{currentPage}"},{"disabled":true,"key":"perPage","value":"{itemsPerPage}"}],"variable":[]}},"response":[],"_postman_id":"d3edd0fe-50a0-4159-af90-cc025359d705"},{"name":"Import job records activity log","id":"f5428805-7580-432a-8641-46cf4572ee95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/activity-log/import/{{importJobId}}","description":"<p>The activity log for import job records can be retrieved at.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /activity-log/import/{importJobId}\n    ?page={currentPage}\n    &amp;perPage={itemsPerPage}\n    &amp;status={status}\n\n</code></pre><p>Status is an optional filter for <code>succeeded</code> or <code>failed</code> records.</p>\n<h3 id></h3>\n<p>Response</p>\n<p>The response will be in the following format </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"rows\": [\n        {\n            \"job\": \"df7ce201-a0b4-465b-a7d2-167305fe5a19\",\n            \"record\": \"f8322e52-396a-4596-8ab4-c43a75b40aab\",\n            \"status\": \"succeeded\",\n            \"mode\": \"update\",\n            \"row\": 7,\n            \"error\": null,\n            \"createdAt\": \"2023-09-26T11:59:30.944824\"\n        },\n        {\n            \"job\": \"78310031-a3b1-4f62-ab21-be68a866806a\",\n            \"status\": \"failed\",\n            \"mode\": \"insert\",\n            \"row\": 0,\n            \"error\": {\n                \"message\": \"Invalid group field values count for FieldId(value=Image.image:group)\"\n            },\n            \"createdAt\": \"2023-09-22T21:22:31.966816\"\n        }...\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 25,\n        \"total\": 2,\n        \"max\": null\n    }\n}\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["activity-log","import","{{importJobId}}"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"page","value":"{currentPage}"},{"disabled":true,"key":"perPage","value":"{itemsPerPage}"},{"disabled":true,"description":{"content":"<p>succeeded or failed</p>\n","type":"text/plain"},"key":"status","value":""}],"variable":[]}},"response":[],"_postman_id":"f5428805-7580-432a-8641-46cf4572ee95"}],"id":"e0ae1f87-8e62-4818-b78e-5a491ee63baf","_postman_id":"e0ae1f87-8e62-4818-b78e-5a491ee63baf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"History","item":[{"name":"List History events","event":[{"listen":"test","script":{"id":"c5c06fc6-7816-4f78-a9d4-3df77f2042aa","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'memorix:History',","        'memorix:Pagination',","    ]","    Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:History');","    pm.collectionVariables.set(\"HistoryId\", Memorix.path.basename(Memorix.path.dirname(Memorix.lastSeenIdentifier)))","});","","pm.test(\"Test for required query parameters 'about' & 'object'\", function() {","    const q = pm.request.url.query","    pm.expect(q.has('about')).to.be.true","    pm.expect(q.has('object')).to.be.true","})","","pm.test('Correct Resourcetype', function(){","     const q = pm.request.url.query","     pm.expect(q.get('about')).to.be.oneOf(Memorix.resourceTypes)","})"],"type":"text/javascript"}}],"id":"a51c805b-d9ef-45ea-b180-15ea28fa10b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/ld+json","type":"text"}],"url":"https://test.memorix.io/resources/history?agent","description":"<p><strong>!!! This endpoint is deprecated and should not be used. See documented endpoints for specific resources!!!</strong></p>\n<p>List the History events for a specific Resource.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","history"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>An id of a resource for which you want the History (required)</p>\n","type":"text/plain"},"key":"about","value":""},{"disabled":true,"description":{"content":"<p>One of the Memorix Classes that support History (required)</p>\n","type":"text/plain"},"key":"object","value":""},{"disabled":true,"key":"additionalType","value":"CreateAction"},{"description":{"content":"<p>Filter on user id</p>\n","type":"text/plain"},"key":"agent","value":""}],"variable":[]}},"response":[{"id":"151c2190-8d6b-4541-bac4-5fc7ad000044","name":"List History (Set)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/resources/history?about=Recordtpe&object=Image","host":["https://test.memorix.io"],"path":["resources","history"],"query":[{"key":"about","value":"Recordtpe","description":"One of the Memorix Classes that support History"},{"key":"object","value":"Image","description":"An id of a resource for which you want the History"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n@prefix users:   <https://example.memorix-test.nl/resources/users/> .\n@prefix history: <https://example.memorix-test.nl/resources/history/> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n\n<> a memorix:Pagination ;\n  memorix:currentPageIndex 1 ;\n  memorix:resultCount 3 ;\n  memorix:numberOfPages 1 ;\n  memorix:pageSize 1000 .\n\n## Used for POST requests on a Resource, only 1 of these per Resource:\nhistory:f34ab96b-81ae-4705-a22e-d71ac4bac809 a memorix:History;\n  schema:additionalType schema:AddAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent [\n    rdf:type schema:person ;\n    schema:identifier \"ecbd8021-efa6-440f-89b5-ad55bc991163\";\n    schema:name \"John Doe\";\n  ];\n  schema:about memorix:Recordtype ;\n  schema:object recordtypes:Image .\n\n## Used for PUT requests on a Resource:\nhistory:b3b4329a-dda0-11eb-acc9-d7d818391015 a memorix:History;\n  schema:additionalType schema:ReplaceAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent [\n    rdf:type schema:person ;\n    schema:identifier \"ecbd8021-efa6-440f-89b5-ad55bc991163\";\n    schema:name \"John Doe\";\n  ];\n  schema:about memorix:Recordtype ;\n  schema:object recordtypes:Image .\n\n## Used for DELETE requests on a Resource, only 1 of these per Resource:\nhistory:b879806e-dda0-11eb-8780-5b2ef4c12217 a memorix:History:\n  schema:additionalType schema:DeleteAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent [\n    rdf:type schema:person ;\n    schema:identifier \"ecbd8021-efa6-440f-89b5-ad55bc991163\";\n    schema:name \"John Doe\";\n  ];\n  schema:about memorix:Recordtype ;\n  schema:object recordtypes:Image .\n"},{"id":"3b2e285c-bc04-466e-ae5f-bf4334f99eca","name":"List History (Context/Record)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/resources/history?about=Context&object=dd30bff4-dd9f-11eb-b97c-4b959609a1bc","host":["https://test.memorix.io"],"path":["resources","history"],"query":[{"key":"about","value":"Context","description":"One of the Memorix Classes that support History"},{"key":"object","value":"dd30bff4-dd9f-11eb-b97c-4b959609a1bc","description":"An id of a resource for which you want the History"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n@prefix users:   <https://example.memorix-test.nl/resources/users/> .\n@prefix history: <https://example.memorix-test.nl/resources/history/> .\n@prefix records: <https://example.memorix-test.nl/resources/records/> .\n\n## Used for POST requests on a Resource, only 1 of these per Resource:\nhistory:f34ab96b-81ae-4705-a22e-d71ac4bac809 a memorix:History;\n  schema:additionalType schema:AddAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent [\n    rdf:type schema:person ;\n    schema:identifier \"ecbd8021-efa6-440f-89b5-ad55bc991163\";\n    schema:name \"John Doe\";\n  ];\n  schema:about memorix:Context ;\n  schema:object records:dd30bff4-dd9f-11eb-b97c-4b959609a1bc .\n\n## Used for PUT requests on a Resource:\nhistory:b3b4329a-dda0-11eb-acc9-d7d818391015 a memorix:History \n  schema:additionalType schema:ReplaceAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent [\n    rdf:type schema:person ;\n    schema:identifier \"ecbd8021-efa6-440f-89b5-ad55bc991163\";\n    schema:name \"John Doe\";\n  ];\n  schema:about memorix:Context ;\n  schema:object records:dd30bff4-dd9f-11eb-b97c-4b959609a1bc .\n\n## Used for RPC command on a Resource:\nhistory:b3b4329a-dda0-11eb-acc9-d7d818391015 a memorix:History \n  schema:additionalType schema:UpdateAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent [\n    rdf:type schema:person ;\n    schema:identifier \"ecbd8021-efa6-440f-89b5-ad55bc991163\";\n    schema:name \"John Doe\";\n  ];\n  schema:object records:dd30bff4-dd9f-11eb-b97c-4b959609a1bc ;\n  schema:about memorix:Context ;\n  schema:additionalType memorix:moveToCollection .\n\n## Used for DELETE requests on a Resource, only 1 of these per Resource:\nhistory:b879806e-dda0-11eb-8780-5b2ef4c12217 a memorix:History;\n  schema:additionalType schema:DeleteAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent [\n    rdf:type schema:person ;\n    schema:identifier \"ecbd8021-efa6-440f-89b5-ad55bc991163\";\n    schema:name \"John Doe\";\n  ];\n  schema:about memorix:Context ;\n  schema:object records:dd30bff4-dd9f-11eb-b97c-4b959609a1bc .\n"}],"_postman_id":"a51c805b-d9ef-45ea-b180-15ea28fa10b9"},{"name":"List History events for single record","event":[{"listen":"test","script":{"id":"c5c06fc6-7816-4f78-a9d4-3df77f2042aa","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'memorix:History',","        'memorix:Pagination',","    ]","    Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:History');","    pm.collectionVariables.set(\"HistoryId\", Memorix.path.basename(Memorix.path.dirname(Memorix.lastSeenIdentifier)))","});","","pm.test(\"Test for required query parameters 'about' & 'object'\", function() {","    const q = pm.request.url.query","    pm.expect(q.has('about')).to.be.true","    pm.expect(q.has('object')).to.be.true","})","","pm.test('Correct Resourcetype', function(){","     const q = pm.request.url.query","     pm.expect(q.get('about')).to.be.oneOf(Memorix.resourceTypes)","})"],"type":"text/javascript"}}],"id":"406a893c-7870-4e54-bf0c-a218352f4a24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records/{{recordId}}/history","description":"<p>List the History events for a specific Resource.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","{{recordId}}","history"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Define the type of history (CreateAction|ReplaceAction|DeleteAction)</p>\n","type":"text/plain"},"key":"additionalType","value":""},{"disabled":true,"description":{"content":"<p>Filter History by Agent</p>\n","type":"text/plain"},"key":"agent","value":""},{"disabled":true,"description":{"content":"<p>Maximum number of items in the resultlist</p>\n","type":"text/plain"},"key":"perPage","value":"100"}],"variable":[]}},"response":[],"_postman_id":"406a893c-7870-4e54-bf0c-a218352f4a24"},{"name":"List History events for single record A&R","event":[{"listen":"test","script":{"id":"c5c06fc6-7816-4f78-a9d4-3df77f2042aa","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'memorix:History',","        'memorix:Pagination',","    ]","    Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:History');","    pm.collectionVariables.set(\"HistoryId\", Memorix.path.basename(Memorix.path.dirname(Memorix.lastSeenIdentifier)))","});","","pm.test(\"Test for required query parameters 'about' & 'object'\", function() {","    const q = pm.request.url.query","    pm.expect(q.has('about')).to.be.true","    pm.expect(q.has('object')).to.be.true","})","","pm.test('Correct Resourcetype', function(){","     const q = pm.request.url.query","     pm.expect(q.get('about')).to.be.oneOf(Memorix.resourceTypes)","})"],"type":"text/javascript"}}],"id":"e6f5c325-c1f6-41a6-9cac-4ca6e971dd52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/accessibility_and_rights/{{recordId}}/history","description":"<p>List the History events for a specific Resource.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","accessibility_and_rights","{{recordId}}","history"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Define the type of history (CreateAction|ReplaceAction|DeleteAction)</p>\n","type":"text/plain"},"key":"additionalType","value":""},{"disabled":true,"description":{"content":"<p>Filter History by Agent</p>\n","type":"text/plain"},"key":"agent","value":""},{"disabled":true,"description":{"content":"<p>Maximum number of items in the resultlist</p>\n","type":"text/plain"},"key":"perPage","value":"100"}],"variable":[]}},"response":[],"_postman_id":"e6f5c325-c1f6-41a6-9cac-4ca6e971dd52"},{"name":"List History events for single collection","event":[{"listen":"test","script":{"id":"c5c06fc6-7816-4f78-a9d4-3df77f2042aa","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'memorix:History',","        'memorix:Pagination',","    ]","    Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:History');","    pm.collectionVariables.set(\"HistoryId\", Memorix.path.basename(Memorix.path.dirname(Memorix.lastSeenIdentifier)))","});","","pm.test(\"Test for required query parameters 'about' & 'object'\", function() {","    const q = pm.request.url.query","    pm.expect(q.has('about')).to.be.true","    pm.expect(q.has('object')).to.be.true","})","","pm.test('Correct Resourcetype', function(){","     const q = pm.request.url.query","     pm.expect(q.get('about')).to.be.oneOf(Memorix.resourceTypes)","})"],"type":"text/javascript"}}],"id":"36dc1e5b-cdfd-44e9-a726-78e6eedd3f6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/collections/{{collectionId}}/history","description":"<p>List the History events for a specific Resource.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","collections","{{collectionId}}","history"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Define the type of history (CreateAction|ReplaceAction|DeleteAction)</p>\n","type":"text/plain"},"key":"additionalType","value":""},{"disabled":true,"description":{"content":"<p>Filter History by Agent</p>\n","type":"text/plain"},"key":"agent","value":""},{"disabled":true,"description":{"content":"<p>Maximum number of items in the resultlist</p>\n","type":"text/plain"},"key":"perPage","value":"100"}],"variable":[]}},"response":[],"_postman_id":"36dc1e5b-cdfd-44e9-a726-78e6eedd3f6d"},{"name":"List History events for single set","event":[{"listen":"test","script":{"id":"c5c06fc6-7816-4f78-a9d4-3df77f2042aa","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'memorix:History',","        'memorix:Pagination',","    ]","    Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:History');","    pm.collectionVariables.set(\"HistoryId\", Memorix.path.basename(Memorix.path.dirname(Memorix.lastSeenIdentifier)))","});","","pm.test(\"Test for required query parameters 'about' & 'object'\", function() {","    const q = pm.request.url.query","    pm.expect(q.has('about')).to.be.true","    pm.expect(q.has('object')).to.be.true","})","","pm.test('Correct Resourcetype', function(){","     const q = pm.request.url.query","     pm.expect(q.get('about')).to.be.oneOf(Memorix.resourceTypes)","})"],"type":"text/javascript"}}],"id":"280d1ed5-17fc-4450-87ae-1f6455b33e5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/sets/{{setId}}/history","description":"<p>List the History events for a specific Resource.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","sets","{{setId}}","history"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Define the type of history (CreateAction|ReplaceAction|DeleteAction)</p>\n","type":"text/plain"},"key":"additionalType","value":""},{"disabled":true,"description":{"content":"<p>Filter History by Agent</p>\n","type":"text/plain"},"key":"agent","value":""},{"disabled":true,"description":{"content":"<p>Maximum number of items in the resultlist</p>\n","type":"text/plain"},"key":"perPage","value":"100"}],"variable":[]}},"response":[],"_postman_id":"280d1ed5-17fc-4450-87ae-1f6455b33e5a"},{"name":"Get single History event","id":"6f702cf0-98c0-44be-8edc-dce30474cc3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/history/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","history",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f702cf0-98c0-44be-8edc-dce30474cc3c"},{"name":"List Asset History","id":"9e24698c-fa19-4d5a-852e-9a1649e51efb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/assets/{{assetId}}/history","description":"<p>There are multiple additionalTypes introduced with this endpoint:</p>\n<ul>\n<li><p>CreateAction(already existing),</p>\n</li>\n<li><p>PublishAction,</p>\n</li>\n<li><p>UnpublishAction,</p>\n</li>\n<li><p>TranscriptionLinkAction,</p>\n</li>\n<li><p>TranscriptionUnlinkAction</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","assets","{{assetId}}","history"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"075b78cf-390c-4af7-91eb-4fc7ce047e86","name":"List Asset History","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/assets/{{assetId}}/history"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@graph\": [\n        {\n            \"@id\": \"https://test.memorix.io/resources/users/f005ba11-bea7-c01d-f00d-f1a7f007ed01\",\n            \"@type\": [\n                \"memorix:User\",\n                \"schema:Person\"\n            ],\n            \"schema:familyName\": \"System\",\n            \"schema:givenName\": \"\",\n            \"schema:alternateName\": \"System\",\n            \"memorix:authId\": \"\",\n            \"schema:email\": {\n                \"@id\": \"system@memorix.io\"\n            }\n        },\n        {\n            \"@id\": \"https://test.memorix.io/resources/history/c8137866-4a01-4eac-b73f-57788baa8243\",\n            \"@type\": \"memorix:History\",\n            \"schema:additionalType\": {\n                \"@id\": \"schema:PublishAction\"\n            },\n            \"schema:startTime\": {\n                \"@value\": \"2026-05-18T08:24:40.179178\",\n                \"@type\": \"xsd:dateTime\"\n            },\n            \"schema:agent\": {\n                \"@id\": \"https://test.memorix.io/resources/users/f005ba11-bea7-c01d-f00d-f1a7f007ed01\"\n            },\n            \"schema:object\": {\n                \"@id\": \"memorix:Asset\"\n            },\n            \"schema:about\": {\n                \"@id\": \"https://test.memorix.io/resources/assets/395b4adf-5c2b-4dba-bee9-b36e4bbd0d27\"\n            }\n        },\n        {\n            \"@id\": \"https://test.memorix.io/resources/history/067b3186-ffc7-44a4-b1d3-63cec7abbe7b\",\n            \"@type\": \"memorix:History\",\n            \"schema:additionalType\": {\n                \"@id\": \"schema:UnpublishAction\"\n            },\n            \"schema:startTime\": {\n                \"@value\": \"2026-05-18T08:24:38.359917\",\n                \"@type\": \"xsd:dateTime\"\n            },\n            \"schema:agent\": {\n                \"@id\": \"https://test.memorix.io/resources/users/f005ba11-bea7-c01d-f00d-f1a7f007ed01\"\n            },\n            \"schema:object\": {\n                \"@id\": \"memorix:Asset\"\n            },\n            \"schema:about\": {\n                \"@id\": \"https://test.memorix.io/resources/assets/395b4adf-5c2b-4dba-bee9-b36e4bbd0d27\"\n            }\n        }\n    ],\n    \"@context\": {\n        \"schema\": \"http://schema.org/\",\n        \"memorix\": \"http://memorix.io/ontology#\",\n        \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n        \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n        \"dcterms\": \"http://purl.org/dc/terms/\",\n        \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n        \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n        \"dc\": \"http://purl.org/dc/elements/1.1/\"\n    }\n}"}],"_postman_id":"9e24698c-fa19-4d5a-852e-9a1649e51efb"}],"id":"5667f235-440c-42a2-beb9-791abe3a69f7","description":"<p>Memorix keeps track of change events on Resources. Currently we log 3 event types:</p>\n<ul>\n<li>Creation of Resources (POST requests, <a href=\"https://schema.org/AddAction\">schema:AddAction</a>)</li>\n<li>Modification of a Resource which is implemented as a full replace on that Resource (PUT requests, <a href=\"https://schema.org/ReplaceAction\">schema:ReplaceAction</a>)</li>\n<li>Deletion of Resources (DELETE request, <a href=\"https://schema.org/DeleteAction\">schema:DeleteAction</a>)</li>\n</ul>\n","_postman_id":"5667f235-440c-42a2-beb9-791abe3a69f7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Lists","item":[{"name":"Sorted list","item":[{"name":"Update order list items","id":"ebe33cf6-6474-46f5-90ed-3efc36652fc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/turtle","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix skos:          <http://www.w3.org/2004/02/skos/core#> .\n\n<> a skos:OrderedCollection ;\n    skos:memberList (\n        </resources/vocabularies/concepts/8e2decfe-7cb2-4756-acb9-0370bbf0bec6>\n        </resources/vocabularies/concepts/ef261682-10dc-4824-9615-bc1810a72ed1>\n        </resources/vocabularies/concepts/b7278fc5-373e-4415-b459-ff5a5f5f40d8>        \n    ) ;\n.\n"},"url":"https://test.memorix.io/resources/lists/reservation-status/sort","description":"<p>Make sure all concepts of the list are inside the memberList properties when updating the order.</p>\n<p>The order given in the rdf list will be persisted.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","lists","reservation-status","sort"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"bf620214-c15a-44e7-9cf4-389cc922c6cb","name":"Update order list items","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/turtle","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix skos:          <http://www.w3.org/2004/02/skos/core#> .\n\n<> a skos:OrderedCollection ;\n    skos:memberList (\n        </resources/vocabularies/concepts/8e2decfe-7cb2-4756-acb9-0370bbf0bec6>\n        </resources/vocabularies/concepts/ef261682-10dc-4824-9615-bc1810a72ed1>\n        </resources/vocabularies/concepts/b7278fc5-373e-4415-b459-ff5a5f5f40d8>        \n    ) ;\n.\n"},"url":"https://test.memorix.io/resources/lists/reservation-status/sort"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ebe33cf6-6474-46f5-90ed-3efc36652fc9"},{"name":"Get sorted list","id":"a29a2463-b162-4203-bde0-687c109d1820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/lists/reservation-status/sort","description":"<p>Make sure all concepts of the list are inside the memberList properties when updating the order.</p>\n<p>The order given in the rdf list will be persisted.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","lists","reservation-status","sort"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"9ce80ad3-a42b-4f5d-be44-34ca98ce5990","name":"Get sorted list","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/lists/reservation-status/sort"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n\n<http://localhost:8080/resources/lists/reservation-status/sort>\n        a                skos:OrderedCollection ;\n        skos:inScheme    <http://localhost:8080/resources/vocabularies/conceptschemes/b8ea8f07-edbe-4d63-9b0f-e632470ecfb4> ;\n        skos:memberList  ( <http://localhost:8080/resources/vocabularies/concepts/270319df-0c9f-40ab-8a59-0d2d43ec3ef5> <http://localhost:8080/resources/vocabularies/concepts/0597a0ae-d9d9-4921-a4a7-48c3f60f0667> <http://localhost:8080/resources/vocabularies/concepts/b6e5c4ae-eb59-4e52-9ea6-f7c265919145> ) .\n\n<http://localhost:8080/resources/vocabularies/concepts/0597a0ae-d9d9-4921-a4a7-48c3f60f0667>\n        skos:prefLabel  \"New\" .\n\n<http://localhost:8080/resources/vocabularies/concepts/b6e5c4ae-eb59-4e52-9ea6-f7c265919145>\n        skos:prefLabel  \"Pick up\" .\n\n<http://localhost:8080/resources/vocabularies/concepts/270319df-0c9f-40ab-8a59-0d2d43ec3ef5>\n        skos:prefLabel  \"Done\" .\n"}],"_postman_id":"a29a2463-b162-4203-bde0-687c109d1820"}],"id":"6fc14b07-e61a-40f7-9969-1fa029d7c66a","_postman_id":"6fc14b07-e61a-40f7-9969-1fa029d7c66a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"List all configs","id":"a5553acb-c80c-4465-b7eb-4736bfa241f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/lists","description":"<p>List all available configurations</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","lists"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"b904e617-9fd5-4390-b8c4-eeb0c3070065","name":"List all configs","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"<http://localhost:8080/resources/lists/reservation-status>\n        a       <http://memorix.io/ontology#List> ;\n        <http://memorix.io/ontology#defaultValue>\n                <http://localhost:8080/resources/vocabularies/concepts/86a9810b-7250-4027-b3df-342d57eff908> ;\n        <http://memorix.io/ontology#useConceptScheme>\n                <http://localhost:8080/resources/vocabularies/conceptschemes/de42959e-5e95-4fbd-93b2-de6fe38b015f> .\n"},"url":"https://test.memorix.io/resources/lists"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a5553acb-c80c-4465-b7eb-4736bfa241f1"},{"name":"List single configuration","id":"99a822a1-69d6-4507-9ec5-b3e41cf0707b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/lists/{{ListId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","lists","{{ListId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"ec827b4a-00c2-4527-8747-947d1c06cd97","name":"List single configuration","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n\n\n<http://localhost:8080/resources/lists/reservation-status>\n        a                         memorix:List ;\n        memorix:defaultValue      <http://localhost:8080/resources/vocabularies/concepts/86a9810b-7250-4027-b3df-342d57eff908> ;\n        memorix:useConceptScheme  <http://localhost:8080/resources/vocabularies/conceptschemes/de42959e-5e95-4fbd-93b2-de6fe38b015f> .\n\n<http://localhost:8080/resources/vocabularies/concepts/801d9bf6-9830-4e33-8083-02abbc2c3752>\n        a                  skos:Concept ;\n        memorix:audience   memorix:audienceExternal ;\n        skos:inScheme      <http://localhost:8080/resources/vocabularies/conceptschemes/de42959e-5e95-4fbd-93b2-de6fe38b015f> ;\n        skos:prefLabel     \"Fr. Denisha Marquardt Toy\"@en ;\n        skos:scopeNote     \"You know, this is great guys. Drinking and eating garbage. I'm glad we all took a mental health day.\" ;\n        skos:topConceptOf  <http://localhost:8080/resources/vocabularies/conceptschemes/de42959e-5e95-4fbd-93b2-de6fe38b015f> .\n"},"url":"https://test.memorix.io/resources/lists/{{ListId}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"99a822a1-69d6-4507-9ec5-b3e41cf0707b"},{"name":"Update list configuration","id":"75169b7c-0741-4b18-b83e-a8dea8cc0656","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/lists/{{ListId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","lists","{{ListId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"66a5af3b-baef-46c6-b79a-3f05a3d5ab01","name":"Update list configuration","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/turtle","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix xsd:           <http://www.w3.org/2001/XMLSchema#> .\n@prefix memorix:       <http://memorix.io/ontology#> .\n@prefix schema:        <https://schema.org/> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n\n</resources/lists/reservation-status>\n    a         schema:List ;\n    memorix:useConceptScheme </resources/vocabularies/conceptschemes/de42959e-5e95-4fbd-93b2-de6fe38b015f> ;\n    memorix:defaultValue </resources/vocabularies/concepts/86a9810b-7250-4027-b3df-342d57eff908> ;\n.\n"},"url":"https://test.memorix.io/resources/lists/{{ListId}}"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"75169b7c-0741-4b18-b83e-a8dea8cc0656"}],"id":"65b9dd46-4636-4d9d-8262-4548b8a9ade2","description":"<p>List configuration to link concept schemes to parts in the application where dynamic lists are used.</p>\n","_postman_id":"65b9dd46-4636-4d9d-8262-4548b8a9ade2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Miscellaneous","item":[{"name":"Version","id":"e2747aa1-566c-4228-a221-d847d9919034","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://test.memorix.io/version","description":"<p>Fetches information about the API version.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["version"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"517c266b-7ef5-4810-8fbb-f23ea1f7e2ab","name":"Version","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/version"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"date","value":"Mon, 21 Feb 2022 21:52:14 GMT"},{"key":"content-type","value":"text/turtle"},{"key":"transfer-encoding","value":"chunked"},{"key":"content-encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix schema: <http://schema.org/> .\n@prefix xsd:    <http://www.w3.org/2001/XMLSchema#> .\n\n<http://memorix.io/ontology#API>\n        a                           schema:SoftwareApplication ;\n        schema:applicationCategory  <http://vocab.getty.edu/aat/300387372> ;\n        schema:creator              <https://picturae.com> ;\n        schema:dateModified         \"2022-02-18T19:45:00\"^^xsd:dateTime ;\n        schema:datePublished        \"2022-02-19T20:00:09\"^^xsd:dateTime ;\n        schema:name                 \"Memorix Nexus API\" ;\n        schema:version              \"22a0626d\" .\n"}],"_postman_id":"e2747aa1-566c-4228-a221-d847d9919034"},{"name":"Config","id":"21e0e4e6-04b4-4173-b1e2-4d96d5b46f6c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/config","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["config"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"21e0e4e6-04b4-4173-b1e2-4d96d5b46f6c"},{"name":"Statistics","id":"cf02495b-a4eb-4c98-842f-d2d07f53aa65","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[{"key":"Accept","value":"application/ld+json","type":"text"}],"url":"https://test.memorix.io/statistics","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["statistics"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"cd1fc473-a168-4a37-b248-416f541d61cc","name":"Statistics","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/ld+json","type":"text"}],"url":"https://test.memorix.io/statistics"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 23 Feb 2022 20:37:05 GMT"},{"key":"Server","value":"ktor-server-core/1.6.7"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"text/turtle"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix schema:  <http://schema.org/> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n\n</statistics/concept_schemes>\n        a                      schema:Collection ;\n        schema:additionalType  <http://www.w3.org/2004/02/skos/core#ConceptScheme> ;\n        schema:collectionSize  \"7\"^^xsd:int ;\n        schema:name            \"concept_schemes\" .\n\n</statistics/history>\n        a                      schema:Collection ;\n        schema:additionalType  memorix:History ;\n        schema:collectionSize  \"264749\"^^xsd:int ;\n        schema:name            \"history\" .\n\n</statistics/containers>\n        a                      schema:Collection ;\n        schema:additionalType  memorix:Thingy ;\n        schema:collectionSize  \"63\"^^xsd:int ;\n        schema:name            \"containers\" .\n\n</statistics/users>  a         schema:Collection ;\n        schema:additionalType  memorix:User ;\n        schema:collectionSize  \"3\"^^xsd:int ;\n        schema:name            \"users\" .\n\n</statistics/records>\n        a                      schema:Collection ;\n        schema:additionalType  memorix:Record ;\n        schema:collectionSize  \"27\"^^xsd:int ;\n        schema:name            \"records\" .\n\n</statistics/depots>  a        schema:Collection ;\n        schema:additionalType  memorix:Thingy ;\n        schema:collectionSize  \"4\"^^xsd:int ;\n        schema:name            \"depots\" .\n\n</statistics/collections>\n        a                      schema:Collection ;\n        schema:additionalType  memorix:Collection ;\n        schema:collectionSize  \"4\"^^xsd:int ;\n        schema:name            \"collections\" .\n\n</statistics/sets>  a          schema:Collection ;\n        schema:additionalType  memorix:Set ;\n        schema:collectionSize  \"1\"^^xsd:int ;\n        schema:name            \"sets\" .\n\n</statistics/recordtypes>\n        a                      schema:Collection ;\n        schema:additionalType  memorix:Recordtype ;\n        schema:collectionSize  \"4\"^^xsd:int ;\n        schema:name            \"recordtypes\" .\n\n</statistics/container_types>\n        a                      schema:Collection ;\n        schema:additionalType  memorix:Thingy ;\n        schema:collectionSize  \"3\"^^xsd:int ;\n        schema:name            \"container_types\" .\n\n</statistics/record_relations>\n        a                      schema:Collection ;\n        schema:additionalType  memorix:Thingy ;\n        schema:collectionSize  \"25\"^^xsd:int ;\n        schema:name            \"record_relations\" .\n\n</statistics/concepts>\n        a                      schema:Collection ;\n        schema:additionalType  <http://www.w3.org/2004/02/skos/core#Concept> ;\n        schema:collectionSize  \"584\"^^xsd:int ;\n        schema:name            \"concepts\" .\n\n</statistics>  a                schema:Itemlist ;\n        schema:itemListElement  </statistics/users> , </statistics/sets> , </statistics/container_types> , </statistics/history> , </statistics/concept_schemes> , </statistics/record_relations> , </statistics/containers> , </statistics/collections> , </statistics/recordtypes> , </statistics/records> , </statistics/depots> , </statistics/concepts> ;\n        schema:numberOfItems    \"12\"^^xsd:int .\n"}],"_postman_id":"cf02495b-a4eb-4c98-842f-d2d07f53aa65"}],"id":"469add47-1fc5-4975-94f4-050d793f86f2","_postman_id":"469add47-1fc5-4975-94f4-050d793f86f2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"OAI-PMH","item":[{"name":"List records","id":"27c66639-e468-4206-8d68-e0341391f45e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept":true,"user-agent":true,"accept-encoding":true}},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/oai-pmh?verb=ListRecords&until=2023-09-06T06:41:24.265116Z","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","oai-pmh"],"host":["https://test.memorix.io"],"query":[{"key":"verb","value":"ListRecords"},{"key":"until","value":"2023-09-06T06:41:24.265116Z"},{"disabled":true,"key":"resumptionToken","value":"eyJkZWxldGVkIjp0cnVlLCJmcm9tIjoiMjAyNS0wNi0wM1QxMzo1MDowN1oiLCJtZXRhZGF0YVByZWZpeCI6IlJERiJ9"},{"disabled":true,"key":"set","value":"recordType:File"},{"disabled":true,"key":"metadataPrefix","value":"rdf"},{"disabled":true,"key":"from","value":"2025-06-03T13:50:07Z"}],"variable":[]}},"response":[],"_postman_id":"27c66639-e468-4206-8d68-e0341391f45e"},{"name":"List identifiers","id":"403dc6cf-1bc9-4e70-8ee0-7933a37db00f","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"connection":true,"accept":true,"user-agent":true,"accept-encoding":true}},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/oai-pmh?verb=ListIdentifiers&from=2024-04-03T17:40:07Z&metadataPrefix=rdf","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","oai-pmh"],"host":["https://test.memorix.io"],"query":[{"key":"verb","value":"ListIdentifiers"},{"disabled":true,"key":"until","value":"2023-09-06T06:41:24.265116Z"},{"disabled":true,"key":"resumptionToken","value":"eyJsYXN0SWQiOiIwMDAwYTgyNC0wOGQ4LTRkODAtOTlhZi0zNGY0ZWU3ODAwODAiLCJkZWxldGVkIjpmYWxzZSwibWV0YWRhdGFQcmVmaXgiOiJSREYifQ=="},{"key":"from","value":"2024-04-03T17:40:07Z"},{"disabled":true,"key":"set","value":"recordType:File"},{"key":"metadataPrefix","value":"rdf"}],"variable":[]}},"response":[],"_postman_id":"403dc6cf-1bc9-4e70-8ee0-7933a37db00f"},{"name":"Get record","id":"c3f8b8d6-8e0c-4cc0-a16b-78ce853477e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/oai-pmh?verb=GetRecord&metadataPrefix=rdf&identifier=fe11f421-e9ca-43ac-9e34-249b15793b29","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","oai-pmh"],"host":["https://test.memorix.io"],"query":[{"key":"verb","value":"GetRecord"},{"key":"metadataPrefix","value":"rdf"},{"key":"identifier","value":"fe11f421-e9ca-43ac-9e34-249b15793b29"}],"variable":[]}},"response":[],"_postman_id":"c3f8b8d6-8e0c-4cc0-a16b-78ce853477e2"},{"name":"Identify","id":"14a37a01-293f-48d2-af05-9c96322150ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/oai-pmh?verb=Identify","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","oai-pmh"],"host":["https://test.memorix.io"],"query":[{"key":"verb","value":"Identify"}],"variable":[]}},"response":[],"_postman_id":"14a37a01-293f-48d2-af05-9c96322150ae"},{"name":"List metadataformats","id":"4b5bae33-3177-4169-8948-1e2ac549595a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/oai-pmh?verb=ListMetadataFormats","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","oai-pmh"],"host":["https://test.memorix.io"],"query":[{"key":"verb","value":"ListMetadataFormats"}],"variable":[]}},"response":[],"_postman_id":"4b5bae33-3177-4169-8948-1e2ac549595a"},{"name":"List sets","id":"b4265ee6-2d8a-45d0-b5f4-74bf6b41c6aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/oai-pmh?verb=ListSets","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","oai-pmh"],"host":["https://test.memorix.io"],"query":[{"key":"verb","value":"ListSets"}],"variable":[]}},"response":[],"_postman_id":"b4265ee6-2d8a-45d0-b5f4-74bf6b41c6aa"}],"id":"13df1ff3-251f-441a-a9e1-d503d9b4ec1b","_postman_id":"13df1ff3-251f-441a-a9e1-d503d9b4ec1b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Records","item":[{"name":"Actions","item":[{"name":"Change \"audience\" property of a Record to \"audienceInternal\"","event":[{"listen":"prerequest","script":{"id":"4a8c31c6-50ae-46a9-bdda-9cccfaba1d25","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"821585bc-3554-48e3-a899-16baaf8af488","exec":[""],"type":"text/javascript"}}],"id":"c9b502eb-5bd1-46e0-86fd-a49e8d5eab42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"setAudienceToInternal\",\n    \"params\": {\n        \"record_id\": \"\"\n    },\n    \"id\": 1234\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9b502eb-5bd1-46e0-86fd-a49e8d5eab42"},{"name":"Change \"audience\" property of a Record to \"audienceExternal\"","event":[{"listen":"prerequest","script":{"id":"3607180c-9880-42cd-9fb2-170fb45e663b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"74f8054d-e422-4217-a381-f31e2b4c63ad","exec":[""],"type":"text/javascript"}}],"id":"accab69c-44bb-46ef-ae34-64fb8f18e548","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"setAudienceToExternal\",\n    \"params\": {\n        \"record_id\": \"\"\n    },\n    \"id\": 1234\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"accab69c-44bb-46ef-ae34-64fb8f18e548"},{"name":"Move Record to Collection","event":[{"listen":"test","script":{"id":"ce7641ef-0907-41d7-b624-415f779369ad","exec":[""],"type":"text/javascript"}}],"id":"2e9bf618-7078-499f-9b4c-55975e2c65d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"moveToCollection\",\n    \"params\": {\n        \"record_id\": \"\",\n        \"collection_id\": \"\"\n    },\n    \"id\": 4321\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e9bf618-7078-499f-9b4c-55975e2c65d3"},{"name":"Link Asset to Record","id":"7bacd719-c0ac-4880-b655-1f6ef7ca74af","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"accept":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"jsonrpc\": \"2.0\",\r\n    \"method\": \"linkAssetToRecord\",\r\n    \"params\": {\r\n        \"record_id\": \"\",\r\n        \"asset_id\": \"\"\r\n    },\r\n    \"id\": 4231\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"61a649a2-8ff5-4b10-8893-99985fe803c7","name":"Link Asset with order and legacy ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"jsonrpc\": \"2.0\",\r\n    \"method\": \"linkAssetToRecord\",\r\n    \"params\": {\r\n        \"record_id\": \"\",\r\n        \"asset_id\": \"\",\r\n        \"order\": 3,\r\n        \"legacy_id\": \"aeb37df2-d9f9-4213-8032-d269e336482b\"\r\n    },\r\n    \"id\": 4231\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Mar 2023 09:51:35 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"109"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"result\": \"Asset with id 50 linked to record 4ef64122-de11-4727-b044-0ea29f3d4247\",\n    \"id\": 4231\n}"}],"_postman_id":"7bacd719-c0ac-4880-b655-1f6ef7ca74af"},{"name":"Unlink Asset from Record","id":"16eddf11-00d0-4fbc-857d-93f6e0f8247e","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"accept":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"jsonrpc\": \"2.0\",\r\n    \"method\": \"unlinkAssetFromRecord\",\r\n    \"params\": {\r\n        \"record_id\": \"\",\r\n        \"asset_id\": \"\"\r\n    },\r\n    \"id\": 4231\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"16eddf11-00d0-4fbc-857d-93f6e0f8247e"},{"name":"Unlink all Assets from Record","id":"efc7800c-b9e8-4fec-a914-b31868badbfd","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"content-type":true,"accept":true}},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"jsonrpc\": \"2.0\",\r\n    \"method\": \"unlinkAssetsFromRecord\",\r\n    \"params\": {\r\n        \"record_id\": \"\"\r\n    },\r\n    \"id\": 4231\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"efc7800c-b9e8-4fec-a914-b31868badbfd"},{"name":"Add Record to Project","event":[{"listen":"test","script":{"id":"ce7641ef-0907-41d7-b624-415f779369ad","exec":[""],"type":"text/javascript"}}],"id":"f284a2f2-cd8c-4884-9c21-e940f71fc93d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"addRecordToProject\",\n    \"params\": {\n        \"record_id\": \"\",\n        \"project_id\": \"{{ProjectId}}\"\n    },\n    \"id\": 4321\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"f284a2f2-cd8c-4884-9c21-e940f71fc93d"},{"name":"Set parent record","event":[{"listen":"test","script":{"id":"a344663f-8e6e-4ab5-8d9c-653dd502ccbe","exec":[""],"type":"text/javascript"}}],"id":"208467a8-8e9b-484b-878b-a4388d300275","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"setParentRecord\",\n    \"params\": {\n        \"record_id\": \"\",\n        \"parent_id\": \"{{ParentId}}\"\n    },\n    \"id\": 4321\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","description":"<p>Set a parent id to build a tree structure of records, use a null value for the parent id if you want to unlink the record.</p>\n<p>these are visible in the UI if the information component is configured on the recordtype.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>recordtypes:MyRecordtype\n    a                               memorix:Recordtype, sh:NodeShape ;\n    memorix:hasInformationComponent [ a memorix:TreePathComponent ;\n                                      memorix:hasRecordType recordtypes:Image, recordtypes:Person ;\n                                    ] ;\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"208467a8-8e9b-484b-878b-a4388d300275"},{"name":"Set parent records","event":[{"listen":"test","script":{"id":"a344663f-8e6e-4ab5-8d9c-653dd502ccbe","exec":[""],"type":"text/javascript"}}],"id":"2ad63190-92a5-4385-bffa-90144429b37f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"setParentRecords\",\n    \"params\": {\n        \"\"record_ids\" [\"\", \"{{RecordId2}}\"],\n        \"parent_id\": \"{{ParentId}}\"\n    },\n    \"id\": 4321\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","description":"<p>Set a parent id to build a tree structure of records, use a null value for the parent id if you want to unlink the record.</p>\n<p>these are visible in the UI if the information component is configured on the recordtype.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>recordtypes:MyRecordtype\n    a                               memorix:Recordtype, sh:NodeShape ;\n    memorix:hasInformationComponent [ a memorix:TreePathComponent ;\n                                      memorix:hasRecordType recordtypes:Image, recordtypes:Person ;\n                                    ] ;\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ad63190-92a5-4385-bffa-90144429b37f"},{"name":"Order records","event":[{"listen":"test","script":{"id":"a344663f-8e6e-4ab5-8d9c-653dd502ccbe","exec":[""],"type":"text/javascript"}}],"id":"446e5796-0a09-4906-8f47-ca73fbb352e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"setRecordsOrder\",\n    \"params\": {\n        \"order\": [\n            { \n                \"id\": \"155346b7-8806-43bf-90a5-56121229a4e1\",\n                \"order\": 0\n            },\n            { \n                \"id\": \"ab6eaf62-3d44-4f07-9ce1-5d8b886dbc0f\",\n                \"order\": 1\n            },\n            { \n                \"id\": \"346da356-b273-49d7-879a-c8b9015e8827\",\n                \"order\": 2\n            }\n        ]\n    },\n    \"id\": 4321\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","description":"<p>Order records is used to guarantee a persistent sort in \"Serie\" records within a \"Fonds\", correct ordering is the responsibility of the client, and is not intended for large amount of records to be sorted.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"446e5796-0a09-4906-8f47-ca73fbb352e5"},{"name":"Unlink Assets from Record by Asset Ids","id":"278a4a3e-87ec-446f-bdcd-9da55b9d9be3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"jsonrpc\": \"2.0\",\r\n    \"method\": \"unlinkAssetsFromRecordByIds\",\r\n    \"params\": {\r\n        \"record_id\": \"\",\r\n        \"asset_ids\": {{AssetIds}}\r\n    },\r\n    \"id\": 1234\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"278a4a3e-87ec-446f-bdcd-9da55b9d9be3"}],"id":"7437af08-857a-41ff-9553-e0a05eab0163","event":[{"listen":"prerequest","script":{"id":"181702ed-69c3-494f-9a1a-44e778b5b933","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"06de0068-f2a8-4e17-9028-ba5320c9a6c3","type":"text/javascript","exec":["pm.test(\"Response conforms to expected JSON-RPC structure\", Memorix.rpc.checkResponse(pm))","pm.test(\"Request/Response JSON-RPC ID match\", Memorix.rpc.checkId(pm))","pm.test(\"JSON-RPC Method exists\", Memorix.rpc.checkMethod(pm))","pm.test(\"Check JSON-RPC Parameters\", Memorix.rpc.checkMethodParameters(pm))",""]}}],"_postman_id":"7437af08-857a-41ff-9553-e0a05eab0163","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Search","item":[{"name":"Search all records","id":"f0defa6b-6f0d-4015-bb07-e398f6f4a8ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"facets\": [\n        {\n            \"name\": \"collection.title\",\n            \"field\": \"collection.title\",\n            \"minCount\": 0,\n            \"size\": 10,\n            \"order\": {\n                \"value\": \"asc\"\n            }\n        },\n        {\n            \"name\": \"recordType.title\",\n            \"field\": \"recordType.title\",\n            \"minCount\": 0,\n            \"order\": {\n                \"value\": \"asc\"\n            }\n        },\n        {\n            \"name\": \"createdBy\",\n            \"field\": \"createdBy\",\n            \"minCount\": 0,\n            \"order\": {\n                \"value\": \"asc\"\n            }\n        }\n    ],\n    \"query\": {\n        \"query\": \"a\",\n        \"type\": \"FullTextQuery\"\n    }\n}"},"url":"https://test.memorix.io/resources/search/records?page=1&perPage=25&lang=en&paginationType=page","description":"<p>When implementing the search API, please keep the following behavior in mind to ensure data consistency and expected UI results:</p>\n<ul>\n<li><p><strong>Custom Sorting is Ignored:</strong> When <strong>cursor-style pagination</strong> is active, any custom <code>sort</code> parameters will be overridden. The API defaults to its internal indexing order to maintain cursor integrity.</p>\n</li>\n<li><p><strong>Data Drift (Skipped Rows):</strong> If write operations (updates or inserts) occur simultaneously with a search request, the cursor position may shift. This can result in certain records being <strong>skipped</strong> or missed entirely during the scroll.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","search","records"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"description":{"content":"<p>Preferred language for returned searchable fields</p>\n","type":"text/plain"},"key":"lang","value":"en"},{"description":{"content":"<p>Set to cursor to iterate over all data</p>\n","type":"text/plain"},"key":"paginationType","value":"page"},{"disabled":true,"key":"next","value":"WyLKh8-d54-j5oGg4oei5KS54oG05JCE4pCd4ZCUXCLjgJzhm6bNsOC4gFx1MDAwMSIsMTY4NzQ1MDE4Mjc4MywiMzAzNzIwZGQtMzAzZC00NDQxLWIyMjItZjI3NDBhYjgxZjMwIl0="}],"variable":[]}},"response":[{"id":"1fa08c1a-a07a-488a-8dcf-cdee3618033e","name":"Search records with a field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"facets\": [\n        {\n            \"name\": \"collection.title\",\n            \"field\": \"collection.title\",\n            \"minCount\": 0,\n            \"size\": 10,\n            \"order\": {\n                \"value\": \"asc\"\n            }\n        },\n        {\n            \"name\": \"recordType.title\",\n            \"field\": \"recordType.title\",\n            \"minCount\": 0,\n            \"order\": {\n                \"value\": \"asc\"\n            }\n        }\n    ],\n    \"query\": {\n        \"queries\": [\n            {\n                \"query\": \"my full text query\",\n                \"type\": \"FullTextQuery\"\n            },\n            {\n                \"type\": \"OrQuery\",\n                \"queries\": [\n                    {\n                        \"type\": \"FieldQuery\",\n                        \"operator\": \"equals\",\n                        \"field\": \"All.all:title\",\n                        \"value\": \"my title term\"\n                    }\n                ]\n            }\n        ],\n        \"type\": \"AndQuery\"\n    },\n\t\"sort\": [\n\t\t{\n\t\t\t\"title\": \"asc\"\n\t\t}\n\t]\n}"},"url":{"raw":"https://test.memorix.io/resources/search/records?page=1&perPage=25&lang=en","host":["https://test.memorix.io"],"path":["resources","search","records"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"lang","value":"en","description":"Preferred language for returned searchable fields"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"80f17351-9e9f-405d-b17a-1a08870b330e","name":"Search record relations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"queries\": [\n            {\n                \"type\": \"FieldQuery\",\n                \"operator\": \"equals\",\n                \"field\": \"meta.relation.uri\",\n                \"value\": \"https://stadsarchiefamsterdam.memorix.io/resources/records/d19b08fb-e06c-790a-e053-b784100a3058\"\n            }\n        ],\n        \"type\": \"AndQuery\"\n    },\n    \"sort\": [\n        {\n            \"title\": \"asc\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/resources/search/records?page=1&perPage=25&lang=en","host":["https://test.memorix.io"],"path":["resources","search","records"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"lang","value":"en","description":"Preferred language for returned searchable fields"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"d14dee14-ed1f-4571-a387-b2f43c6cd226","name":"Search by record id's","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{    \n    \"query\": {        \n        \"type\": \"IdsQuery\",\n        \"ids\": [\"4b8f2872-bc21-48f7-95f9-cda0060c709f\"]\n    }\n}"},"url":{"raw":"https://test.memorix.io/resources/search/records?page=1&perPage=25&lang=en","host":["https://test.memorix.io"],"path":["resources","search","records"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"lang","value":"en","description":"Preferred language for returned searchable fields"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"e5c4bfd7-1e91-4c07-ac4a-1d3f1b9d6be8","name":"Iterate over all records with cursor","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"facets\": [\n        {\n            \"name\": \"collection.title\",\n            \"field\": \"collection.title\",\n            \"minCount\": 0,\n            \"size\": 10,\n            \"order\": {\n                \"value\": \"asc\"\n            }\n        },\n        {\n            \"name\": \"recordType.title\",\n            \"field\": \"recordType.title\",\n            \"minCount\": 0,\n            \"order\": {\n                \"value\": \"asc\"\n            }\n        },\n        {\n            \"name\": \"createdBy\",\n            \"field\": \"createdBy\",\n            \"minCount\": 0,\n            \"order\": {\n                \"value\": \"asc\"\n            }\n        }\n    ],\n    \"query\": {\n        \"query\": \"chuck\",\n        \"type\": \"FullTextQuery\"\n    },\n\t\"sort\": [\n\t\t{\n\t\t\t\"title\": \"asc\"\n\t\t}\n\t]\n}"},"url":{"raw":"https://test.memorix.io/resources/search/records?perPage=5&lang=en&paginationType=cursor&next=WzEuMCwxNzQ1ODQwNTAzNzI2XQ==","host":["https://test.memorix.io"],"path":["resources","search","records"],"query":[{"key":"perPage","value":"5"},{"key":"lang","value":"en","description":"Preferred language for returned searchable fields"},{"key":"paginationType","value":"cursor"},{"key":"next","value":"WzEuMCwxNzQ1ODQwNTAzNzI2XQ=="}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0dac5c07-13ad-47c4-8590-ab47ab7cf4fb","name":"Search records with regexp","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"query\": {\n    \"type\":\"FieldQuery\",\n    \"operator\":\"regexp\",\n    \"field\":\"Serie.serie:title\",\n    \"value\":\".*\"\n    },\n  \"facets\": [],\n  \"sort\": [\n    {\n      \"title\": \"asc\"\n    }\n  ]\n}\n\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/resources/search/records?page=1&perPage=25&lang=en","host":["https://test.memorix.io"],"path":["resources","search","records"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"lang","value":"en","description":"Preferred language for returned searchable fields"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"33621ed0-7c9b-466e-b3bd-72daf349ec9f","name":"Search records with wildcard","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"query\": {\n    \"type\":\"FieldQuery\",\n    \"operator\":\"wildcard\",\n    \"field\":\"Serie.serie:title\",\n    \"value\":\"a*e\"\n    },\n  \"facets\": [],\n  \"sort\": [\n    {\n      \"title\": \"asc\"\n    }\n  ]\n}\n"},"url":{"raw":"https://test.memorix.io/resources/search/records?page=1&perPage=25&lang=en","host":["https://test.memorix.io"],"path":["resources","search","records"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"lang","value":"en","description":"Preferred language for returned searchable fields"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0a80ba5e-c351-4443-a060-c6050710d653","name":"Search records with fuzzy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"query\": {\n    \"type\":\"FieldQuery\",\n    \"operator\":\"fuzzy\",\n    \"field\":\"Serie.serie:title\",\n    \"value\":\"Afhrodite\"\n    },\n  \"facets\": [],\n  \"sort\": [\n    {\n      \"title\": \"asc\"\n    }\n  ]\n}\n\n"},"url":{"raw":"https://test.memorix.io/resources/search/records?page=1&perPage=25&lang=en","host":["https://test.memorix.io"],"path":["resources","search","records"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"lang","value":"en","description":"Preferred language for returned searchable fields"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"59ebd2ea-2578-4148-b0bb-6e320293ca37","name":"Search record relations","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{    \n    \"query\": {\n        \"type\": \"FieldQuery\",\n        \"operator\": \"equals\",\n        \"field\": \"meta.relation.uri\",\n        \"value\": \"https://test.memorix.io/resources/records/9c44c5e9-1baf-48e6-9cf0-de1c795def99\"\n    }\t\n}"},"url":{"raw":"https://test.memorix.io/resources/search/records?page=1&perPage=25&lang=en","host":["https://test.memorix.io"],"path":["resources","search","records"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"lang","value":"en","description":"Preferred language for returned searchable fields"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f0defa6b-6f0d-4015-bb07-e398f6f4a8ea"},{"name":"Search fields","id":"5e4f9c07-a8d4-458e-bb90-40cb76b2a110","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"query\": \"\",\n        \"type\": \"FullTextQuery\"\n    }\n}"},"url":"https://test.memorix.io/resources/search/records/fields?lang=en","description":"<p>Search all fields to be used in an advanced search query, with type FieldQuery</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","search","records","fields"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>Preferred language for returned searchable fields</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[]}},"response":[],"_postman_id":"5e4f9c07-a8d4-458e-bb90-40cb76b2a110"}],"id":"ede24c52-edb7-4961-b45e-687ea6b6de59","_postman_id":"ede24c52-edb7-4961-b45e-687ea6b6de59","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"IIIF","item":[{"name":"Manifest Record","id":"7da4770b-3bdc-4fab-addc-88a0f37d2a11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records/media//iiif/3/manifest.json","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","media","","iiif","3","manifest.json"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"7da4770b-3bdc-4fab-addc-88a0f37d2a11"},{"name":"Info.json of asset","id":"4f62d14e-0611-4725-95f9-4096b363c5a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records/media//iiif/3//info.json","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","media","","iiif","3","","info.json"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f62d14e-0611-4725-95f9-4096b363c5a9"},{"name":"Get image","id":"4465251f-3e57-4f26-9954-872c3b74dfe0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records/media//iiif/3//full/max/0/default.jpg","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","media","","iiif","3","","full","max","0","default.jpg"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4465251f-3e57-4f26-9954-872c3b74dfe0"},{"name":"Get Manifest Chunk","id":"e2dc73cf-ee30-4d6a-a944-574516478720","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records/media//iiif/3/manifest/{{chunk}}.json","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","media","","iiif","3","manifest","{{chunk}}.json"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2dc73cf-ee30-4d6a-a944-574516478720"},{"name":"Get Collection","id":"715933ca-0bdf-411f-8fb2-f1beeb9ab1f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records/media//iiif/3/collection.json","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","media","","iiif","3","collection.json"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"715933ca-0bdf-411f-8fb2-f1beeb9ab1f2"}],"id":"b5815ed6-01d9-4629-92d3-5600d21d774e","_postman_id":"b5815ed6-01d9-4629-92d3-5600d21d774e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Assets","item":[{"name":"List assets of a record","id":"c642756b-f1f8-4b1b-8edb-4c4bbe193ee9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/records/{{recordId}}/assets?perPage=10&page=1","description":"<p>List files that are linked to the record, publicly accessible when files are public in the accessibility and rights.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","{{recordId}}","assets"],"host":["https://test.memorix.io"],"query":[{"key":"perPage","value":"10"},{"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"c642756b-f1f8-4b1b-8edb-4c4bbe193ee9"},{"name":"Get asset","id":"8bb5029c-d97a-456d-b5ea-624e0f8f35d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/records//assets/","description":"<p>Get information about a an asset that is linked to a record, publicly accessible when files are public in the accessibility and rights.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","","assets",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"8bb5029c-d97a-456d-b5ea-624e0f8f35d0"},{"name":"Search","id":"965a2f8a-41e1-491f-8c37-31b393ad7d6c","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/dam/search?offset=0&pageSize=10&query=.jp2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","dam","search"],"host":["https://test.memorix.io"],"query":[{"key":"offset","value":"0"},{"key":"pageSize","value":"10"},{"key":"query","value":".jp2"}],"variable":[]}},"response":[],"_postman_id":"965a2f8a-41e1-491f-8c37-31b393ad7d6c"},{"name":"List Folders","id":"303480c5-337e-476f-9480-6253c731b4e6","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/dam/folders?offset=0&pageSize=10","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","dam","folders"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"path","value":"/Edepot"},{"key":"offset","value":"0"},{"key":"pageSize","value":"10"}],"variable":[]}},"response":[{"id":"5d736b78-223b-4b77-9ea8-53a056150ff8","name":"List Folders","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text","disabled":true}],"url":{"raw":"https://test.memorix.io/resources/dam/folders?offset=0&pageSize=10","host":["https://test.memorix.io"],"path":["resources","dam","folders"],"query":[{"key":"path","value":"/Edepot","disabled":true},{"key":"offset","value":"0"},{"key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 08 Apr 2024 14:14:49 GMT"},{"key":"Server","value":"Ktor/2.3.8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 3,\n    \"entries\": [\n        {\n            \"uid\": \"361\",\n            \"title\": \"System\",\n            \"path\": \"/System\",\n            \"size\": 26130,\n            \"files\": 1,\n            \"subFolders\": 0\n        },\n        {\n            \"uid\": \"359\",\n            \"title\": \"More test\",\n            \"path\": \"/More test\",\n            \"size\": 0,\n            \"files\": 0,\n            \"subFolders\": 0\n        },\n        {\n            \"uid\": \"358\",\n            \"title\": \"Test\",\n            \"path\": \"/Test\",\n            \"size\": 0,\n            \"files\": 0,\n            \"subFolders\": 1\n        }\n    ]\n}"}],"_postman_id":"303480c5-337e-476f-9480-6253c731b4e6"},{"name":"Reorder all linked assets of a record","id":"7f39d71b-94b1-4356-93d2-6bbab0f88503","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://test.memorix.io/resources/records/{{recordId}}/assets/reorder","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","{{recordId}}","assets","reorder"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f39d71b-94b1-4356-93d2-6bbab0f88503"}],"id":"271682d6-3fcc-4d46-a78a-5c66df657984","_postman_id":"271682d6-3fcc-4d46-a78a-5c66df657984","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"List Context","event":[{"listen":"prerequest","script":{"id":"8ade115a-b8ef-4473-8f76-d0dc3328773c","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"514e1a47-2f44-4f02-8c8b-367eb382aca5","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'schema:CreateAction',","        'schema:UpdateAction',","        'memorix:Context'","    ]","    Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:Context');","    pm.collectionVariables.set(\"RecordId\", Memorix.path.basename(Memorix.path.dirname(Memorix.lastSeenIdentifier)))","});",""],"type":"text/javascript"}}],"id":"6d6bcdca-dd42-4280-b0d6-013bc6ba5a21","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"setId","value":"","description":"<p>Filter by memorix:Set</p>\n","type":"text","disabled":true},{"key":"collectionId","value":"","description":"<p>Filter by Collection</p>\n","type":"text","disabled":true},{"key":"recordtypeId","value":"","description":"<p>Filter by memorix:Recordtype</p>\n","type":"text","disabled":true},{"key":"orderBy","value":"created","description":"<p>Define property for ordering ('created' or 'modified')</p>\n","type":"text","disabled":true},{"key":"order","value":"asc","description":"<p>Type of ordering ('asc' or 'desc')</p>\n","type":"text","disabled":true},{"key":"limit","value":"25","description":"<p>Maximum number of items in the resultlist</p>\n","type":"text","disabled":true},{"key":"offset","value":"0","description":"<p>Offset for list of items, can be used for pagination</p>\n","type":"text","disabled":true}]},"url":"https://test.memorix.io/resources/records","description":"<p>This endpoint should mainly be used by 3rd party tools (e.g. OAI-PMH)\nIt is not a replacement for our readmodel/search API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Filter Records by Set ID</p>\n","type":"text/plain"},"key":"setId","value":""},{"disabled":true,"description":{"content":"<p>Filter Records by Collection ID</p>\n","type":"text/plain"},"key":"collectionId","value":""},{"disabled":true,"description":{"content":"<p>Filter Records by Recordtype ID</p>\n","type":"text/plain"},"key":"recordtypeId","value":"Organisation"},{"disabled":true,"description":{"content":"<p>Define property for ordering (one of created|modified)</p>\n","type":"text/plain"},"key":"orderBy","value":"modified"},{"disabled":true,"description":{"content":"<p>Change ordering Records (one of asc|desc, default asc)</p>\n","type":"text/plain"},"key":"order","value":"desc"},{"disabled":true,"description":{"content":"<p>Request number of items in resultlist. Maximums might be enforced by our backend.</p>\n","type":"text/plain"},"key":"perPage","value":"100"},{"disabled":true,"description":{"content":"<p>Request specific page of result set (offset by 1).</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>UTCdatetime encoded using ISO8601. Filters resources created or updated after or on a specific datetime.</p>\n","type":"text/plain"},"key":"from","value":""},{"disabled":true,"description":{"content":"<p>UTCdatetime encoded using ISO8601. Filters resources created or updated before or on a specific datetime.</p>\n","type":"text/plain"},"key":"until","value":""},{"disabled":true,"description":{"content":"<p>Filters records based on memroix:audience property, valid options are \"internal\" and \"external\"</p>\n","type":"text/plain"},"key":"audience","value":""},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[{"id":"91ca9391-5e6f-4220-b6bf-7e490426b1fe","name":"List Context","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/records","host":["https://test.memorix.io"],"path":["resources","records"],"query":[{"key":"setId","value":"","type":"text","description":"Filter Records by Set ID","disabled":true},{"key":"collectionId","value":"","type":"text","description":"Filter Records by Collection ID","disabled":true},{"key":"recordtypeId","value":"Organisation","type":"text","description":"Filter Records by Recordtype ID","disabled":true},{"key":"orderBy","value":"modified","type":"text","description":"Define property for ordering (one of created|modified)","disabled":true},{"key":"order","value":"desc","type":"text","description":"Change ordering Records (one of asc|desc, default asc)","disabled":true},{"key":"pageSize","value":"100","type":"text","description":"Request number of items in resultlist. Maximums might be enforced by our backend.","disabled":true},{"key":"currentPage","value":"1","type":"text","description":"Request specific page of result set (offset by 1).","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 24 Jun 2021 13:00:08 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix creativeWork: <http://0.0.0.0:8080/resources/records/3c11a804-c47f-4ef4-8336-4c973ae42ddb/context#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms:      <http://purl.org/dc/terms/> .\n@prefix event:        <http://0.0.0.0:8080/resources/records/852cddd0-d939-44cc-817e-8a05fe5a4ca8/context#> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix person:       <http://0.0.0.0:8080/resources/records/a1a4b703-9c76-444f-acfc-a828da5139f4/context#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:       <http://schema.org/> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\n<https://example.memorix.io/api/resources/records/e68011ec-0ce4-454d-bd3e-0d2d9fef18c0/context>\n        rdf:type             memorix:Context ;\n        memorix:audience     memorix:audienceInternal ;\n        memorix:hasRecord    <https://example.memorix.io/api/resources/records/e68011ec-0ce4-454d-bd3e-0d2d9fef18c0> ;\n        memorix:history      [ rdf:type         schema:CreateAction ;\n                               dcterms:created  \"2022-02-14T17:09:20.883271\"^^xsd:dateTime ;\n                               dcterms:creator  <https://example.memorix.io/api/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf>\n                             ] ;\n        dcterms:conformsTo   <https://example.memorix.io/api/resources/recordtypes/Event> ;\n        dcterms:description  \"Example Event\" ;\n        dcterms:identifier   \"e68011ec-0ce4-454d-bd3e-0d2d9fef18c0\" ;\n        dcterms:isPartOf     <https://example.memorix.io/api/resources/collections/d277ebd9-27b6-4fdc-8ea3-15f37bd855c9> ;\n        dcterms:title        \"Opening night\" .\n\n"}],"_postman_id":"6d6bcdca-dd42-4280-b0d6-013bc6ba5a21"},{"name":"Get single Record","event":[{"listen":"prerequest","script":{"id":"306f6d0d-5571-4bdd-8228-454a43cecef2","exec":[""],"type":"text/javascript"}}],"id":"d9a915e5-fb03-4ce2-a31f-8894fc8733b9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[{"key":"Accept","value":"application/ld+json","type":"text"}],"url":"https://test.memorix.io/resources/records/","description":"<p>Fetch a single <a href=\"https://api.memorix.io/ontology/#Record\">Record</a> (by ID)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"7245025f-274f-432c-856f-2657014d06fa","name":"Get single Record","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text","disabled":true}],"url":"https://test.memorix.io/resources/records/029ab07b-2b53-4c5f-90dd-ef36467a75b7"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 09:20:22 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix schema: <http://schema.org/> .\n@prefix records: <https://pic.memorix.io/resources/records/> .\n@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .\n@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix users: <https://pic.memorix.io/resources/users/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix collections: <https://pic.memorix.io/resources/collections/> .\n@prefix person: <https://example.memorix-test.nl/resources/recordtypes/Person#> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix dc:    <http://purl.org/dc/elements/1.1/> .\n\n<https://example.memorix-test.nl/resources/records/029ab07b-2b53-4c5f-90dd-ef36467a75b7>\n        rdf:type           memorix:Record , recordtypes:Person ;\n        person:birthEvent  [ rdf:type  person:BirthEvent ] ;\n        person:deathEvent  [ rdf:type  person:DeathEvent ] ;\n        person:firstName   \"Test record person\" .\n"}],"_postman_id":"d9a915e5-fb03-4ce2-a31f-8894fc8733b9"},{"name":"Create new Record","id":"29284a18-1d13-4178-9500-e64b2919cbf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rt: </resources/recordtypes/> .\n@prefix schema: <http://schema.org/> .\n@prefix item: </resources/recordtypes/Conway#> .\n@prefix vocabularies: </resources/vocabularies/conceptschemes/> .\n@prefix wde: <http://www.wikidata.org/entity/> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n\n</resources/records/CON_B00001_F001_001>\n  a memorix:Record, rt:Conway, schema:CreativeWork ;\n  schema:identifier \"CON_B00001_F001_001\" ;\n  schema:description \"View from north front and dome faience. Sides and back plain brick. Third quarter 15th century.\" ;\n  item:size_physical \"A4\" ;\n  schema:temporalCoverage \"Third quarter 15th. cent\" ;\n  item:zooniverse_subject_id 44396960 ;\n  schema:material vocabularies:1ff356b7-e8df-4ba8-96bb-f876563a2670 ;\n  item:numerical_metadata \"162663\", \"162664\", \"162665\", \"162666\" ;\n  schema:spatialCoverage [\n    a schema:Place ;\n    item:building \"Ziarat-i-Khwaya Abu Nasr Parsa (shrine)\" ;\n    schema:Country wde:Q889 ;\n    item:city_town \"Balkh\"\n  ] .\n\nvocabularies:1ff356b7-e8df-4ba8-96bb-f876563a2670 a skos:Concept .\nwde:Q889 a skos:Concept ."},"url":"https://test.memorix.io/resources/records?collectionId=5d4d6e7d-985d-409e-917a-1011bc512735","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Set the memorix:audience property to memorix:audienceExternal (defaults value for new Records is memorix:audienceInternal)</p>\n","type":"text/plain"},"key":"audienceExternal","value":"true"},{"disabled":true,"description":{"content":"<p>Set the id of the record to be created, will be auto generated if not provided</p>\n","type":"text/plain"},"key":"recordId","value":"3377bf36-7f5d-474e-ad09-33de2b56c000"},{"key":"collectionId","value":"5d4d6e7d-985d-409e-917a-1011bc512735"},{"disabled":true,"description":{"content":"<p>Optionally set a different record as parent</p>\n","type":"text/plain"},"key":"parentId","value":""}],"variable":[]}},"response":[{"id":"5548e99c-1c8e-4911-9b9a-8e3347041a8c","name":"Create new Record","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json+ld","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix person: <https://example.memorix-test.nl/resources/recordtypes/Person#> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n\n<>\n  rdf:type           memorix:Record , recordtypes:Person ;\n  person:firstName   \"John\" ; person:lastName \"Doe\" .\n"},"url":{"raw":"https://test.memorix.io/resources/records?collectionId=7ab7f004-3b89-4fe6-b805-723f52cecb79","host":["https://test.memorix.io"],"path":["resources","records"],"query":[{"key":"collectionId","value":"7ab7f004-3b89-4fe6-b805-723f52cecb79","description":"ID of collection in which record needs to be created (required)"},{"key":"audienceExternal","value":"true","description":"Set the memorix:audience property to memorix:audienceExternal (defaults value for new Records is memorix:audienceInternal)","disabled":true},{"key":"recordId","value":"","description":"Provide a Record ID to store this Record. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 27 Jun 2021 11:58:03 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"@id\": \"https://example.memorix-test.nl/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267\",\n    \"@type\": [\n        \"memorix:Record\",\n        \"recordtypes:Person\"\n    ],\n    \"firstName\": \"Johnny\",\n    \"lastName\": \"Doe\",\n    \"@context\": {\n        \"firstName\": {\n            \"@id\": \"https://example.memorix-test.nl/resources/recordtypes/Person#firstName\"\n        },\n        \"lastName\": {\n            \"@id\": \"https://example.memorix-test.nl/resources/recordtypes/Person#lastName\"\n        },\n        \"@vocab\": \"https://example.memorix-test.nl/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267/context#\",\n        \"schema\": \"http://schema.org/\",\n        \"memorix\": \"http://memorix.io/ontology#\",\n        \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n        \"person\": \"https://example.memorix-test.nl/resources/recordtypes/Person#\",\n        \"recordtypes\": \"https://example.memorix-test.nl/resources/recordtypes/\",\n        \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n        \"dcterms\": \"http://purl.org/dc/terms/\",\n        \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n        \"dc\": \"http://purl.org/dc/elements/1.1/\"\n    }\n}"},{"id":"a7702a55-550b-4c49-b0ac-62ab95389272","name":"Create Location Record","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json+ld","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix dash:         <http://datashapes.org/dash#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms:      <http://purl.org/dc/terms/> .\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\n@prefix location:     </resources/recordtypes/Location#> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:  </resources/recordtypes/> .\n@prefix schema:       <http://schema.org/> .\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies: </vocabularies/> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\n<>\n        rdf:type              memorix:Record , recordtypes:Location ;\n        location:bag          [ rdf:type          memorix:GeoCoordinates ;\n                                schema:latitude   \"52.64707265\" ;\n                                schema:longitude  \"4.7636088\" ;\n                                schema:name       \"Vlietwaard 106, 1824LB Alkmaar\" ;\n                                schema:sameAs     \"http://bag.basisregistraties.overheid.nl/bag/id/nummeraanduiding/0361200000037845\"\n                              ] ;\n        location:coordinates  [ rdf:type          memorix:GeoCoordinates ;\n                                schema:latitude   \"52.6470726\" ;\n                                schema:longitude  \"4.7636087\" ;\n                                schema:name       \"52.6470726, 4.7636087\"\n                              ] ;\n        location:title        \"Vlietwaard 106\" ."},"url":{"raw":"https://test.memorix.io/resources/records?collectionId=7ab7f004-3b89-4fe6-b805-723f52cecb79","host":["https://test.memorix.io"],"path":["resources","records"],"query":[{"key":"collectionId","value":"7ab7f004-3b89-4fe6-b805-723f52cecb79","description":"ID of collection in which record needs to be created (required)"},{"key":"audienceExternal","value":"true","description":"Set the memorix:audience property to memorix:audienceExternal (defaults value for new Records is memorix:audienceInternal)","disabled":true},{"key":"recordId","value":"","description":"Provide a Record ID to store this Record. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 27 Jun 2021 11:58:03 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"@id\": \"https://example.memorix-test.nl/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267\",\n    \"@type\": [\n        \"memorix:Record\",\n        \"recordtypes:Person\"\n    ],\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"@context\": {\n        \"firstName\": {\n            \"@id\": \"https://example.memorix-test.nl/resources/recordtypes/Person#firstName\"\n        },\n        \"lastName\": {\n            \"@id\": \"https://example.memorix-test.nl/resources/recordtypes/Person#lastName\"\n        },\n        \"@vocab\": \"https://example.memorix-test.nl/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267/context#\",\n        \"schema\": \"http://schema.org/\",\n        \"memorix\": \"http://memorix.io/ontology#\",\n        \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n        \"person\": \"https://example.memorix-test.nl/resources/recordtypes/Person#\",\n        \"recordtypes\": \"https://example.memorix-test.nl/resources/recordtypes/\",\n        \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n        \"dcterms\": \"http://purl.org/dc/terms/\",\n        \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n        \"dc\": \"http://purl.org/dc/elements/1.1/\"\n    }\n}"},{"id":"e368532e-7df3-45ce-a3c2-f4deab9718c8","name":"Create Person Record","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix person: </resources/recordtypes/Persoon#> .\n@prefix recordtypes: </resources/recordtypes/> .\n\n</resources/records/029ab07b-2b53-4c5f-90dd-ef36467a75b7>\n  rdf:type           memorix:Record , recordtypes:Persoon ;\n  person:firstName   \"John\" ; person:lastName \"Doe\" .\n"},"url":{"raw":"https://test.memorix.io/resources/records?collectionId=","host":["https://test.memorix.io"],"path":["resources","records"],"query":[{"key":"collectionId","value":"","description":"ID of collection in which record needs to be created (required)"},{"key":"audienceExternal","value":"true","description":"Set the memorix:audience property to memorix:audienceExternal (defaults value for new Records is memorix:audienceInternal)","disabled":true},{"key":"recordId","value":"","description":"Provide a Record ID to store this Record. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.","disabled":true}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"5de375e9-e605-47b3-8a16-2fcc4ae4dac6","name":"Create Series Record","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix fonds: </resources/recordtypes/Fonds#> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .\n@prefix records:     </resources/records/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n\n<>\n  rdf:type memorix:Record, recordtypes:Series ;\n  rico:identifier \"1\" ;\n  rico:name \"Stukken van algemene aard\" ;\n  rico:hasBeginningDate [\n    a rico:Date ;\n    rico:normalizedDateValue 19730000 ;\n    rico:expressedDate \"1973\" ;\n  ] ;\n  rico:hasEndDate [\n    a rico:Date ;\n    rico:normalizedDateValue 19770000 ;\n    rico:expressedDate \"1977\" ;\n  ] ;\n  rico:hasExtent [\n    a rico:Extent ;\n    rico:quantity 1 ;\n    rico:UnitOfMeasurement \"pak\" ;\n  ] ;\n  rico:isOrWasPartOf records:790f35f9-450d-4c93-ae6b-5007512d0777\n."},"url":{"raw":"https://test.memorix.io/resources/records?collectionId=b86b218b-fff7-4e85-8c86-31b2de90590f","host":["https://test.memorix.io"],"path":["resources","records"],"query":[{"key":"audienceExternal","value":"true","description":"Set the memorix:audience property to memorix:audienceExternal (defaults value for new Records is memorix:audienceInternal)","disabled":true},{"key":"recordId","value":"790f35f9-450d-4c93-ae6b-5007512d0777","description":"Provide a Record ID to store this Record. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.","disabled":true},{"key":"collectionId","value":"b86b218b-fff7-4e85-8c86-31b2de90590f"}]}},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 22 Jul 2021 08:13:56 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix :            <https://example.memorix-test.nl/resources/records/f956f142-7ebb-40b5-bffd-b9647ef11baf/context#> .\n@prefix dc:          <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms:     <http://purl.org/dc/terms/> .\n@prefix fonds:       <https://example.memorix-test.nl/resources/recordtypes/Fonds#> .\n@prefix memorix:     <http://memorix.io/ontology#> .\n@prefix rdf:         <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:        <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix records:     <https://example.memorix-test.nl/resources/records/> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix rico:        <https://www.ica.org/standards/RiC/ontology#> .\n@prefix schema:      <http://schema.org/> .\n@prefix series:      <https://example.memorix-test.nl/resources/recordtypes/Series#> .\n@prefix xsd:         <http://www.w3.org/2001/XMLSchema#> .\n\nrecords:f956f142-7ebb-40b5-bffd-b9647ef11baf\n        rdf:type               memorix:Record , recordtypes:Series ;\n        rico:hasBeginningDate  [ rdf:type                  rico:Date ;\n                                 rico:expressedDate        \"1973\" ;\n                                 rico:normalizedDateValue  19730000\n                               ] ;\n        rico:hasEndDate        [ rdf:type                  rico:Date ;\n                                 rico:expressedDate        \"1977\" ;\n                                 rico:normalizedDateValue  19770000\n                               ] ;\n        rico:hasExtent         [ rdf:type                rico:Extent ;\n                                 rico:UnitOfMeasurement  \"pak\" ;\n                                 rico:quantity           1\n                               ] ;\n        rico:identifier        \"1\" ;\n        rico:isOrWasPartOf     records:790f35f9-450d-4c93-ae6b-5007512d0777 ;\n        rico:name              \"Stukken van algemene aard\" .\n"},{"id":"c02ed7de-2ed9-4279-9ae2-e25bdab09620","name":"Create Fonds Record","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix fonds: </resources/recordtypes/Fonds#> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .\n@prefix records:     </resources/records/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n\n<>\n  rdf:type memorix:Record, recordtypes:Fonds ;\n  rico:hasOrHadIdentifier [ \n    a rico:Identifier ; \n    rico:textualValue \"1528\" ; \n    fonds:fondsNumberAddition \"A\" \n    ] ;\n  rico:name \"Archief van Wim Sinnige\" ;\n  rico:hasBeginningDate [\n    a fonds:DateOldest ;\n    rico:normalizedDateValue 19610000 ;\n    rico:expressedDate \"Ca. 1961\" ;\n  ] ;\n  rico:hasEndDate [\n    a fonds:DateYoungest ;\n    rico:normalizedDateValue 19850000 ;\n    rico:expressedDate \"1985, met hiaten\" ;\n  ] ;\n  rico:scopeAndContent \"Wim Sinnige was van 1970 tot 1980 gemeenteraadslid in Amsterdam voor de Partij van de Arbeid, waarvan enige tijd als fractievoorzitter. Van 1973 tot 1980 was hij Wethouder van Financiën. Ten tijde van de krakersrellen rond de Vondelstraat in maart 1980 was hij locoburgemeester. In mei 1980 trad hij af als wethouder. Van 1981 tot 1983 was hij voorzitter van de Raad voor de Kunst. In 1984 werd hij adviseur en in 1986 directeur van het Amsterdamse Muziektheater. Hij was voorzitter van STAD Radio Amsterdam, bekleedde bestuursfuncties bij Carré en de Stichting Gaudeamus en werd in 1990 voorzitter van de Nationale Commissie voor Bewustwording en Ontwikkelingssamenwerking (NCO). Het archief bevat met name stukken uit en betreffende zijn tijd als gemeenteraadslid voor de PvdA en Wethouder van Financiën.\" ;\n rico:hasCreator records:33d9f343-2fe3-4361-9d5e-85788d3dd94a ;\n# rico:isOrWasUnderAuthorityOf records:57f9ec12-f09a-4420-9a0c-f48db42719b1 ;\n rico:isOrWasDescribedBy [\n   a fonds:FindingAid ;\n   rico:hasCreator records:bedf3c03-a229-4baa-972b-2f8716a39301 ;\n   rico:publicationDate 19960000 ;\n ] ;\n  ."},"url":{"raw":"https://test.memorix.io/resources/records?collectionId=b86b218b-fff7-4e85-8c86-31b2de90590f","host":["https://test.memorix.io"],"path":["resources","records"],"query":[{"key":"audienceExternal","value":"true","description":"Set the memorix:audience property to memorix:audienceExternal (defaults value for new Records is memorix:audienceInternal)","disabled":true},{"key":"recordId","value":"0780b4e6-9448-4337-99d7-f8b7d4cd11c7","description":"Provide a Record ID to store this Record. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.","disabled":true},{"key":"collectionId","value":"b86b218b-fff7-4e85-8c86-31b2de90590f"}]}},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 28 Jul 2021 06:54:55 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix :            <https://example.memorix-test.nl/resources/records/fa5e68a1-e299-420a-9da8-a32764f76a8f/context#> .\n@prefix dc:          <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms:     <http://purl.org/dc/terms/> .\n@prefix fonds:       <https://example.memorix-test.nl/resources/recordtypes/Fonds#> .\n@prefix memorix:     <http://memorix.io/ontology#> .\n@prefix rdf:         <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:        <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix records:     <https://example.memorix-test.nl/resources/records/> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix rico:        <https://www.ica.org/standards/RiC/ontology#> .\n@prefix schema:      <http://schema.org/> .\n@prefix xsd:         <http://www.w3.org/2001/XMLSchema#> .\n\nrecords:fa5e68a1-e299-420a-9da8-a32764f76a8f\n        rdf:type                 memorix:Record , recordtypes:Fonds ;\n        rico:hasBeginningDate    [ rdf:type                  fonds:DateOldest ;\n                                   rico:expressedDate        \"Ca. 1961\" ;\n                                   rico:normalizedDateValue  19610000\n                                 ] ;\n        rico:hasCreator          records:33d9f343-2fe3-4361-9d5e-85788d3dd94a ;\n        rico:hasEndDate          [ rdf:type                  fonds:DateYoungest ;\n                                   rico:expressedDate        \"1985, met hiaten\" ;\n                                   rico:normalizedDateValue  19850000\n                                 ] ;\n        rico:hasOrHadIdentifier  [ rdf:type                   rico:Identifier ;\n                                   fonds:fondsNumberAddition  \"A\" ;\n                                   rico:textualValue          \"1528\"\n                                 ] ;\n        rico:isOrWasDescribedBy  [ rdf:type              fonds:FindingAid ;\n                                   rico:publicationDate  19960000\n                                 ] ;\n        rico:name                \"Archief van Wim Sinnige\" ;\n        rico:scopeAndContent     \"Wim Sinnige was van 1970 tot 1980 gemeenteraadslid in Amsterdam voor de Partij van de Arbeid, waarvan enige tijd als fractievoorzitter. Van 1973 tot 1980 was hij Wethouder van Financiën. Ten tijde van de krakersrellen rond de Vondelstraat in maart 1980 was hij locoburgemeester. In mei 1980 trad hij af als wethouder. Van 1981 tot 1983 was hij voorzitter van de Raad voor de Kunst. In 1984 werd hij adviseur en in 1986 directeur van het Amsterdamse Muziektheater. Hij was voorzitter van STAD Radio Amsterdam, bekleedde bestuursfuncties bij Carré en de Stichting Gaudeamus en werd in 1990 voorzitter van de Nationale Commissie voor Bewustwording en Ontwikkelingssamenwerking (NCO). Het archief bevat met name stukken uit en betreffende zijn tijd als gemeenteraadslid voor de PvdA en Wethouder van Financiën.\" .\n"},{"id":"06071795-2983-425c-9f35-64fb80d803ee","name":"Create File Record","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix :            <https://example.memorix-test.nl/resources/records/9a16d3e1-8781-4ea4-9cfc-9753fe2293a9/context#> .\n@prefix dc:          <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms:     <http://purl.org/dc/terms/> .\n@prefix file:        <https://example.memorix-test.nl/resources/recordtypes/File#> .\n@prefix fonds:       <https://example.memorix-test.nl/resources/recordtypes/Fonds#> .\n@prefix memorix:     <http://memorix.io/ontology#> .\n@prefix rdf:         <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:        <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix records:     <https://example.memorix-test.nl/resources/records/> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix rico:        <https://www.ica.org/standards/RiC/ontology#> .\n@prefix schema:      <http://schema.org/> .\n@prefix xsd:         <http://www.w3.org/2001/XMLSchema#> .\n\nrecords:9a16d3e1-8781-4ea4-9cfc-9753fe2293a9\n        rdf:type                      recordtypes:File , memorix:Record ;\n        file:hasDigitalInstantiation  [ rdf:type                   file:DigitalInstantiation ;\n                                        file:locationDigitalFiles  \"In de filmkast\"\n                                      ] ;\n        file:hasFilmInstantiation     [ rdf:type         file:FilmInstantiation ;\n                                        rico:identifier  \"1234567abc\"\n                                      ] ;\n        rico:hasBeginningDate         [ rdf:type                  file:DateOldest ;\n                                        rico:normalizedDateValue  19730000\n                                      ] ;\n        rico:hasEndDate               [ rdf:type                  file:DateYoungest ;\n                                        rico:normalizedDateValue  19790000\n                                      ] ;\n        rico:hasExtent                [ rdf:type                rico:Extent ;\n                                        rico:UnitOfMeasurement  \"pak\" ;\n                                        rico:quantity           1\n                                      ] ;\n        rico:hasOrHadIdentifier       [ rdf:type           rico:Identifier ;\n                                        rico:textualValue  \"1\"\n                                      ] ;\n        rico:isOrWasPartOf            records:f956f142-7ebb-40b5-bffd-b9647ef11baf ;\n        rico:title                    \"Ingekomen en doorslagen en concepten van uitgegane stukken\" .\n"},"url":{"raw":"https://test.memorix.io/resources/records?collectionId=b86b218b-fff7-4e85-8c86-31b2de90590f","host":["https://test.memorix.io"],"path":["resources","records"],"query":[{"key":"audienceExternal","value":"true","description":"Set the memorix:audience property to memorix:audienceExternal (defaults value for new Records is memorix:audienceInternal)","disabled":true},{"key":"recordId","value":"0780b4e6-9448-4337-99d7-f8b7d4cd11c7","description":"Provide a Record ID to store this Record. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.","disabled":true},{"key":"collectionId","value":"b86b218b-fff7-4e85-8c86-31b2de90590f"}]}},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 28 Jul 2021 07:08:24 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix :            <https://example.memorix-test.nl/resources/records/1937d9af-ea88-43af-821b-b39ad8205e34/context#> .\n@prefix dc:          <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms:     <http://purl.org/dc/terms/> .\n@prefix file:        <https://example.memorix-test.nl/resources/recordtypes/File#> .\n@prefix fonds:       <https://example.memorix-test.nl/resources/recordtypes/Fonds#> .\n@prefix memorix:     <http://memorix.io/ontology#> .\n@prefix rdf:         <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:        <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix records:     <https://example.memorix-test.nl/resources/records/> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix rico:        <https://www.ica.org/standards/RiC/ontology#> .\n@prefix schema:      <http://schema.org/> .\n@prefix xsd:         <http://www.w3.org/2001/XMLSchema#> .\n\nrecords:1937d9af-ea88-43af-821b-b39ad8205e34\n        rdf:type                      recordtypes:File , memorix:Record ;\n        file:hasDigitalInstantiation  [ rdf:type                   file:DigitalInstantiation ;\n                                        file:locationDigitalFiles  \"In de filmkast\"\n                                      ] ;\n        file:hasFilmInstantiation     [ rdf:type         file:FilmInstantiation ;\n                                        rico:identifier  \"1234567abc\"\n                                      ] ;\n        rico:hasBeginningDate         [ rdf:type                  file:DateOldest ;\n                                        rico:normalizedDateValue  19730000\n                                      ] ;\n        rico:hasEndDate               [ rdf:type                  file:DateYoungest ;\n                                        rico:normalizedDateValue  19790000\n                                      ] ;\n        rico:hasExtent                [ rdf:type                rico:Extent ;\n                                        rico:UnitOfMeasurement  \"pak\" ;\n                                        rico:quantity           1\n                                      ] ;\n        rico:hasOrHadIdentifier       [ rdf:type           rico:Identifier ;\n                                        rico:textualValue  \"1\"\n                                      ] ;\n        rico:isOrWasPartOf            records:f956f142-7ebb-40b5-bffd-b9647ef11baf ;\n        rico:title                    \"Ingekomen en doorslagen en concepten van uitgegane stukken\" .\n"},{"id":"4d809c2f-6088-431a-a39e-d517d49b9020","name":"Create Deed Record","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix fonds: </resources/recordtypes/Fonds#> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .\n@prefix records:     </resources/records/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix deed: </resources/recordtypes/Deed#> .\n\n\n<>\n  rdf:type memorix:Record, recordtypes:Deed ;\n  rico:hasDocumentaryFormType \"doopakte\" ;\n  rico:isAssociatedWithEvent [\n    a deed:Event ;\n    rico:hasEventType \"doopdatum\" ;\n    deed:hasDate 18031206 ;\n  ] ;\n  deed:hasSource [\n    a deed:Source ;\n    deed:sourceIndexName  \"Index op doopregister\" ;\n    rico:isOrWasIncludedIn records:1937d9af-ea88-43af-821b-b39ad8205e34 ;\n    deed:sourceReference \"p.271(folio 135), nr.7\" ;\n  ] ;\n  rico:hasOrHadSubject [\n    a deed:Person ;\n    deed:personRole \"kind\" ;\n    deed:personObservation records:678fee9d-bbe7-48e1-935a-16ca6e07619a ;\n  ] ;\n  deed:location [\n    a deed:Location ;\n    deed:locationType \"kerk\" ;\n    deed:locationNameInSource \"Nieuwezijds Kapel\" ;\n  ] ;\n  ."},"url":{"raw":"https://test.memorix.io/resources/records?collectionId=9235f3c1-770a-4090-ae57-560fdf09453a","host":["https://test.memorix.io"],"path":["resources","records"],"query":[{"key":"audienceExternal","value":"true","description":"Set the memorix:audience property to memorix:audienceExternal (defaults value for new Records is memorix:audienceInternal)","disabled":true},{"key":"recordId","value":"0780b4e6-9448-4337-99d7-f8b7d4cd11c7","description":"Provide a Record ID to store this Record. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.","disabled":true},{"key":"collectionId","value":"9235f3c1-770a-4090-ae57-560fdf09453a"}]}},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 28 Jul 2021 11:45:48 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix :            <https://example.memorix-test.nl/resources/records/0a75db11-90f0-40d5-9581-d66972818e57/context#> .\n@prefix dc:          <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms:     <http://purl.org/dc/terms/> .\n@prefix deed:        <https://example.memorix-test.nl/resources/recordtypes/Deed#> .\n@prefix fonds:       <https://example.memorix-test.nl/resources/recordtypes/Fonds#> .\n@prefix memorix:     <http://memorix.io/ontology#> .\n@prefix rdf:         <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:        <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix records:     <https://example.memorix-test.nl/resources/records/> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix rico:        <https://www.ica.org/standards/RiC/ontology#> .\n@prefix schema:      <http://schema.org/> .\n@prefix xsd:         <http://www.w3.org/2001/XMLSchema#> .\n\nrecords:0a75db11-90f0-40d5-9581-d66972818e57\n        rdf:type                     memorix:Record , recordtypes:Deed ;\n        deed:hasSource               [ rdf:type                deed:Source ;\n                                       deed:sourceIndexName    \"Index op doopregister\" ;\n                                       deed:sourceReference    \"p.271(folio 135), nr.7\" ;\n                                       rico:isOrWasIncludedIn  records:1937d9af-ea88-43af-821b-b39ad8205e34\n                                     ] ;\n        deed:location                [ rdf:type                   deed:Location ;\n                                       deed:locationNameInSource  \"Nieuwezijds Kapel\" ;\n                                       deed:locationType          \"kerk\"\n                                     ] ;\n        rico:hasDocumentaryFormType  \"doopakte\" ;\n        rico:hasOrHadSubject         [ rdf:type                deed:Person ;\n                                       deed:personObservation  records:678fee9d-bbe7-48e1-935a-16ca6e07619a ;\n                                       deed:personRole         \"kind\"\n                                     ] ;\n        rico:isAssociatedWithEvent   [ rdf:type           deed:Event ;\n                                       deed:hasDate       18031206 ;\n                                       rico:hasEventType  \"doopdatum\"\n                                     ] .\n"}],"_postman_id":"29284a18-1d13-4178-9500-e64b2919cbf8"},{"name":"Modifiy existing Record","id":"ab3d390e-bd09-41f1-8515-f3232028a064","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix person: <https://example.memorix-test.nl/resources/recordtypes/Person#> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n\n<> a memorix:Record, recordtypes:Person ;\n   person:firstName   \"Mark\" ; person:lastName \"Lindeman\" .\n"},"url":"https://test.memorix.io/resources/records/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"62d3a487-5014-4cbc-8c4d-2467003332ff","name":"Modifiy existing Record","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix person: <https://example.memorix-test.nl/resources/recordtypes/Person#> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n\n<> a memorix:Record, recordtypes:Person ;\n   person:firstName   \"Mark\" ; person:lastName \"Lindeman\" .\n"},"url":"https://test.memorix.io/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 27 Jun 2021 12:03:51 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"@id\": \"https://example.memorix-test.nl/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267\",\n    \"@type\": [\n        \"memorix:Record\",\n        \"recordtypes:Person\"\n    ],\n    \"firstName\": \"Mark\",\n    \"lastName\": \"Lindeman\",\n    \"@context\": {\n        \"firstName\": {\n            \"@id\": \"https://example.memorix-test.nl/resources/recordtypes/Person#firstName\"\n        },\n        \"lastName\": {\n            \"@id\": \"https://example.memorix-test.nl/resources/recordtypes/Person#lastName\"\n        },\n        \"@vocab\": \"https://example.memorix-test.nl/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267/context#\",\n        \"memorix\": \"http://memorix.io/ontology#\",\n        \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n        \"person\": \"https://example.memorix-test.nl/resources/recordtypes/Person#\",\n        \"recordtypes\": \"https://example.memorix-test.nl/resources/recordtypes/\"\n    }\n}"}],"_postman_id":"ab3d390e-bd09-41f1-8515-f3232028a064"},{"name":"Modifiy existing record fields","id":"fcdd7e23-1399-4ae0-8b49-15e581ca4970","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"PATCH {{url}}/resources/records/{{recordId}}\n\nPREFIX fonds: </resources/recordtypes/Fonds#>\nPREFIX rec: </resources/records/>\n\nDELETE { rec:b554b4c5-8cce-41a6-8851-ee10c80d5092 fonds:id  ?val }\nINSERT { rec:b554b4c5-8cce-41a6-8851-ee10c80d5092 fonds:id  '12345' }\nWHERE { rec:b554b4c5-8cce-41a6-8851-ee10c80d5092 fonds:id ?val }\n"},"url":"https://test.memorix.io/resources/records/","description":"<p>Update one or multiple fields in a record datagraph through <a href=\"https://www.w3.org/TR/sparql11-http-rdf-update/#http-patch\">SPARQL</a>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"d8d5840d-cd62-427a-bd04-f4882d9cb490","name":"Modifiy existing Record","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix person: <https://example.memorix-test.nl/resources/recordtypes/Person#> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n\n<> a memorix:Record, recordtypes:Person ;\n   person:firstName   \"Mark\" ; person:lastName \"Lindeman\" .\n"},"url":"https://test.memorix.io/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 27 Jun 2021 12:03:51 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"@id\": \"https://example.memorix-test.nl/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267\",\n    \"@type\": [\n        \"memorix:Record\",\n        \"recordtypes:Person\"\n    ],\n    \"firstName\": \"Mark\",\n    \"lastName\": \"Lindeman\",\n    \"@context\": {\n        \"firstName\": {\n            \"@id\": \"https://example.memorix-test.nl/resources/recordtypes/Person#firstName\"\n        },\n        \"lastName\": {\n            \"@id\": \"https://example.memorix-test.nl/resources/recordtypes/Person#lastName\"\n        },\n        \"@vocab\": \"https://example.memorix-test.nl/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267/context#\",\n        \"memorix\": \"http://memorix.io/ontology#\",\n        \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n        \"person\": \"https://example.memorix-test.nl/resources/recordtypes/Person#\",\n        \"recordtypes\": \"https://example.memorix-test.nl/resources/recordtypes/\"\n    }\n}"}],"_postman_id":"fcdd7e23-1399-4ae0-8b49-15e581ca4970"},{"name":"Delete Record","id":"08d76645-66cc-43b7-8466-5daecbe3b42e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/records/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"3ee3f4ac-b8c4-4af6-ad94-18008c0a78c7","name":"Delete Record","originalRequest":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/records/18072cb7-ecdb-4421-b780-a8b1e4401267"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sun, 27 Jun 2021 12:05:24 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"08d76645-66cc-43b7-8466-5daecbe3b42e"},{"name":"Get context of a single Record","id":"ca14e4b3-b254-459a-b1b2-6a52f1fa9e3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/records//context","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","","context"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"b760276b-a626-41d6-aa69-07ffe01356bd","name":"Context of single record","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text","disabled":true}],"url":"https://test.memorix.io/resources/records/029ab07b-2b53-4c5f-90dd-ef36467a75b7/context"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 09:20:22 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix deed:    <https://example.memorix-test.nl/resources/records/deb631ac-3296-4352-88f4-dd750e30f071/context#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n\n<https://example.memorix-test.nl/resources/records/deb631ac-3296-4352-88f4-dd750e30f071/context>\n        rdf:type               memorix:Context ;\n        memorix:audience       memorix:audienceInternal ;\n        memorix:depotLocation  [ rdf:type                     memorix:DepotLocationComponent ;\n                                 memorix:depot                \"708c2219-2535-41c3-92ff-f062808d556d\" ;\n                                 memorix:depotContainerEnd    \"8dbfca97-7235-4cd4-ad6b-471117dd710e\" ;\n                                 memorix:depotContainerStart  \"a459dffa-dd91-40fd-a022-b415137fd0ab\"\n                               ] ;\n        memorix:depotLocation  [ rdf:type                     memorix:DepotLocationComponent ;\n                                 memorix:depot                \"e68f1653-9147-4968-b561-9eb0125df99d\" ;\n                                 memorix:depotContainerStart  \"27685a25-aa38-48a9-bda9-3cb49e418581\"\n                               ] ;\n        memorix:hasRecord      <https://example.memorix-test.nl/resources/records/deb631ac-3296-4352-88f4-dd750e30f071> ;\n        memorix:History        <https://example.memorix-test.nl/resources/records/deb631ac-3296-4352-88f4-dd750e30f071/history> ;\n        dcterms:created        \"2021-09-16T09:04:57.560343\"^^xsd:dateTime ;\n        dcterms:creator        <https://example.memorix-test.nl/resources/users/ecbd8021-efa6-440f-89b5-ad55bc991163> ;\n        dcterms:modified     \"2022-02-11T11:12:50.203328\"^^xsd:dateTime ;\n        dcterms:conformsTo     <https://example.memorix-test.nl/resources/recordtypes/Deed> ;\n        dcterms:description    \"\" ;\n        dcterms:identifier     \"deb631ac-3296-4352-88f4-dd750e30f071\" ;\n        dcterms:isPartOf       <https://example.memorix-test.nl/resources/collections/3e079d9c-e04d-4319-8d2c-ccea28590ce4> ;\n        dcterms:title          \"\" .\n"}],"_postman_id":"ca14e4b3-b254-459a-b1b2-6a52f1fa9e3b"},{"name":"Get History of single Record","id":"a66e26a5-2234-4d4d-bffa-9542327c4649","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records//history","description":"<p>Fetches <a href=\"http://memorix.io/ontology#history\">memorix:history</a> for a specific Record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","","history"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"6bc1dd47-051e-464e-adb3-9b8c885da7e4","name":"Get History of single Record","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/records//history"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Mon, 05 Jul 2021 14:12:45 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n@prefix users:   <https://example.memorix-test.nl/resources/users/> .\n@prefix history: <https://example.memorix-test.nl/resources/history/> .\n@prefix records: <https://example.memorix-test.nl/resources/records/> .\n\n## Used for POST requests on a Resource, only 1 of these per Resource:\nhistory:f34ab96b-81ae-4705-a22e-d71ac4bac809 a schema:AddAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n  schema:about memorix:Context ;\n  schema:object records:dd30bff4-dd9f-11eb-b97c-4b959609a1bc .\n\n## Used for PUT requests on a Resource:\nhistory:b3b4329a-dda0-11eb-acc9-d7d818391015 a schema:ReplaceAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n  schema:about memorix:Context ;\n  schema:object records:dd30bff4-dd9f-11eb-b97c-4b959609a1bc .\n\n## Used for RPC command on a Resource:\nhistory:b3b4329a-dda0-11eb-acc9-d7d818391015 a schema:UpdateAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n  schema:object records:dd30bff4-dd9f-11eb-b97c-4b959609a1bc ;\n  schema:about memorix:Context ;\n  schema:additionalType memorix:moveToCollection .\n\n## Used for DELETE requests on a Resource, only 1 of these per Resource:\nhistory:b879806e-dda0-11eb-8780-5b2ef4c12217 a schema:DeleteAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n  schema:about memorix:Context ;\n  schema:object records:dd30bff4-dd9f-11eb-b97c-4b959609a1bc .\n"}],"_postman_id":"a66e26a5-2234-4d4d-bffa-9542327c4649"},{"name":"Get relations of single record","id":"6d1ce2e3-2349-421f-9fae-8110a59379c5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept-encoding":true,"accept":true}},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/records/relations?iri=http://localhost:8080/resources/records/37ab2c64-0ea4-43d9-bc6a-3647f9d87cb8&page=1&perPage=1&order=asc","description":"<p>Get a list of all records that have a certain link.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","relations"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>repeatable</p>\n","type":"text/plain"},"key":"filter.collection","value":""},{"disabled":true,"description":{"content":"<p>repeatable</p>\n","type":"text/plain"},"key":"filter.type","value":""},{"key":"iri","value":"http://localhost:8080/resources/records/37ab2c64-0ea4-43d9-bc6a-3647f9d87cb8"},{"key":"page","value":"1"},{"key":"perPage","value":"1"},{"key":"order","value":"asc"},{"disabled":true,"key":"order","value":"desc"},{"disabled":true,"key":"orderBy","value":"collection"},{"disabled":true,"key":"orderBy","value":"record_type"},{"disabled":true,"key":"orderBy","value":"title"},{"disabled":true,"key":"paginationType","value":"cursor"},{"disabled":true,"key":"next","value":"WyJkZjRjOGM5MC05Mjc5LTRjODQtODJiYy1jY2NhOThmZjRiNmUiXQ=="}],"variable":[]}},"response":[{"id":"95350105-7d4e-4144-9f62-0308b58523f4","name":"Get relations of single record","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/records/relations?iri=https://test.memorix.io/resources/records/&perPage=10&page=1","host":["https://test.memorix.io"],"path":["resources","records","relations"],"query":[{"key":"iri","value":"https://test.memorix.io/resources/records/"},{"key":"perPage","value":"10"},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": \"001a928b-8609-4421-9f71-de5390e55651\",\n            \"title\": \"Chuck Norris can binary search unsorted data.\",\n            \"collection\": {\n                \"id\": \"001a928b-8609-4421-9f71-de5390e55652\",\n                \"title\": \"Afbeeldingen\"\n            },\n            \"recordType\":{\n                \"id\": \"Image\",\n                \"title\": \"Afbeelding\"\n            }\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 10,\n        \"total\": 1,\n        \"max\": null\n    }\n}\n"}],"_postman_id":"6d1ce2e3-2349-421f-9fae-8110a59379c5"},{"name":"Get Accessibility & Rights of single Record","id":"4d586c9d-2e79-4cae-84c5-d5ca5ca77991","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/records//accessibility_and_rights","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","","accessibility_and_rights"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"42bfe41e-0a02-421a-a67a-99ffc65652f2","name":"Get Accessibility & Rights of single Record","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://example.memorix.io/resources/records/382fea84-defd-11eb-a162-afd3c876a487/accessibility_and_rights"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix schema:  <http://schema.org/> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n@prefix users:   <https://example.memorix-test.nl/resources/users/> .\n@prefix records: <https://example.memorix-test.nl/resources/records/> .\n\n<https://example.memorix.io/resources/records/382fea84-defd-11eb-a162-afd3c876a487/accessibility_and_rights> a memorix:AccessibilityAndRightsComponent;\n    schema:conditionsOfAccess \"Public restriction, because of privacy reasons\";\n    memorix:hasContext records:382fea84-defd-11eb-a162-afd3c876a487 ;\n    memorix:restrictionsExpire \"2030-01-01\"^^xsd:date ;\n    memorix:accessModeReservation false ;\n    memorix:accessModeDownload true;\n    memorix:accessModeScanningOnDemand false;\n    memorix:attributionRequired true;\n    schema:copyrightHolder records:64890e0c-defe-11eb-a16f-53519f610260 ;\n    schema:copyrightNotice \"Copyright 2021 Jane Doe. Some Rights Reserved\" ;\n    schema:creditText \"Image created by Jane Doe <jane.doe@ex.com>\" ;\n    memorix:copyrightExpires \"2050-01-01\"^^xsd:date ;\n    schema:license <https://creativecommons.org/licenses/by-nc-nd/4.0/> ;\n    memorix:history [\n        rdf:type schema:AddAction ;\n        schema:startTime \"2021-07-07T10:47:11.556114\"^^xsd:dateTime ;\n        schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n    ] .\n    \n"}],"_postman_id":"4d586c9d-2e79-4cae-84c5-d5ca5ca77991"},{"name":"Modify existing Accessibility & Rights","id":"49e9d9df-e6ad-43d3-9b03-bef8fe861638","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/records//accessibility_and_rights","description":"<h2 id=\"publish-record\">Publish record</h2>\n<p>The record can be published through the `memorix:audience` predicate.</p>\n<p>Do not publish the record.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>memorix:audience memorix:AudienceInternal\n\n</code></pre><p>Publish the record.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>memorix:audience memorix:AudienceExternal\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","records","","accessibility_and_rights"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"98a88201-f576-4a6d-b0a4-efc05ebbf696","name":"Modify existing  Accessibility & Rights","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"text/turtle","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n\n</resources/records/bb44bef5-d74b-4bbe-a632-10caab8ed363/accessibility_and_rights>\n        rdf:type                       memorix:AccessibilityAndRightsComponent ;        \n        memorix:accessModeDownload     true ;\n        memorix:accessModeReservation  true ;\n        memorix:accessModeScanningOnDemand\n                true ;\n        memorix:attributionRequired    true ;\n        memorix:audience               memorix:AudienceExternal ;\n        memorix:conditionsOfAccess     \"some reason\" ;\n        memorix:copyrightExpires       \"2022-11-16\"^^xsd:date ;        \n        memorix:license                </resources/vocabularies/concepts/085c05f9-ce35-4387-9246-af88bfa73e09> ;\n        memorix:limitationOfAccess     </resources/vocabularies/concepts/6359b059-6ccd-425b-9727-4597b6682e5a> ;\n        memorix:limitationOfUse        </resources/vocabularies/concepts/9f0dabf4-e7c5-44de-8b50-51ecaca848c7> ;\n        memorix:physicallyAvailable    true ;\n        memorix:restrictionsExpire     \"2022-11-01\"^^xsd:date ;        \n        schema:copyrightHolder         </resources/records/a5325f5d-79d9-42bc-9a36-afbd45b4f05e> ;\n        schema:copyrightNotice         \"some notice\" .\n\n</resources/vocabularies/concepts/9f0dabf4-e7c5-44de-8b50-51ecaca848c7>\n        rdf:type  skos:Concept .\n\n</resources/records/a5325f5d-79d9-42bc-9a36-afbd45b4f05e>\n        rdf:type  </resources/recordtypes/Person> .\n\n</resources/vocabularies/concepts/6359b059-6ccd-425b-9727-4597b6682e5a>\n        rdf:type  skos:Concept .\n\n</resources/vocabularies/concepts/085c05f9-ce35-4387-9246-af88bfa73e09>\n        rdf:type  skos:Concept .\n"},"url":"https://test.memorix.io/resources/records//accessibility_and_rights"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n\n</resources/records/bb44bef5-d74b-4bbe-a632-10caab8ed363/accessibility_and_rights>\n        rdf:type                       memorix:AccessibilityAndRightsComponent ;        \n        memorix:accessModeDownload     true ;\n        memorix:accessModeReservation  true ;\n        memorix:accessModeScanningOnDemand\n                true ;\n        memorix:attributionRequired    true ;\n        memorix:audience               memorix:AudienceExternal ;\n        memorix:conditionsOfAccess     \"some reason\" ;\n        memorix:copyrightExpires       \"2022-11-16\"^^xsd:date ;        \n        memorix:license                </resources/vocabularies/concepts/085c05f9-ce35-4387-9246-af88bfa73e09> ;\n        memorix:limitationOfAccess     </resources/vocabularies/concepts/6359b059-6ccd-425b-9727-4597b6682e5a> ;\n        memorix:limitationOfUse        </resources/vocabularies/concepts/9f0dabf4-e7c5-44de-8b50-51ecaca848c7> ;\n        memorix:physicallyAvailable    true ;\n        memorix:restrictionsExpire     \"2022-11-01\"^^xsd:date ;        \n        schema:copyrightHolder         </resources/records/a5325f5d-79d9-42bc-9a36-afbd45b4f05e> ;\n        schema:copyrightNotice         \"some notice\" .\n\n</resources/vocabularies/concepts/9f0dabf4-e7c5-44de-8b50-51ecaca848c7>\n        rdf:type  skos:Concept .\n\n</resources/records/a5325f5d-79d9-42bc-9a36-afbd45b4f05e>\n        rdf:type  </resources/recordtypes/Person> .\n\n</resources/vocabularies/concepts/6359b059-6ccd-425b-9727-4597b6682e5a>\n        rdf:type  skos:Concept .\n\n</resources/vocabularies/concepts/085c05f9-ce35-4387-9246-af88bfa73e09>\n        rdf:type  skos:Concept .\n"}],"_postman_id":"49e9d9df-e6ad-43d3-9b03-bef8fe861638"}],"id":"a356cc19-7333-444e-bc32-8288b1255dfe","description":"<p>RDF Type: <a href=\"http://memorix.io/ontology#Record\">http://memorix.io/ontology#Record</a></p>\n<p>A Record contains descriptive information that must be handled as a unit.  Each Record has exactly one corresponding <a href=\"http://memorix.io/ontology#Context\">memorix:Context</a> which contains technical metadata about the Record, like modification history. A Record is related to it's Context by an <code>owl:ObjectProperty</code> \"<code>memorix:hasContext</code>\"</p>\n","_postman_id":"a356cc19-7333-444e-bc32-8288b1255dfe","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Recordtypes","item":[{"name":"Get single Recordtype","id":"3a1b3218-8d66-4b1a-bd5b-6c02b10aef00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"accept","value":"text/turtle"}],"url":"https://test.memorix.io/resources/recordtypes/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","recordtypes",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"f5d24852-f334-4cc8-9172-fe14d4e61e8d","name":"Get single Recordtype","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json+ld","type":"text"}],"url":"https://test.memorix.io/resources/recordtypes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Jul 2021 09:19:55 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"@graph\": [\n        {\n            \"@id\": \"_:b10\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Werkzame Periode\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"group\": \"person:lifeEventsGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"3.0\",\n            \"path\": \"person:period_of_activity\"\n        },\n        {\n            \"@id\": \"_:b11\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geboortedatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"order\": \"1.0\",\n            \"path\": \"person:birthDate\"\n        },\n        {\n            \"@id\": \"_:b12\",\n            \"editor\": \"dash:TextFieldEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geboorteplaats\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"1.0\",\n            \"path\": \"person:birthPlace\"\n        },\n        {\n            \"@id\": \"_:b13\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Postcode\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:contactZipCode\"\n        },\n        {\n            \"@id\": \"_:b14\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Soort relatie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"5.0\",\n            \"path\": \"person:relationType\"\n        },\n        {\n            \"@id\": \"_:b15\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Bibliografie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"4.0\",\n            \"path\": \"person:bibliography\"\n        },\n        {\n            \"@id\": \"_:b16\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Place\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:contactPlace\"\n        },\n        {\n            \"@id\": \"_:b17\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Identificatiekenmerk\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"5.0\",\n            \"path\": \"person:identifier\"\n        },\n        {\n            \"@id\": \"_:b18\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Overlijden Event\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Overlijden\"\n            },\n            \"class\": \"person:DeathEvent\",\n            \"group\": \"person:lifeEventsGroup\",\n            \"sh:maxCount\": 1,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"2.0\",\n            \"path\": \"person:deathEvent\"\n        },\n        {\n            \"@id\": \"_:b2\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Beschrijving\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"5.0\",\n            \"path\": \"person:descrtiption\"\n        },\n        {\n            \"@id\": \"_:b20\",\n            \"dash:singleLine\": true,\n            \"inTitleAt\": \"1.0\",\n            \"searchWeight\": \"3.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Voornaam\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:firstName\"\n        },\n        {\n            \"@id\": \"_:b21\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Telefoonnummer\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:contactPhone\"\n        },\n        {\n            \"@id\": \"_:b22\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Website\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:contactWebsite\"\n        },\n        {\n            \"@id\": \"_:b23\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Biografie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"3.0\",\n            \"path\": \"person:biography\"\n        },\n        {\n            \"@id\": \"_:b24\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Adres\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:contactAddress\"\n        },\n        {\n            \"@id\": \"_:b25\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geboorte Event\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geboorte\"\n            },\n            \"class\": \"person:BirthEvent\",\n            \"group\": \"person:lifeEventsGroup\",\n            \"sh:maxCount\": 1,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"1.0\",\n            \"path\": \"person:birthEvent\"\n        },\n        {\n            \"@id\": \"_:b26\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Relatie tussen personen\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Relatie\"\n            },\n            \"class\": \"person:Relation\",\n            \"group\": \"person:relationsGroup\",\n            \"sh:maxCount\": 10,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"5.0\",\n            \"path\": \"person:relation\"\n        },\n        {\n            \"@id\": \"_:b27\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Nationaliteit\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:nationality\"\n        },\n        {\n            \"@id\": \"_:b28\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Identiek aan (RKD Artists)\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"6.0\",\n            \"path\": \"person:sameAsRKDArtists\"\n        },\n        {\n            \"@id\": \"_:b29\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"E-mail\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:contactEmail\"\n        },\n        {\n            \"@id\": \"_:b3\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geslacht\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"2.0\",\n            \"path\": \"person:gender\"\n        },\n        {\n            \"@id\": \"_:b30\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Land\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"person:contactCountry\"\n        },\n        {\n            \"@id\": \"_:b31\",\n            \"inTitleAt\": \"2.0\",\n            \"searchWeight\": \"3.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Tussenvoegsel\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"2.0\",\n            \"path\": \"person:surnamePrefix\"\n        },\n        {\n            \"@id\": \"_:b32\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Alternatieve namen\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:identityGroup\",\n            \"sh:maxCount\": 5,\n            \"order\": \"4.0\",\n            \"path\": \"person:otherFormsOfName\"\n        },\n        {\n            \"@id\": \"_:b33\",\n            \"inTitleAt\": \"3.0\",\n            \"searchWeight\": \"3.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Achternaam\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"person:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"3.0\",\n            \"path\": \"person:lastName\"\n        },\n        {\n            \"@id\": \"_:b34\",\n            \"editor\": \"dash:TextFieldEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Overlijdensplaats\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"1.0\",\n            \"path\": \"person:deathPlace\"\n        },\n        {\n            \"@id\": \"_:b35\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Gerelateerd Persoon\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"6.0\",\n            \"path\": \"person:relatedPerson\"\n        },\n        {\n            \"@id\": \"_:b37\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Overlijdensdatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"order\": \"1.0\",\n            \"path\": \"person:deathDate\"\n        },\n        {\n            \"@id\": \"_:b4\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Locatie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"1.0\",\n            \"path\": \"person:activityLocation\"\n        },\n        {\n            \"@id\": \"_:b5\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Begindatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"order\": \"2.0\",\n            \"path\": \"person:activityStartDate\"\n        },\n        {\n            \"@id\": \"_:b6\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Einddatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"order\": \"3.0\",\n            \"path\": \"person:activityEndDate\"\n        },\n        {\n            \"@id\": \"_:b7\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Opmerking bij plaats werkzaamheid\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"3.0\",\n            \"path\": \"person:activityRemark\"\n        },\n        {\n            \"@id\": \"_:b9\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Plaatsen van werkzaamheid\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Plaats van werkzaamheid\"\n            },\n            \"class\": \"person:PlaceOfActivity\",\n            \"group\": \"person:lifeEventsGroup\",\n            \"sh:maxCount\": 10,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"4.0\",\n            \"path\": \"person:placeOfActivity\"\n        },\n        {\n            \"@id\": \"recordtypes:Person\",\n            \"@type\": [\n                \"memorix:Recordtype\",\n                \"sh:NodeShape\"\n            ],\n            \"defaultViewForRole\": \"dash:all\",\n            \"identifier\": \"Person\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Standaard Recordtype voor Personen\"\n            },\n            \"label\": [\n                {\n                    \"@language\": \"en\",\n                    \"@value\": \"Person\"\n                },\n                {\n                    \"@language\": \"nl\",\n                    \"@value\": \"Persoon\"\n                }\n            ],\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b20\",\n                \"_:b21\",\n                \"_:b22\",\n                \"_:b23\",\n                \"_:b18\",\n                \"_:b2\",\n                \"_:b13\",\n                \"_:b24\",\n                \"_:b9\",\n                \"_:b25\",\n                \"_:b26\",\n                \"_:b27\",\n                \"_:b28\",\n                \"_:b29\",\n                \"_:b15\",\n                \"_:b30\",\n                \"_:b17\",\n                \"_:b31\",\n                \"_:b32\",\n                \"_:b16\",\n                \"_:b3\",\n                \"_:b33\",\n                \"_:b10\"\n            ],\n            \"targetClass\": \"recordtypes:Person\"\n        },\n        {\n            \"@id\": \"person:BirthEvent\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b11\",\n                \"_:b12\"\n            ],\n            \"targetClass\": \"person:BirthEvent\"\n        },\n        {\n            \"@id\": \"person:DeathEvent\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b37\",\n                \"_:b34\"\n            ],\n            \"targetClass\": \"person:DeathEvent\"\n        },\n        {\n            \"@id\": \"person:PlaceOfActivity\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b4\",\n                \"_:b5\",\n                \"_:b6\",\n                \"_:b7\"\n            ],\n            \"targetClass\": \"person:PlaceOfActivity\"\n        },\n        {\n            \"@id\": \"person:Relation\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b14\",\n                \"_:b35\"\n            ],\n            \"targetClass\": \"person:Relation\"\n        },\n        {\n            \"@id\": \"person:contactInformationGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Contactinformatie\"\n            },\n            \"order\": \"9.0\"\n        },\n        {\n            \"@id\": \"person:descriptiveInformationGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Beschrijving\"\n            },\n            \"order\": \"2.0\"\n        },\n        {\n            \"@id\": \"person:identityGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Identiteit\"\n            },\n            \"order\": \"1.0\"\n        },\n        {\n            \"@id\": \"person:lifeEventsGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Levensloop\"\n            },\n            \"order\": \"3.0\"\n        },\n        {\n            \"@id\": \"person:relationsGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Relaties\"\n            },\n            \"order\": \"8.0\"\n        }\n    ],\n    \"@context\": {\n        \"order\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#order\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"label\": {\n            \"@id\": \"http://www.w3.org/2000/01/rdf-schema#label\"\n        },\n        \"rest\": {\n            \"@id\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest\",\n            \"@type\": \"@id\"\n        },\n        \"first\": {\n            \"@id\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#first\",\n            \"@type\": \"@id\"\n        },\n        \"path\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#path\",\n            \"@type\": \"@id\"\n        },\n        \"maxCount\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#maxCount\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\"\n        },\n        \"group\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#group\",\n            \"@type\": \"@id\"\n        },\n        \"datatype\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#datatype\",\n            \"@type\": \"@id\"\n        },\n        \"searchWeight\": {\n            \"@id\": \"http://memorix.io/ontology#searchWeight\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"editor\": {\n            \"@id\": \"http://datashapes.org/dash#editor\",\n            \"@type\": \"@id\"\n        },\n        \"targetClass\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#targetClass\",\n            \"@type\": \"@id\"\n        },\n        \"property\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#property\",\n            \"@type\": \"@id\"\n        },\n        \"ignoredProperties\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#ignoredProperties\",\n            \"@type\": \"@id\"\n        },\n        \"closed\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#closed\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\"\n        },\n        \"nodeKind\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#nodeKind\",\n            \"@type\": \"@id\"\n        },\n        \"class\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#class\",\n            \"@type\": \"@id\"\n        },\n        \"comment\": {\n            \"@id\": \"http://www.w3.org/2000/01/rdf-schema#comment\"\n        },\n        \"viewer\": {\n            \"@id\": \"http://datashapes.org/dash#viewer\",\n            \"@type\": \"@id\"\n        },\n        \"defaultViewForRole\": {\n            \"@id\": \"http://datashapes.org/dash#defaultViewForRole\",\n            \"@type\": \"@id\"\n        },\n        \"identifier\": {\n            \"@id\": \"http://purl.org/dc/elements/1.1/identifier\"\n        },\n        \"inTitleAt\": {\n            \"@id\": \"http://memorix.io/ontology#inTitleAt\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"singleLine\": {\n            \"@id\": \"http://datashapes.org/dash#singleLine\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\"\n        },\n        \"vocabularies\": \"https://example.memorix-test.nl/vocabularies/\",\n        \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n        \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n        \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n        \"memorix\": \"http://memorix.io/ontology#\",\n        \"sh\": \"http://www.w3.org/ns/shacl#\",\n        \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n        \"person\": \"https://example.memorix-test.nl/resources/recordtypes/Person#\",\n        \"recordtypes\": \"https://example.memorix-test.nl/resources/recordtypes/\",\n        \"html\": \"http://www.w3.org/1999/xhtml/\",\n        \"dash\": \"http://datashapes.org/dash#\",\n        \"dc\": \"http://purl.org/dc/elements/1.1/\"\n    }\n}"}],"_postman_id":"3a1b3218-8d66-4b1a-bd5b-6c02b10aef00"},{"name":"List Recordtypes","event":[{"listen":"test","script":{"id":"671354ca-b4be-4643-b260-eca13ee33cc1","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'schema:ItemList',","        'memorix:Recordtype'","    ]","    const id = Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:Recordtype');","    pm.collectionVariables.set(\"RecordtypeId\", Memorix.path.basename(Memorix.lastSeenIdentifier))","});",""],"type":"text/javascript"}}],"id":"6ba8b845-4ca4-47bd-8075-b2acdd85200b","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{"accept":true}},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/recordtypes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","recordtypes"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Filter by memorix:Set</p>\n","type":"text/plain"},"key":"setId","value":""},{"disabled":true,"description":{"content":"<p>Filter by memorix:Collection</p>\n","type":"text/plain"},"key":"collectionId","value":""}],"variable":[]}},"response":[{"id":"b54deaef-6469-4901-9435-4521da93aa0d","name":"List Recordtypes","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/resources/recordtypes","host":["https://test.memorix.io"],"path":["resources","recordtypes"],"query":[{"key":"setId","value":"","type":"text","disabled":true},{"key":"collectionId","value":"","type":"text","disabled":true},{"key":"orderBy","value":"created","type":"text","disabled":true},{"key":"order","value":"asc","type":"text","disabled":true},{"key":"currentPage","value":"1","type":"text","disabled":true},{"key":"pageSize","value":"100","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 09:20:40 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix schema: <http://schema.org/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<https://example.memorix-test.nl/resources/recordtypes/Image>\n        a                    memorix:Recordtype ;\n        dcterms:description  \"Beeldbankbeschrijvingen Stadsarchief Amsterdam@nl\" ;\n        dcterms:title        \"Afbeelding@nl\" ;\n        schema:isPartOf      <https://example.memorix-test.nl/resources/collections/cd6ee9f3-e869-4c8a-8639-49c9db427e43> .\n\n<https://example.memorix-test.nl/resources/recordtypes/All>\n        a                    memorix:Recordtype ;\n        dcterms:description  \"Recordtype with all possible fields\" ;\n        dcterms:title        \"All fields\" ;\n        schema:isPartOf      <https://example.memorix-test.nl/resources/collections/e66da3a5-f2f5-411a-8222-470118c89cda> , <https://example.memorix-test.nl/resources/collections/cd6ee9f3-e869-4c8a-8639-49c9db427e43> .\n\n<https://example.memorix-test.nl/resources/recordtypes/Person>\n        a                    memorix:Recordtype ;\n        dcterms:description  \"Standaard Recordtype voor Personen\" ;\n        dcterms:title        \"Person\" ;\n        schema:isPartOf      <https://example.memorix-test.nl/resources/collections/cd6ee9f3-e869-4c8a-8639-49c9db427e43> , <https://example.memorix-test.nl/resources/collections/7ab7f004-3b89-4fe6-b805-723f52cecb79> .\n\n<https://example.memorix-test.nl/resources/recordtypes#total>\n        a                     schema:ItemList ;\n        schema:numberOfItems  \"3\"^^xsd:int .\n"}],"_postman_id":"6ba8b845-4ca4-47bd-8075-b2acdd85200b"},{"name":"Delete Recordtype","id":"3c418672-6098-49ca-9c4c-c5e3b1cfb52d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/recordtypes/?cascade=true","description":"<p>As long as Memorix contains Records that are defined by the Recordtype you which to delete, you will get an error. If you are sure you still want to delete a Recordtype, you can use the cascade parameter, this will delete all those Records as well.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","recordtypes",""],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>Deletes all records defined by this Recordtype (!)</p>\n","type":"text/plain"},"key":"cascade","value":"true"}],"variable":[]}},"response":[{"id":"fd39334e-7702-4ec4-aab3-ee186fbfcf2e","name":"Delete Recordtype that still has Records","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://test.memorix.io/resources/recordtypes/","host":["https://test.memorix.io"],"path":["resources","recordtypes",""],"query":[{"key":"cascade","value":"true","description":"Deletes all records defined by this Recordtype (!)","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 27 Jun 2021 12:10:01 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"@graph\": [\n        {\n            \"@id\": \"_:b0\",\n            \"@type\": \"schema:Action\",\n            \"error\": \"_:b1\"\n        },\n        {\n            \"@id\": \"_:b1\",\n            \"additionalType\": \"https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404\",\n            \"description\": {\n                \"@language\": \"en\",\n                \"@value\": \"The recordtype Person has records\"\n            }\n        }\n    ],\n    \"@context\": {\n        \"error\": {\n            \"@id\": \"http://schema.org/error\",\n            \"@type\": \"@id\"\n        },\n        \"additionalType\": {\n            \"@id\": \"http://schema.org/additionalType\",\n            \"@type\": \"@id\"\n        },\n        \"description\": {\n            \"@id\": \"http://schema.org/description\"\n        },\n        \"schema\": \"http://schema.org/\"\n    }\n}"}],"_postman_id":"3c418672-6098-49ca-9c4c-c5e3b1cfb52d"},{"name":"Create new Recordtype","id":"6022bb99-7536-44ed-a1a9-9a6b5ae3362a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix bag:          <http://bag.basisregistraties.overheid.nl/def/bag#> .\r\n@prefix dash:         <http://datashapes.org/dash#> .\r\n@prefix dbpo:         <http://dbpedia.org/ontology/> .\r\n@prefix dc:           <http://purl.org/dc/terms/> .\r\n@prefix dce:          <http://purl.org/dc/elements/1.1/> .\r\n@prefix elo:          <http://erfgoedleiden.github.io/nexus-vocabulaire/def/vocab#> .\r\n@prefix foaf:         <http://xmlns.com/foaf/0.1/> .\r\n@prefix gn:           <http://www.geonames.org/ontology#> .\r\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\r\n@prefix memorix:      <http://memorix.io/ontology#> .\r\n@prefix persoon:      </resources/recordtypes/Persoon#> .\r\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\r\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\r\n@prefix recordtypes:  </resources/recordtypes/> .\r\n@prefix rico:         <https://www.ica.org/standards/RiC/ontology#> .\r\n@prefix schema:       <http://schema.org/> .\r\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\r\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\r\n@prefix vocabularies: </resources/vocabularies/conceptschemes/> .\r\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\r\npersoon:contactInformationGroup\r\n        rdf:type          sh:PropertyGroup;\r\n        rdfs:label        \"Contactinformatie\"@nl , \"Contact\"@en;\r\n        sh:order          5.0 .\r\npersoon:BirthEvent  rdf:type  sh:NodeShape;\r\n        sh:closed             true;\r\n        sh:ignoredProperties  ( rdf:type );\r\n        sh:property           [ rdfs:label            \"Geboortedatum\"@nl , \"Date of birth\"@en;\r\n                                dash:editor           memorix:DateEditor;\r\n        memorix:audience memorix:AudienceInternal;\r\n                                memorix:inSummaryAt   1.0;\r\n                                memorix:searchWeight  1.0;\r\n                                sh:datatype           xsd:integer;\r\n                                sh:order              1.0;\r\n                                sh:path               rico:birthDate\r\n                              ];\r\n        sh:property           [ rdfs:label            \"Geboorteplaats\"@nl , \"Place of birth\"@en;\r\n                                dash:editor           dash:TextFieldEditor;\r\n                                memorix:inSummaryAt   2.0;\r\n                                memorix:searchWeight  1.0;\r\n        memorix:audience memorix:AudienceInternal;\r\n                                sh:datatype           xsd:string;\r\n                                sh:order              2.0;\r\n                                sh:path               schema:addressLocality\r\n                              ];\r\n        sh:targetClass        persoon:BirthEvent .\r\npersoon:descriptiveInformationGroup\r\n        rdf:type          sh:PropertyGroup;\r\n        rdfs:label        \"Beschrijving\"@nl , \"Description\"@en;\r\n        sh:order          2.0 .\r\nrecordtypes:Persoon  rdf:type          sh:NodeShape , memorix:Recordtype;\r\n        rdfs:label                     \"Persoon\"@nl , \"Person\"@en;\r\n        dash:defaultViewForRole        dash:all;\r\n        memorix:copyrightHolderSource  true;\r\n        memorix:hasInformationComponent\r\n                [ rdf:type  memorix:DigitalAssetComponent ];\r\n        dce:identifier                 \"LeiPersoon\";\r\n        sh:closed                      true;\r\n        sh:description                 \"Standaard Recordtype voor Personen met uitbreidingen speciefiek voor Erfgoed Leiden\"@nl , \"Record type for Person - Erfgoed Leiden\"@en;\r\n        sh:ignoredProperties           ( rdf:type );\r\n        sh:property                    [ rdfs:label            \"Voornaam\"@nl , \"First name\"@en;\r\n                                         dash:singleLine       true;\r\n                                         memorix:inTitleAt     2.0;\r\n                                         memorix:searchWeight  3.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:description        \"Voornaam of initialen\"@nl;\r\n                                         sh:group              persoon:identityGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              1.0;\r\n                                         sh:path               schema:givenName\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"E-mail\"@nl , \"E-mail\"@en;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:group              persoon:contactInformationGroup;\r\n                                         sh:maxCount           5;\r\n                                         sh:order              4.0;\r\n                                         sh:path               schema:email\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Surname\"@en , \"Achternaam\"@nl;\r\n                                         memorix:inTitleAt     1.0;\r\n                                         memorix:searchWeight  3.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:description        \"Voor een getrouwde vrouw: neem de meisjesnaam\"@nl;\r\n                                         sh:group              persoon:identityGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              3.0;\r\n                                         sh:path               schema:familyName\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Tussenvoegsel\"@nl , \"Surname prefix\"@en;\r\n                                         memorix:inTitleAt     3.0;\r\n                                         memorix:searchWeight  3.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:description        \"Alle tussenvoegsels tussen voor- en achternaam. Een tussenvoegsel tussen onderdelen van de achternaam wordt opgenomen in 'Achternaam'.\"@nl;\r\n                                         sh:group              persoon:identityGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              2.0;\r\n                                         sh:path               dbpo:prefix\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Postcode\"@nl , \"Zip code\"@en;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:group              persoon:contactInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              2.0;\r\n                                         sh:path               schema:postalCode\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Plaats\"@nl , \"City\"@en;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:group              persoon:contactInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              2.5;\r\n                                         sh:path               schema:addressLocality\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Biography\"@en , \"Biografie\"@nl;\r\n                                         dash:editor           dash:TextAreaEditor;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:inSummaryAt   5.0;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:description        \"Korte levensbeschrijving van de persoon\"@nl;\r\n                                         sh:group              persoon:descriptiveInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              3.0;\r\n                                         sh:path               rico:history\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Remarks description\"@en , \"Opmerkingen beschrijving\"@nl;\r\n                                         dash:editor           dash:TextAreaEditor;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:description        \"Opmerkingen over de beschrijving die je in andere velden niet kwijt kunt.\"@nl;\r\n                                         sh:group              persoon:descriptiveInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              5.0;\r\n                                         sh:path               rico:generalDescription\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Website\"@nl , \"Website\"@en;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:group              persoon:contactInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              5.0;\r\n                                         sh:path               foaf:homepage\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Telefoonnummer\"@nl , \"Phone number\"@en;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:group              persoon:contactInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              6.0;\r\n                                         sh:path               schema:telephone\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Contactpersoon\"@nl , \"Contact\"@en;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:group              persoon:contactInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              0.5;\r\n                                         sh:path               schema:contactPoint\r\n                                       ];\r\n        sh:property                    [ rdfs:label               \"Identiek aan\"@nl , \"Is same as (external)\"@en;\r\n                                         dash:editor              memorix:VocabularyEditor;\r\n                                         memorix:conceptSchemeIn  ( <https://data.rkd.nl/rkdartists> <http://data.bibliotheken.nl/id/dataset/persons> <https://www.wikidata.org#entities-persons> );\r\n                                         memorix:searchWeight     1.0;\r\n                                         sh:class                 skos:Concept;\r\n                                         sh:description           \"Is identiek aan persoon in andere terminologiebron\"@nl , \"Is same as person in external vocabulary\"@en;\r\n                                         sh:group                 persoon:identityGroup;\r\n                                         sh:maxCount              1;\r\n                                         sh:nodeKind              sh:IRI;\r\n                                         sh:order                 6.0;\r\n                                         sh:path                  rico:isRelatedTo\r\n                                       ];\r\n        sh:property                    [ rdfs:label      \"Relation\"@en , \"Relatie\"@nl;\r\n                                         dash:viewer     dash:DetailsEditor;\r\n                                         sh:class        persoon:Relation;\r\n                                         sh:description  \"Relatie tussen personen\"@nl;\r\n                                         sh:group        persoon:relationsGroup;\r\n                                         sh:maxCount     10;\r\n                                         sh:nodeKind     sh:BlankNode;\r\n                                         sh:order        1.0;\r\n                                         sh:path         rico:isAgentAssociatedWithAgent\r\n                                       ];\r\n        sh:property                    [ rdfs:label        \"Birth\"@en , \"Geboorte\"@nl;\r\n                                         dash:viewer       dash:DetailsEditor;\r\n                                         sh:class          persoon:BirthEvent;\r\n                                         sh:description    \"Geboorte Event\"@nl;\r\n                                         sh:group          persoon:lifeEventsGroup;\r\n        memorix:audience memorix:AudienceInternal;\r\n                                         sh:maxCount       1;\r\n                                         sh:nodeKind       sh:BlankNode;\r\n                                         sh:order          1.0;\r\n                                         sh:path           rico:hasBirthDate\r\n                                       ];\r\n        sh:property                    [ rdfs:label        \"Rechten-afspraken\"@nl , \"Copyright Agreements\"@en;\r\n                                         dash:viewer       dash:DetailsEditor;\r\n                                         memorix:audience  memorix:AudienceInternal;\r\n                                         sh:class          persoon:RightsAgreement;\r\n                                         sh:group          persoon:managementGroup;\r\n                                         sh:maxCount       100;\r\n                                         sh:nodeKind       sh:BlankNode;\r\n                                         sh:order          1.0;\r\n                                         sh:path           rico:isAssociatedWithRule\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Alternatieve namen\"@nl , \"Alternate names\"@en;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:description        \"Andere namen waaronder de persoon bekend staat. Voorbeeld: Koningin Beatrix\"@nl;\r\n                                         sh:group              persoon:identityGroup;\r\n                                         sh:maxCount           100;\r\n                                         sh:order              4.0;\r\n                                         sh:path               schema:additionalName\r\n                                       ];\r\n        sh:property                    [ rdfs:label        \"Decease\"@en , \"Overlijden\"@nl;\r\n                                         dash:viewer       dash:DetailsEditor;\r\n                                         memorix:audience  memorix:AudienceInternal;\r\n                                         sh:class          persoon:DeathEvent;\r\n                                         sh:description    \"Overlijden Event\"@nl;\r\n                                         sh:group          persoon:lifeEventsGroup;\r\n                                         sh:maxCount       1;\r\n                                         sh:nodeKind       sh:BlankNode;\r\n                                         sh:order          2.0;\r\n                                         sh:path           rico:hasDeathDate\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Adres\"@nl , \"Address\"@en;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:group              persoon:contactInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              1.0;\r\n                                         sh:path               schema:streetAddress\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Bibliografie\"@nl , \"Bibliography\"@en;\r\n                                         dash:editor           dash:TextAreaEditor;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:description        \"Literatuur die verschenen is over de persoon, zijn werkzaamheden, plaats van werkzaamheid, etc\"@nl;\r\n                                         sh:group              persoon:descriptiveInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              4.0;\r\n                                         sh:path               schema:citation\r\n                                       ];\r\n        sh:property                    [ rdfs:label            \"Opmerkingen beschrijving (oud)\"@nl , \"Remarks description (old)\"@en;\r\n                                         dash:editor           dash:TextAreaEditor;\r\n                                         memorix:audience      memorix:AudienceInternal;\r\n                                         memorix:hidden        true;\r\n                                         memorix:searchWeight  1.0;\r\n                                         sh:datatype           xsd:string;\r\n                                         sh:description        \"Opmerkingen over de beschrijving die je in andere velden niet kwijt kunt.\"@nl;\r\n                                         sh:group              persoon:descriptiveInformationGroup;\r\n                                         sh:maxCount           1;\r\n                                         sh:order              5.0;\r\n                                         sh:path               rico:descriptiveNote\r\n                                       ];\r\n        sh:property                    [ rdfs:label        \"Opmerkingen beheer\"@nl , \"Remarks Management\"@en;\r\n                                         dash:editor       dash:TextAreaEditor;\r\n                                         memorix:audience  memorix:AudienceInternal;\r\n                                         sh:datatype       xsd:string;\r\n                                         sh:group          persoon:managementGroup;\r\n                                         sh:maxCount       1;\r\n                                         sh:order          9.0;\r\n                                         sh:path           elo:opmerkingBeheerder\r\n                                       ];\r\n        sh:property                    [ rdfs:label               \"Gender\"@en , \"Geslacht\"@nl;\r\n                                         dash:editor              memorix:VocabularyEditor;\r\n                                         memorix:audience         memorix:AudienceInternal;\r\n                                         memorix:conceptSchemeIn  ( vocabularies:c626c572-43bd-3908-a868-4eb336067a22 );\r\n                                         memorix:searchWeight     1.0;\r\n                                         sh:class                 skos:Concept;\r\n                                         sh:group                 persoon:descriptiveInformationGroup;\r\n                                         sh:maxCount              1;\r\n                                         sh:nodeKind              sh:IRI;\r\n                                         sh:order                 2.0;\r\n                                         sh:path                  schema:gender\r\n                                       ];\r\n        sh:targetClass                 recordtypes:Persoon .\r\npersoon:RightsAgreement\r\n        rdf:type              sh:NodeShape;\r\n        sh:closed             true;\r\n        sh:ignoredProperties  ( rdf:type );\r\n        sh:property           [ rdfs:label      \"order\"@en;\r\n                                memorix:hidden  true;\r\n                                sh:datatype     xsd:integer;\r\n                                sh:description  \"This field is required for persistent order of group items\";\r\n                                sh:maxCount     1;\r\n                                sh:minCount     1;\r\n                                sh:order        0.0;\r\n                                sh:path         memorix:order\r\n                              ];\r\n        sh:property           [ rdfs:label               \"Copyright statement\"@en , \"Auteursrechtverklaring\"@nl;\r\n                                dash:editor              memorix:VocabularyEditor;\r\n                                memorix:conceptSchemeIn  ( vocabularies:6748399b-c445-3823-82a8-c7b7f72b1a17 );\r\n                                sh:class                 skos:Concept;\r\n                                sh:description           \"Rechtenset zoals in de auteursrechtenlicentie met de rechthebbende is vastgelegd\"@nl;\r\n                                sh:maxCount              1;\r\n                                sh:nodeKind              sh:IRI;\r\n                                sh:order                 1.0;\r\n                                sh:path                  rico:conditionsOfUse\r\n                              ];\r\n        sh:property           [ rdfs:label            \"Opmerking rechten-afspraken\"@nl , \"Remarks copyright\"@en;\r\n                                dash:editor           dash:TextAreaEditor;\r\n                                memorix:searchWeight  1.0;\r\n                                sh:datatype           xsd:string;\r\n                                sh:order              2.0;\r\n                                sh:path               rico:generalDescription\r\n                              ];\r\n        sh:property           [ rdfs:label            \"Opmerking rechten-afspraken (oud)\"@nl , \"Remarks copyright (old)\"@en;\r\n                                dash:editor           dash:TextAreaEditor;\r\n                                memorix:audience      memorix:AudienceInternal;\r\n                                memorix:hidden        true;\r\n                                memorix:searchWeight  1.0;\r\n                                sh:datatype           xsd:string;\r\n                                sh:order              2.0;\r\n                                sh:path               rico:descriptiveNote\r\n                              ];\r\n        sh:targetClass        persoon:RightsAgreement .\r\npersoon:relationsGroup\r\n        rdf:type    sh:PropertyGroup;\r\n        rdfs:label  \"Relaties\"@nl , \"Relations\"@en;\r\n        sh:order    4.0 .\r\npersoon:lifeEventsGroup\r\n        rdf:type          sh:PropertyGroup;\r\n        rdfs:label        \"Levensloop\"@nl , \"Lifecycle\"@en;\r\n        sh:order          3.0 .\r\npersoon:managementGroup\r\n        rdf:type    sh:PropertyGroup;\r\n        rdfs:label  \"Beheer\"@nl , \"Management\"@en;\r\n        sh:order    6.0 .\r\npersoon:DeathEvent  rdf:type  sh:NodeShape;\r\n        sh:closed             true;\r\n        sh:ignoredProperties  ( rdf:type );\r\n        sh:property           [ rdfs:label            \"Overlijdensdatum\"@nl , \"Date of death\"@en;\r\n                                dash:editor           memorix:DateEditor;\r\n                                memorix:audience      memorix:AudienceInternal;\r\n                                memorix:inSummaryAt   3.0;\r\n                                memorix:searchWeight  1.0;\r\n                                sh:datatype           xsd:integer;\r\n                                sh:order              1.0;\r\n                                sh:path               rico:deathDate\r\n                              ];\r\n        sh:property           [ rdfs:label            \"Overlijdensplaats\"@nl , \"Place of death\"@en;\r\n                                dash:editor           dash:TextFieldEditor;\r\n                                memorix:audience      memorix:AudienceInternal;\r\n                                memorix:inSummaryAt   4.0;\r\n                                memorix:searchWeight  1.0;\r\n                                sh:datatype           xsd:string;\r\n                                sh:order              2.0;\r\n                                sh:path               schema:addressLocality\r\n                              ];\r\n        sh:targetClass        persoon:DeathEvent .\r\npersoon:Relation  rdf:type    sh:NodeShape;\r\n        sh:closed             true;\r\n        sh:ignoredProperties  ( rdf:type );\r\n        sh:property           [ rdfs:label      \"order\"@en;\r\n                                memorix:hidden  true;\r\n                                sh:datatype     xsd:integer;\r\n                                sh:description  \"This field is required for persistent order of group items\";\r\n                                sh:maxCount     1;\r\n                                sh:minCount     1;\r\n                                sh:order        0.0;\r\n                                sh:path         memorix:order\r\n                              ];\r\n        sh:property           [ rdfs:label               \"Type of relationship\"@en , \"Relatietype\"@nl;\r\n                                dash:editor              memorix:VocabularyEditor;\r\n                                memorix:audience         memorix:AudienceInternal;\r\n                                memorix:conceptSchemeIn  ( vocabularies:986038cb-798b-3c94-9791-ac6ecd5cafe4 );\r\n                                memorix:searchWeight     1.0;\r\n                                sh:class                 skos:Concept;\r\n                                sh:description           \"Voorbeeld: als je in dit record de ELO-medewerker 'Jan Lagas' beschrijft, is het relatietype 'Rechthebbende' en de relatie 'Erfgoed Leiden'\"@nl;\r\n                                sh:nodeKind              sh:IRI;\r\n                                sh:order                 1.0;\r\n                                sh:path                  rico:hasContentOfType\r\n                              ];\r\n        sh:property           [ rdfs:label            \"Relatie\"@nl , \"Related Person/Organization\"@en;\r\n                                dash:editor           memorix:LinkedRecordEditor;\r\n                                memorix:audience      memorix:AudienceInternal;\r\n                                memorix:searchWeight  1.0;\r\n                                sh:nodeKind           sh:IRI;\r\n                                sh:or                 ( [ sh:class  recordtypes:Persoon ]\r\n                                                        [ sh:class  recordtypes:Organisatie ]\r\n                                                      );\r\n                                sh:order              2.0;\r\n                                sh:path               rico:isRelatedTo\r\n                              ];\r\n        sh:targetClass        persoon:Relation .\r\npersoon:identityGroup\r\n        rdf:type    sh:PropertyGroup;\r\n        rdfs:label  \"Identiteit\"@nl , \"Identity\"@en;\r\n        sh:order    1.0 .","options":{"raw":{"language":"text"}}},"url":"https://test.memorix.io/resources/recordtypes?","description":"<p>This endpoint accepts a <a href=\"https://www.w3.org/TR/shacl/\">SHACL</a> Nodeshape/Memorix Recordtype and stores it in Memorix. Make sure to use a unique label for your Recordtype.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","recordtypes"],"host":["https://test.memorix.io"],"query":[{"key":"","value":null}],"variable":[]}},"response":[{"id":"59c266d2-f358-4932-9839-f8121d796ef0","name":"Create Afbeelding Recordtype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"#Example response\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix dash: <http://datashapes.org/dash#> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix html: <http://www.w3.org/1999/xhtml/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix vocabularies: </resources/vocabularies/> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix afbeelding: </resources/recordtypes/Afbeelding#> .\n\nrecordtypes:Afbeelding\n  a memorix:Recordtype, sh:NodeShape ;\n  rdfs:label \"Afbeelding\"@nl ;\n  rdfs:comment \"Beeldbankbeschrijvingen Stadsarchief Amsterdam\"@nl ;\n  dc:identifier \"Afbeelding\" ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass recordtypes:Afbeelding ;\n  dash:defaultViewForRole dash:all ;\n  memorix:hasinformationComponent memorix:DepotLocationComponent, memorix:ImageComponent ;\n  sh:property [\n    rdfs:label \"Type afbeelding\"@nl ;\n    rdfs:comment \"Selecteer een waarde uit de lijst.\"@nl ;\n    sh:path afbeelding:documentType ;\n    sh:maxCount 1 ;\n    sh:order 1.0 ;\n    sh:group afbeelding:contentDescriptionGroup ;\n    sh:datatype xsd:string ;\n    # TODO this should be a link to a vocabulary\n#    dash:editor memorix:AutoCompleteVocabularyEditor ;\n#    sh:class skos:Concept ;\n#    skos:ConceptSchema vocabularies:uuid ;\n#    sh:nodeKind sh:IRI\n  ] ;\n  sh:property [\n    rdfs:label \"Collectie\"@nl ;\n    rdfs:comment \"Selecteer een waarde uit de lijst.\"@nl ;\n    sh:path afbeelding:collection ;\n    sh:maxCount 1 ;\n    sh:order 2.0 ;\n    sh:group afbeelding:contentDescriptionGroup ;\n    memorix:inSummaryAt 1.0 ;\n    sh:datatype xsd:string ;\n    # TODO this should be a link to a vocabulary\n#    dash:editor memorix:AutoCompleteVocabularyEditor ;\n#    sh:class skos:Concept ;\n#    skos:ConceptSchema vocabularies:uuid ;\n#    sh:nodeKind sh:IRI\n  ];\n  sh:property [\n    rdfs:label \"Titel\"@nl ;\n    html:placeholder \"Typ een titel …\"@nl ;\n    sh:path afbeelding:title ;\n    memorix:inTitleAt 1.0 ;\n    sh:maxcount 1 ;\n    sh:order 3.0 ;\n    sh:message \"De titel zou niet leeg mogen zijn\"@nl ;\n    sh:message \"Empty value for title field should not be allowed\"@en ;\n    sh:group afbeelding:contentDescriptionGroup ;\n    dash:editor dash:TextFieldEditor ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdf:type sh:PropertyShape ;\n    rdfs:label \"Beschrijving\"@nl ;\n    sh:path afbeelding:description ;\n    sh:order 4.0 ;\n    sh:message \"Empty or missing description.\"@en ;\n    sh:message \"Lege of missende beschrijving\"@nl ;\n    sh:severity sh:Warning ;\n    sh:group afbeelding:contentDescriptionGroup ;\n    dash:editor dash:TextAreaEditor ;\n    dash:singleLine false ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Afgebeeld persoon\"@nl ;\n    sh:path afbeelding:depictedPerson ;\n    sh:order 5.0 ;\n    sh:message \"Invalid person reference.\"@en ;\n    sh:message \"Ongeldige referentie naar persoon\"@nl ;\n    sh:group afbeelding:contentDescriptionGroup ;\n    sh:datatype xsd:string ;\n#    dash:editor memorix:AutoCompleteVocabularyEditor ;\n#    sh:class skos:Concept ;\n#    skos:ConceptSchema vocabularies:6056a579-5765-440b-9ac4-ddc746689d89 ;\n#    sh:nodeKind sh:IRI ;\n  ] ;\n  sh:property [\n    rdfs:label \"Afgebeeld gebouw\"@nl ;\n    sh:path afbeelding:depictedBuilding ;\n    sh:order 6.0 ;\n    sh:message \"Invalid building reference.\"@en ;\n    sh:message \"Ongeldige referentie naar Gebouw\"@nl ;\n    sh:group afbeelding:contentDescriptionGroup ;\n    sh:datatype xsd:string ;\n#    dash:editor memorix:AutoCompleteVocabularyEditor ;\n#    sh:class skos:Concept ;\n#    skos:ConceptSchema vocabularies:6056a579-5765-440b-9ac4-ddc746689d89 ;\n#    sh:nodeKind sh:IRI ;\n  ] ;\n  sh:property [\n    rdfs:label \"Afgebeelde openbare ruimte\"@nl ;\n    sh:path afbeelding:depictedPublicSpace ;\n    sh:order 7.0 ;\n    sh:message \"Invalid public space reference.\"@en ;\n    sh:message \"Ongeldige referentie naar openbare ruimte\"@nl ;\n    sh:group afbeelding:contentDescriptionGroup ;\n    sh:datatype xsd:string ;\n#    dash:editor memorix:AutoCompleteVocabularyEditor ;\n#    sh:class skos:Concept ;\n#    skos:ConceptSchema vocabularies:6056a579-5765-440b-9ac4-ddc746689d89 ;\n#    sh:nodeKind sh:IRI ;\n  ] ;\n# Repeatable address group\n  sh:property [\n    rdfs:label \"Afgebeeld adres\"@nl ;\n    rdfs:comment \"Afgebeelde straatnamen en huisnummers\"@nl ;\n    sh:path afbeelding:depictedAddress ;\n    sh:order 8.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class afbeelding:DepictedAddress ;\n    sh:group afbeelding:contentDescriptionGroup ;\n  ] ;\n# Creation event\n  sh:property [\n    rdfs:label \"Vervaardiging\"@nl ;\n    rdfs:comment \"Vervaardiging event\"@nl ;\n    sh:path afbeelding:creation ;\n    sh:order 9.0 ;\n    sh:maxCount 1 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class afbeelding:Creation ;\n    sh:group afbeelding:contentDescriptionGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Inventarisnummer\"@nl ;\n    sh:path afbeelding:inventarisnummer ;\n    sh:datatype xsd:string ;\n    sh:order 10.0 ;\n    sh:group afbeelding:contentDescriptionGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Oude nummers\"@nl ;\n    sh:path afbeelding:oudeNummers ;\n    sh:datatype xsd:string ;\n    sh:order 11.0 ;\n    sh:group afbeelding:contentDescriptionGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Drager\"@nl ;\n    sh:path afbeelding:drager ;\n    sh:datatype xsd:string ;\n    sh:order 1.0 ;\n    sh:group afbeelding:physicalDescriptionGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Technieken\"@nl ;\n    sh:path afbeelding:technieken ;\n    sh:datatype xsd:string ;\n    sh:order 2.0 ;\n    sh:group afbeelding:physicalDescriptionGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Materialen\"@nl ;\n    sh:path afbeelding:materialen ;\n    sh:datatype xsd:string ;\n    sh:order 3.0 ;\n    sh:group afbeelding:physicalDescriptionGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Afmetingen van de drager\"@nl ;\n    sh:path afbeelding:afmetingen ;\n    sh:datatype xsd:string ;\n    sh:order 4.0 ;\n    sh:group afbeelding:physicalDescriptionGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Interne opmerking\"@nl ;\n    sh:path afbeelding:opmerkingen ;\n    sh:datatype xsd:string ;\n    sh:order 5.0 ;\n    sh:group afbeelding:physicalDescriptionGroup ;\n    dash:editor dash:TextAreaEditor ;\n  ] ;\n.\nafbeelding:DepictedAddress\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass afbeelding:DepictedAddress ;\n  sh:property [\n    rdfs:label \"Straatnaam\"@nl ;\n    sh:path afbeelding:street ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n#    dash:editor memorix:AutoCompleteVocabularyEditor ;\n#    skos:ConceptSchema vocabularies:999d974f-2677-41c8-9518-a1cc88507d05 ;\n#    sh:class skos:Concept ;\n#    sh:nodeKind sh:IRI ;\n  ] ;\n  sh:property [\n    rdfs:label \"Huisnummer van\"@nl ;\n    sh:path afbeelding:houseNumberFrom ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Huisnummer tot\"@nl ;\n    sh:path afbeelding:houseNumberTill ;\n    sh:order 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n.\nafbeelding:Creation\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass afbeelding:Creation ;\n  sh:property [\n    rdfs:label  \"Vervaardiger(s)\"@nl ;\n    sh:path afbeelding:creationEvent-creator ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n#    sh:nodeKind sh:IRI ;\n#    sh:or (\n#      [ sh:class recordtypes:Persoon ]\n#      [ sh:class recordtypes:Organisatie ]\n#    ) ;\n#    dash:editor memorix:LinkedRecordEditor ; ] ;\n  sh:property [\n    rdfs:label \"Datum vervaardiging (tekst)\"@nl ;\n    sh:path afbeelding:creationEvent-creationDateText ;\n    sh:datatype xsd:string ;\n    sh:maxCount 1 ;\n    sh:order 2.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Vervaardigignsdatum\"@nl ;\n    sh:path afbeelding:creationEvent-creationDate ;\n    sh:maxCount 1 ;\n    sh:order 3.0 ;\n    sh:datatype xsd:date ;\n  ]\n.\nafbeelding:contentDescriptionGroup\n  rdf:type   sh:PropertyGroup ;\n  rdfs:label \"Inhoudelijke beschrijving\"@nl ;\n  sh:order   1.0\n.\nafbeelding:physicalDescriptionGroup\n  rdf:type   sh:PropertyGroup ;\n  rdfs:label \"Fysieke kenmerken\"@nl ;\n  sh:order   3.0\n."},"url":"https://test.memorix.io/resources/recordtypes"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 Jul 2021 15:28:41 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"@graph\": [\n        {\n            \"@id\": \"_:b1\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Datum vervaardiging (tekst)\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"sh:maxCount\": 1,\n            \"order\": \"2.0\",\n            \"path\": \"afbeelding:creationEvent-creationDateText\"\n        },\n        {\n            \"@id\": \"_:b10\",\n            \"@type\": \"sh:PropertyShape\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"dash:singleLine\": false,\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Beschrijving\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"message\": [\n                {\n                    \"@language\": \"en\",\n                    \"@value\": \"Empty or missing description.\"\n                },\n                {\n                    \"@language\": \"nl\",\n                    \"@value\": \"Lege of missende beschrijving\"\n                }\n            ],\n            \"order\": \"4.0\",\n            \"path\": \"afbeelding:description\",\n            \"severity\": \"sh:Warning\"\n        },\n        {\n            \"@id\": \"_:b11\",\n            \"inSummaryAt\": \"1.0\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Selecteer een waarde uit de lijst.\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Collectie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"2.0\",\n            \"path\": \"afbeelding:collection\"\n        },\n        {\n            \"@id\": \"_:b12\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Afmetingen van de drager\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:physicalDescriptionGroup\",\n            \"order\": \"4.0\",\n            \"path\": \"afbeelding:afmetingen\"\n        },\n        {\n            \"@id\": \"_:b13\",\n            \"editor\": \"dash:TextFieldEditor\",\n            \"inTitleAt\": \"1.0\",\n            \"placeholder\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Typ een titel …\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Titel\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"sh:maxcount\": 1,\n            \"message\": [\n                {\n                    \"@language\": \"nl\",\n                    \"@value\": \"De titel zou niet leeg mogen zijn\"\n                },\n                {\n                    \"@language\": \"en\",\n                    \"@value\": \"Empty value for title field should not be allowed\"\n                }\n            ],\n            \"order\": \"3.0\",\n            \"path\": \"afbeelding:title\"\n        },\n        {\n            \"@id\": \"_:b14\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Selecteer een waarde uit de lijst.\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Type afbeelding\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"afbeelding:documentType\"\n        },\n        {\n            \"@id\": \"_:b15\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Inventarisnummer\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"order\": \"10.0\",\n            \"path\": \"afbeelding:inventarisnummer\"\n        },\n        {\n            \"@id\": \"_:b16\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Oude nummers\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"order\": \"11.0\",\n            \"path\": \"afbeelding:oudeNummers\"\n        },\n        {\n            \"@id\": \"_:b17\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Drager\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:physicalDescriptionGroup\",\n            \"order\": \"1.0\",\n            \"path\": \"afbeelding:drager\"\n        },\n        {\n            \"@id\": \"_:b18\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Afgebeelde openbare ruimte\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"message\": [\n                {\n                    \"@language\": \"nl\",\n                    \"@value\": \"Ongeldige referentie naar openbare ruimte\"\n                },\n                {\n                    \"@language\": \"en\",\n                    \"@value\": \"Invalid public space reference.\"\n                }\n            ],\n            \"order\": \"7.0\",\n            \"path\": \"afbeelding:depictedPublicSpace\"\n        },\n        {\n            \"@id\": \"_:b19\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Vervaardiger(s)\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"1.0\",\n            \"path\": \"afbeelding:creationEvent-creator\"\n        },\n        {\n            \"@id\": \"_:b2\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Afgebeelde straatnamen en huisnummers\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Afgebeeld adres\"\n            },\n            \"class\": \"afbeelding:DepictedAddress\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"8.0\",\n            \"path\": \"afbeelding:depictedAddress\"\n        },\n        {\n            \"@id\": \"_:b20\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Straatnaam\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"1.0\",\n            \"path\": \"afbeelding:street\"\n        },\n        {\n            \"@id\": \"_:b21\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Vervaardigignsdatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"sh:maxCount\": 1,\n            \"order\": \"3.0\",\n            \"path\": \"afbeelding:creationEvent-creationDate\"\n        },\n        {\n            \"@id\": \"_:b23\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Huisnummer tot\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"3.0\",\n            \"path\": \"afbeelding:houseNumberTill\"\n        },\n        {\n            \"@id\": \"_:b24\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Huisnummer van\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"2.0\",\n            \"path\": \"afbeelding:houseNumberFrom\"\n        },\n        {\n            \"@id\": \"_:b3\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Interne opmerking\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:physicalDescriptionGroup\",\n            \"order\": \"5.0\",\n            \"path\": \"afbeelding:opmerkingen\"\n        },\n        {\n            \"@id\": \"_:b4\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Technieken\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:physicalDescriptionGroup\",\n            \"order\": \"2.0\",\n            \"path\": \"afbeelding:technieken\"\n        },\n        {\n            \"@id\": \"_:b5\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Materialen\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:physicalDescriptionGroup\",\n            \"order\": \"3.0\",\n            \"path\": \"afbeelding:materialen\"\n        },\n        {\n            \"@id\": \"_:b6\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Afgebeeld gebouw\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"message\": [\n                {\n                    \"@language\": \"nl\",\n                    \"@value\": \"Ongeldige referentie naar Gebouw\"\n                },\n                {\n                    \"@language\": \"en\",\n                    \"@value\": \"Invalid building reference.\"\n                }\n            ],\n            \"order\": \"6.0\",\n            \"path\": \"afbeelding:depictedBuilding\"\n        },\n        {\n            \"@id\": \"_:b7\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Vervaardiging event\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Vervaardiging\"\n            },\n            \"class\": \"afbeelding:Creation\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"sh:maxCount\": 1,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"9.0\",\n            \"path\": \"afbeelding:creation\"\n        },\n        {\n            \"@id\": \"_:b8\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Afgebeeld persoon\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"afbeelding:contentDescriptionGroup\",\n            \"message\": [\n                {\n                    \"@language\": \"nl\",\n                    \"@value\": \"Ongeldige referentie naar persoon\"\n                },\n                {\n                    \"@language\": \"en\",\n                    \"@value\": \"Invalid person reference.\"\n                }\n            ],\n            \"order\": \"5.0\",\n            \"path\": \"afbeelding:depictedPerson\"\n        },\n        {\n            \"@id\": \"recordtypes:Afbeelding\",\n            \"@type\": [\n                \"memorix:Recordtype\",\n                \"sh:NodeShape\"\n            ],\n            \"defaultViewForRole\": \"dash:all\",\n            \"identifier\": \"Afbeelding\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Beeldbankbeschrijvingen Stadsarchief Amsterdam\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Afbeelding\"\n            },\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b4\",\n                \"_:b3\",\n                \"_:b5\",\n                \"_:b6\",\n                \"_:b7\",\n                \"_:b8\",\n                \"_:b2\",\n                \"_:b10\",\n                \"_:b11\",\n                \"_:b12\",\n                \"_:b13\",\n                \"_:b14\",\n                \"_:b15\",\n                \"_:b16\",\n                \"_:b17\",\n                \"_:b18\"\n            ],\n            \"targetClass\": \"recordtypes:Afbeelding\"\n        },\n        {\n            \"@id\": \"afbeelding:Creation\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b21\",\n                \"_:b1\",\n                \"_:b19\"\n            ],\n            \"targetClass\": \"afbeelding:Creation\"\n        },\n        {\n            \"@id\": \"afbeelding:DepictedAddress\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b23\",\n                \"_:b24\",\n                \"_:b20\"\n            ],\n            \"targetClass\": \"afbeelding:DepictedAddress\"\n        },\n        {\n            \"@id\": \"afbeelding:contentDescriptionGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Inhoudelijke beschrijving\"\n            },\n            \"order\": \"1.0\"\n        },\n        {\n            \"@id\": \"afbeelding:physicalDescriptionGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Fysieke kenmerken\"\n            },\n            \"order\": \"3.0\"\n        }\n    ],\n    \"@context\": {\n        \"rest\": {\n            \"@id\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest\",\n            \"@type\": \"@id\"\n        },\n        \"first\": {\n            \"@id\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#first\",\n            \"@type\": \"@id\"\n        },\n        \"order\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#order\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"maxCount\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#maxCount\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\"\n        },\n        \"datatype\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#datatype\",\n            \"@type\": \"@id\"\n        },\n        \"path\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#path\",\n            \"@type\": \"@id\"\n        },\n        \"label\": {\n            \"@id\": \"http://www.w3.org/2000/01/rdf-schema#label\"\n        },\n        \"group\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#group\",\n            \"@type\": \"@id\"\n        },\n        \"class\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#class\",\n            \"@type\": \"@id\"\n        },\n        \"nodeKind\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#nodeKind\",\n            \"@type\": \"@id\"\n        },\n        \"viewer\": {\n            \"@id\": \"http://datashapes.org/dash#viewer\",\n            \"@type\": \"@id\"\n        },\n        \"comment\": {\n            \"@id\": \"http://www.w3.org/2000/01/rdf-schema#comment\"\n        },\n        \"editor\": {\n            \"@id\": \"http://datashapes.org/dash#editor\",\n            \"@type\": \"@id\"\n        },\n        \"property\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#property\",\n            \"@type\": \"@id\"\n        },\n        \"identifier\": {\n            \"@id\": \"http://purl.org/dc/elements/1.1/identifier\"\n        },\n        \"targetClass\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#targetClass\",\n            \"@type\": \"@id\"\n        },\n        \"ignoredProperties\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#ignoredProperties\",\n            \"@type\": \"@id\"\n        },\n        \"defaultViewForRole\": {\n            \"@id\": \"http://datashapes.org/dash#defaultViewForRole\",\n            \"@type\": \"@id\"\n        },\n        \"closed\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#closed\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\"\n        },\n        \"message\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#message\"\n        },\n        \"inSummaryAt\": {\n            \"@id\": \"http://memorix.io/ontology#inSummaryAt\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"placeholder\": {\n            \"@id\": \"http://www.w3.org/1999/xhtml/placeholder\"\n        },\n        \"maxcount\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#maxcount\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\"\n        },\n        \"inTitleAt\": {\n            \"@id\": \"http://memorix.io/ontology#inTitleAt\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"severity\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#severity\",\n            \"@type\": \"@id\"\n        },\n        \"singleLine\": {\n            \"@id\": \"http://datashapes.org/dash#singleLine\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\"\n        },\n        \"vocabularies\": \"https://example.memorix-test.nl/resources/vocabularies/\",\n        \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n        \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n        \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n        \"memorix\": \"http://memorix.io/ontology#\",\n        \"sh\": \"http://www.w3.org/ns/shacl#\",\n        \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n        \"afbeelding\": \"https://example.memorix-test.nl/resources/recordtypes/Afbeelding#\",\n        \"recordtypes\": \"https://example.memorix-test.nl/resources/recordtypes/\",\n        \"html\": \"http://www.w3.org/1999/xhtml/\",\n        \"dash\": \"http://datashapes.org/dash#\",\n        \"dc\": \"http://purl.org/dc/elements/1.1/\"\n    }\n}"},{"id":"4bcb3b13-df61-4e71-9dcb-43cf6a0d4771","name":"Create Persoon Recordtype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"@prefix persoon: </resources/recordtypes/Persoon#> .\n@prefix vocabularies: </vocabularies/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix html: <http://www.w3.org/1999/xhtml/> .\n@prefix dash: <http://datashapes.org/dash#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n\nrecordtypes:Persoon\n  a memorix:Recordtype, sh:NodeShape ;\n  rdfs:label \"Persoon\"@nl ;\n  rdfs:comment \"Standaard Recordtype voor Personen\"@nl ;\n  dc:identifier \"Persoon\" ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass recordtypes:Persoon ;\n  dash:defaultViewForRole dash:all ;\n  sh:property [\n    rdfs:label \"Voornaam\"@nl ;\n    sh:path persoon:firstName ;\n    sh:maxCount 1 ;\n    sh:order 1.0 ;\n    sh:group persoon:identityGroup ;\n    memorix:inTitleAt 1.0 ;\n    memorix:searchWeight 3.0 ;\n    sh:datatype xsd:string ;\n    dash:singleLine true ;\n  ] ;\n  sh:property [\n    rdfs:label \"Tussenvoegsel\"@nl ;\n    sh:path persoon:surnamePrefix ;\n    sh:maxCount 1 ;\n    sh:order 2.0 ;\n    sh:group persoon:identityGroup ;\n    memorix:inTitleAt 2.0 ;\n    memorix:searchWeight 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Achternaam\"@nl ;\n    sh:path persoon:lastName ;\n    sh:maxCount 1 ;\n    sh:order 3.0 ;\n    sh:group persoon:identityGroup ;\n    memorix:inTitleAt 3.0 ;\n    memorix:searchWeight 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Alternatieve namen\"@nl ;\n    sh:path persoon:otherFormsOfName ;\n    sh:maxCount 5 ;\n    sh:order 4.0 ;\n    sh:group persoon:identityGroup ;\n    memorix:searchWeight 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Identificatiekenmerk\"@nl ;\n    sh:path persoon:identifier ;\n    sh:maxCount 1 ;\n    sh:order 5.0 ;\n    sh:group persoon:identityGroup ;\n    memorix:searchWeight 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Identiek aan (RKD Artists)\"@nl ;\n    sh:path persoon:sameAsRKDArtists ;\n    sh:maxCount 1 ;\n    sh:order 6.0 ;\n    sh:group persoon:identityGroup ;\n    memorix:searchWeight 1.0 ;\n    sh:datatype xsd:string ;\n    # TODO: Dit moet een link naar een externe resource worden?\n#    dash:editor memorix:ExternalResourcesUIComponent ;\n#    sh:class memorix:??? ;\n  ] ;\n    sh:property [\n    rdfs:label \"Nationaliteit\"@nl ;\n    sh:path persoon:nationality ;\n    sh:maxCount 1 ;\n    sh:order 1.0 ;\n    sh:group persoon:descriptiveInformationGroup ;\n    memorix:searchWeight 1.0 ;\n    sh:datatype xsd:string ;\n    # TODO dit moet een link naar een vocabulaire worden. Zie voorbeeld van Depicted Building bij \"Image - Recordtype - SHACL.ttl\"\n#    dash:editor memorix:AutoCompleteVocabularyEditor ;\n#    sh:class skos:Concept: ;\n#    skos:ConceptSchema vocabularies:uuid ;\n#    sh:nodeKind sh:IRI\n  ] ;\n  sh:property [\n    rdfs:label \"Geslacht\"@nl ;\n    sh:path persoon:gender ;\n    sh:maxCount 1 ;\n    sh:order 2.0 ;\n    sh:group persoon:descriptiveInformationGroup ;\n    memorix:searchWeight 1.0 ;\n    sh:datatype xsd:string ;\n    # TODO dit moet een link naar een vocabulaire worden. Zie voorbeeld van Depicted Building bij \"Image - Recordtype - SHACL.ttl\"\n#    dash:editor memorix:AutoCompleteVocabularyEditor ;\n#    sh:class skos:Concept: ;\n#    skos:ConceptSchema vocabularies:uuid ;\n#    sh:nodeKind sh:IRI\n  ] ;\n  sh:property [\n    rdfs:label \"Biografie\"@nl ;\n    sh:path persoon:biography ;\n    sh:maxCount 1 ;\n    sh:order 3.0 ;\n    memorix:searchWeight 1.0 ;\n    sh:group persoon:descriptiveInformationGroup ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ] ;\n  sh:property [\n    rdfs:label \"Bibliografie\"@nl ;\n    sh:path persoon:bibliography ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n    sh:maxCount 1 ;\n    sh:order 4.0 ;\n    sh:group persoon:descriptiveInformationGroup ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Beschrijving\"@nl ;\n    sh:path persoon:descrtiption ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n    sh:maxCount 1 ;\n    sh:order 5.0 ;\n    sh:group persoon:descriptiveInformationGroup ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Geboorte\"@nl ;\n    rdfs:comment \"Geboorte Event\"@nl ;\n    sh:maxCount 1 ;\n    sh:path persoon:birthEvent ;\n    sh:order 1.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class persoon:BirthEvent ;\n    sh:group persoon:lifeEventsGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Overlijden\"@nl ;\n    rdfs:comment \"Overlijden Event\"@nl ;\n    sh:maxCount 1 ;\n    sh:path persoon:deathEvent ;\n    sh:order 2.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class persoon:DeathEvent ;\n    sh:group persoon:lifeEventsGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Werkzame Periode\"@nl ;\n    sh:path persoon:period_of_activity ;\n    sh:datatype xsd:date ;\n    sh:maxCount 1 ;\n    sh:order 3.0 ;\n    sh:group persoon:lifeEventsGroup ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Plaats van werkzaamheid\"@nl ;\n    rdfs:comment \"Plaatsen van werkzaamheid\"@nl ;\n    sh:maxCount 10 ;\n    sh:path persoon:placeOfActivity ;\n    sh:order 4.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class persoon:PlaceOfActivity ;\n    sh:group persoon:lifeEventsGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Relatie\"@nl ;\n    rdfs:comment \"Relatie tussen personen\"@nl ;\n    sh:maxCount 10 ;\n    sh:path persoon:relation ;\n    sh:order 1.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class persoon:Relation ;\n    sh:group persoon:relationsGroup;\n  ] ;\n  sh:property [\n    rdfs:label \"Adres\"@nl ;\n    sh:path persoon:contactAddress ;\n    sh:datatype xsd:string;\n    sh:maxCount 1 ;\n    sh:group persoon:contactInformationGroup  ;\n    sh:order 1.0 ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Postcode\"@nl ;\n    sh:path persoon:contactZipCode ;\n    sh:datatype xsd:string;\n    sh:maxCount 1 ;\n    sh:group persoon:contactInformationGroup  ;\n    sh:order 1.0 ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Place\"@nl ;\n    sh:path persoon:contactPlace ;\n    sh:datatype xsd:string;\n    sh:maxCount 1 ;\n    sh:group persoon:contactInformationGroup  ;\n    sh:order 2.0 ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Land\"@nl ;\n    sh:path persoon:contactCountry ;\n    sh:datatype xsd:string;\n    sh:maxCount 1 ;\n    sh:group persoon:contactInformationGroup  ;\n    sh:order 3.0 ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"E-mail\"@nl ;\n    sh:path persoon:contactEmail ;\n    sh:datatype xsd:string;\n    sh:maxCount 1 ;\n    sh:group persoon:contactInformationGroup  ;\n    sh:order 4.0 ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Website\"@nl ;\n    sh:path persoon:contactWebsite ;\n    sh:datatype xsd:string;\n    sh:maxCount 1 ;\n    sh:group persoon:contactInformationGroup  ;\n    sh:order 5.0 ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Telefoonnummer\"@nl ;\n    sh:path persoon:contactPhone ;\n    sh:datatype xsd:string;\n    sh:maxCount 1 ;\n    sh:group persoon:contactInformationGroup  ;\n    sh:order 6.0 ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n.\npersoon:BirthEvent\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass persoon:BirthEvent ;\n  sh:property [\n    rdfs:label \"Geboortedatum\"@nl ;\n    sh:path persoon:birthDate  ;\n    sh:order 1.0 ;\n    sh:datatype xsd:date ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Geboorteplaats\"@nl ;\n    sh:path persoon:birthPlace  ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextFieldEditor ;\n    memorix:searchWeight 1.0 ;\n    # TODO dit moet een link naar Geonames worden\n  ]\n.\npersoon:DeathEvent\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass persoon:DeathEvent ;\n  sh:property [\n    rdfs:label \"Overlijdensdatum\"@nl ;\n    sh:path persoon:deathDate  ;\n    sh:order 1.0 ;\n    sh:datatype xsd:date ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Overlijdensplaats\"@nl ;\n    sh:path persoon:deathPlace  ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextFieldEditor ;\n    memorix:searchWeight 1.0 ;\n    # TODO dit moet een link naar Geonames worden\n  ]\n.\npersoon:PlaceOfActivity\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass persoon:PlaceOfActivity ;\n  sh:property [\n    rdfs:label \"Locatie\"@nl ;\n    sh:path persoon:activityLocation  ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    memorix:searchWeight 1.0 ;\n  # TODO dit moet een link naar Geonames worden\n  ] ;\n  sh:property [\n    rdfs:label \"Begindatum\"@nl ;\n    sh:path persoon:activityStartDate  ;\n    sh:order 2.0 ;\n    sh:datatype xsd:date ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Einddatum\"@nl ;\n    sh:path persoon:activityEndDate  ;\n    sh:order 3.0 ;\n    sh:datatype xsd:date ;\n    memorix:searchWeight 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Opmerking bij plaats werkzaamheid\"@nl ;\n    sh:path persoon:activityRemark  ;\n    sh:order 4.0 ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n    memorix:searchWeight 1.0 ;\n  ]\n.\npersoon:Relation\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass persoon:Relation ;\n  sh:property [\n    rdfs:label \"Soort relatie\"@nl ;\n    sh:path persoon:relationType ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    memorix:searchWeight 1.0 ;\n    # TODO dit moet een link naar een vocabulaire worden\n  ] ;\n  sh:property [\n    rdfs:label \"Gerelateerd Persoon\"@nl ;\n    sh:path persoon:relatedPerson ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n    memorix:searchWeight 1.0 ;\n    # TODO dit moet een link naar een Persoon record worden\n  ]\n.\npersoon:identityGroup a sh:PropertyGroup ;\n  rdfs:label \"Identiteit\"@nl ;\n  sh:order 1.0\n.\npersoon:descriptiveInformationGroup a sh:PropertyGroup ;\n  rdfs:label \"Beschrijving\"@nl ;\n  sh:order 2.0\n.\npersoon:lifeEventsGroup a sh:PropertyGroup ;\n  rdfs:label \"Levensloop\"@nl ;\n  sh:order 3.0\n.\npersoon:relationsGroup a sh:PropertyGroup ;\n  rdfs:label \"Relaties\"@nl ;\n  sh:order 4.0\n.\npersoon:contactInformationGroup a sh:PropertyGroup ;\n  rdfs:label \"Contactinformatie\"@nl ;\n  sh:order 5.0\n."},"url":"https://test.memorix.io/resources/recordtypes"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 08 Jul 2021 15:34:52 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"@graph\": [\n        {\n            \"@id\": \"_:b0\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Soort relatie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"1.0\",\n            \"path\": \"persoon:relationType\"\n        },\n        {\n            \"@id\": \"_:b1\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Bibliografie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"4.0\",\n            \"path\": \"persoon:bibliography\"\n        },\n        {\n            \"@id\": \"_:b10\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Biografie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"3.0\",\n            \"path\": \"persoon:biography\"\n        },\n        {\n            \"@id\": \"_:b11\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Locatie\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"1.0\",\n            \"path\": \"persoon:activityLocation\"\n        },\n        {\n            \"@id\": \"_:b12\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Opmerking bij plaats werkzaamheid\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"4.0\",\n            \"path\": \"persoon:activityRemark\"\n        },\n        {\n            \"@id\": \"_:b13\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Einddatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"order\": \"3.0\",\n            \"path\": \"persoon:activityEndDate\"\n        },\n        {\n            \"@id\": \"_:b14\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Begindatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"order\": \"2.0\",\n            \"path\": \"persoon:activityStartDate\"\n        },\n        {\n            \"@id\": \"_:b17\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Postcode\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"persoon:contactZipCode\"\n        },\n        {\n            \"@id\": \"_:b18\",\n            \"inTitleAt\": \"2.0\",\n            \"searchWeight\": \"3.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Tussenvoegsel\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"2.0\",\n            \"path\": \"persoon:surnamePrefix\"\n        },\n        {\n            \"@id\": \"_:b19\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Adres\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"persoon:contactAddress\"\n        },\n        {\n            \"@id\": \"_:b2\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Overlijdensdatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"order\": \"1.0\",\n            \"path\": \"persoon:deathDate\"\n        },\n        {\n            \"@id\": \"_:b20\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Telefoonnummer\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"6.0\",\n            \"path\": \"persoon:contactPhone\"\n        },\n        {\n            \"@id\": \"_:b21\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Alternatieve namen\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:identityGroup\",\n            \"sh:maxCount\": 5,\n            \"order\": \"4.0\",\n            \"path\": \"persoon:otherFormsOfName\"\n        },\n        {\n            \"@id\": \"_:b22\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geboorte Event\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geboorte\"\n            },\n            \"class\": \"persoon:BirthEvent\",\n            \"group\": \"persoon:lifeEventsGroup\",\n            \"sh:maxCount\": 1,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"1.0\",\n            \"path\": \"persoon:birthEvent\"\n        },\n        {\n            \"@id\": \"_:b23\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geboortedatum\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"order\": \"1.0\",\n            \"path\": \"persoon:birthDate\"\n        },\n        {\n            \"@id\": \"_:b24\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Identiek aan (RKD Artists)\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"6.0\",\n            \"path\": \"persoon:sameAsRKDArtists\"\n        },\n        {\n            \"@id\": \"_:b25\",\n            \"editor\": \"dash:TextFieldEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geboorteplaats\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"2.0\",\n            \"path\": \"persoon:birthPlace\"\n        },\n        {\n            \"@id\": \"_:b26\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Overlijden Event\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Overlijden\"\n            },\n            \"class\": \"persoon:DeathEvent\",\n            \"group\": \"persoon:lifeEventsGroup\",\n            \"sh:maxCount\": 1,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"2.0\",\n            \"path\": \"persoon:deathEvent\"\n        },\n        {\n            \"@id\": \"_:b27\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Nationaliteit\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"persoon:nationality\"\n        },\n        {\n            \"@id\": \"_:b28\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Werkzame Periode\"\n            },\n            \"datatype\": \"xsd:date\",\n            \"group\": \"persoon:lifeEventsGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"3.0\",\n            \"path\": \"persoon:period_of_activity\"\n        },\n        {\n            \"@id\": \"_:b29\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Plaatsen van werkzaamheid\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Plaats van werkzaamheid\"\n            },\n            \"class\": \"persoon:PlaceOfActivity\",\n            \"group\": \"persoon:lifeEventsGroup\",\n            \"sh:maxCount\": 10,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"4.0\",\n            \"path\": \"persoon:placeOfActivity\"\n        },\n        {\n            \"@id\": \"_:b3\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Identificatiekenmerk\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"5.0\",\n            \"path\": \"persoon:identifier\"\n        },\n        {\n            \"@id\": \"_:b30\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Website\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"5.0\",\n            \"path\": \"persoon:contactWebsite\"\n        },\n        {\n            \"@id\": \"_:b31\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Land\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"3.0\",\n            \"path\": \"persoon:contactCountry\"\n        },\n        {\n            \"@id\": \"_:b32\",\n            \"viewer\": \"dash:DetailsEditor\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Relatie tussen personen\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Relatie\"\n            },\n            \"class\": \"persoon:Relation\",\n            \"group\": \"persoon:relationsGroup\",\n            \"sh:maxCount\": 10,\n            \"nodeKind\": \"sh:BlankNode\",\n            \"order\": \"1.0\",\n            \"path\": \"persoon:relation\"\n        },\n        {\n            \"@id\": \"_:b33\",\n            \"editor\": \"dash:TextAreaEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Beschrijving\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"5.0\",\n            \"path\": \"persoon:descrtiption\"\n        },\n        {\n            \"@id\": \"_:b34\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Geslacht\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:descriptiveInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"2.0\",\n            \"path\": \"persoon:gender\"\n        },\n        {\n            \"@id\": \"_:b35\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Place\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"2.0\",\n            \"path\": \"persoon:contactPlace\"\n        },\n        {\n            \"@id\": \"_:b36\",\n            \"inTitleAt\": \"3.0\",\n            \"searchWeight\": \"3.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Achternaam\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"3.0\",\n            \"path\": \"persoon:lastName\"\n        },\n        {\n            \"@id\": \"_:b37\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"E-mail\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:contactInformationGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"4.0\",\n            \"path\": \"persoon:contactEmail\"\n        },\n        {\n            \"@id\": \"_:b4\",\n            \"editor\": \"dash:TextFieldEditor\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Overlijdensplaats\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"2.0\",\n            \"path\": \"persoon:deathPlace\"\n        },\n        {\n            \"@id\": \"_:b6\",\n            \"searchWeight\": \"1.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Gerelateerd Persoon\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"order\": \"2.0\",\n            \"path\": \"persoon:relatedPerson\"\n        },\n        {\n            \"@id\": \"_:b9\",\n            \"dash:singleLine\": true,\n            \"inTitleAt\": \"1.0\",\n            \"searchWeight\": \"3.0\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Voornaam\"\n            },\n            \"datatype\": \"xsd:string\",\n            \"group\": \"persoon:identityGroup\",\n            \"sh:maxCount\": 1,\n            \"order\": \"1.0\",\n            \"path\": \"persoon:firstName\"\n        },\n        {\n            \"@id\": \"recordtypes:Persoon\",\n            \"@type\": [\n                \"memorix:Recordtype\",\n                \"sh:NodeShape\"\n            ],\n            \"defaultViewForRole\": \"dash:all\",\n            \"identifier\": \"Persoon\",\n            \"comment\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Standaard Recordtype voor Personen\"\n            },\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Persoon\"\n            },\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b36\",\n                \"_:b9\",\n                \"_:b19\",\n                \"_:b37\",\n                \"_:b29\",\n                \"_:b3\",\n                \"_:b27\",\n                \"_:b30\",\n                \"_:b10\",\n                \"_:b34\",\n                \"_:b31\",\n                \"_:b18\",\n                \"_:b20\",\n                \"_:b21\",\n                \"_:b33\",\n                \"_:b22\",\n                \"_:b32\",\n                \"_:b24\",\n                \"_:b35\",\n                \"_:b1\",\n                \"_:b17\",\n                \"_:b26\",\n                \"_:b28\"\n            ],\n            \"targetClass\": \"recordtypes:Persoon\"\n        },\n        {\n            \"@id\": \"persoon:BirthEvent\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b25\",\n                \"_:b23\"\n            ],\n            \"targetClass\": \"persoon:BirthEvent\"\n        },\n        {\n            \"@id\": \"persoon:DeathEvent\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b4\",\n                \"_:b2\"\n            ],\n            \"targetClass\": \"persoon:DeathEvent\"\n        },\n        {\n            \"@id\": \"persoon:PlaceOfActivity\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b12\",\n                \"_:b13\",\n                \"_:b14\",\n                \"_:b11\"\n            ],\n            \"targetClass\": \"persoon:PlaceOfActivity\"\n        },\n        {\n            \"@id\": \"persoon:Relation\",\n            \"@type\": \"sh:NodeShape\",\n            \"sh:closed\": true,\n            \"ignoredProperties\": {\n                \"@list\": [\n                    \"rdf:type\"\n                ]\n            },\n            \"property\": [\n                \"_:b6\",\n                \"_:b0\"\n            ],\n            \"targetClass\": \"persoon:Relation\"\n        },\n        {\n            \"@id\": \"persoon:contactInformationGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Contactinformatie\"\n            },\n            \"order\": \"5.0\"\n        },\n        {\n            \"@id\": \"persoon:descriptiveInformationGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Beschrijving\"\n            },\n            \"order\": \"2.0\"\n        },\n        {\n            \"@id\": \"persoon:identityGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Identiteit\"\n            },\n            \"order\": \"1.0\"\n        },\n        {\n            \"@id\": \"persoon:lifeEventsGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Levensloop\"\n            },\n            \"order\": \"3.0\"\n        },\n        {\n            \"@id\": \"persoon:relationsGroup\",\n            \"@type\": \"sh:PropertyGroup\",\n            \"label\": {\n                \"@language\": \"nl\",\n                \"@value\": \"Relaties\"\n            },\n            \"order\": \"4.0\"\n        }\n    ],\n    \"@context\": {\n        \"searchWeight\": {\n            \"@id\": \"http://memorix.io/ontology#searchWeight\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"datatype\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#datatype\",\n            \"@type\": \"@id\"\n        },\n        \"order\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#order\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"path\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#path\",\n            \"@type\": \"@id\"\n        },\n        \"label\": {\n            \"@id\": \"http://www.w3.org/2000/01/rdf-schema#label\"\n        },\n        \"group\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#group\",\n            \"@type\": \"@id\"\n        },\n        \"maxCount\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#maxCount\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\"\n        },\n        \"editor\": {\n            \"@id\": \"http://datashapes.org/dash#editor\",\n            \"@type\": \"@id\"\n        },\n        \"property\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#property\",\n            \"@type\": \"@id\"\n        },\n        \"targetClass\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#targetClass\",\n            \"@type\": \"@id\"\n        },\n        \"ignoredProperties\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#ignoredProperties\",\n            \"@type\": \"@id\"\n        },\n        \"closed\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#closed\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\"\n        },\n        \"rest\": {\n            \"@id\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest\",\n            \"@type\": \"@id\"\n        },\n        \"first\": {\n            \"@id\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#first\",\n            \"@type\": \"@id\"\n        },\n        \"singleLine\": {\n            \"@id\": \"http://datashapes.org/dash#singleLine\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\"\n        },\n        \"inTitleAt\": {\n            \"@id\": \"http://memorix.io/ontology#inTitleAt\",\n            \"@type\": \"http://www.w3.org/2001/XMLSchema#decimal\"\n        },\n        \"class\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#class\",\n            \"@type\": \"@id\"\n        },\n        \"nodeKind\": {\n            \"@id\": \"http://www.w3.org/ns/shacl#nodeKind\",\n            \"@type\": \"@id\"\n        },\n        \"viewer\": {\n            \"@id\": \"http://datashapes.org/dash#viewer\",\n            \"@type\": \"@id\"\n        },\n        \"comment\": {\n            \"@id\": \"http://www.w3.org/2000/01/rdf-schema#comment\"\n        },\n        \"identifier\": {\n            \"@id\": \"http://purl.org/dc/elements/1.1/identifier\"\n        },\n        \"defaultViewForRole\": {\n            \"@id\": \"http://datashapes.org/dash#defaultViewForRole\",\n            \"@type\": \"@id\"\n        },\n        \"vocabularies\": \"https://example.memorix-test.nl/vocabularies/\",\n        \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n        \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n        \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n        \"memorix\": \"http://memorix.io/ontology#\",\n        \"sh\": \"http://www.w3.org/ns/shacl#\",\n        \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n        \"persoon\": \"https://example.memorix-test.nl/resources/recordtypes/Persoon#\",\n        \"recordtypes\": \"https://example.memorix-test.nl/resources/recordtypes/\",\n        \"html\": \"http://www.w3.org/1999/xhtml/\",\n        \"dash\": \"http://datashapes.org/dash#\",\n        \"dc\": \"http://purl.org/dc/elements/1.1/\"\n    }\n}"},{"id":"dd61a3a9-db8c-4819-90a2-c65d230328f0","name":"Create Persoonsvermelding Recordtype","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"@prefix persoonsvermelding: <https://example.memorix-test.nl/resources/recordtypes/Persoonsvermelding#> .\n@prefix vocabularies: <https://example.memorix-test.nl/vocabularies/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix html: <http://www.w3.org/1999/xhtml/> .\n@prefix dash: <http://datashapes.org/dash#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n\nrecordtypes:Persoonsvermelding\n  a memorix:Recordtype, sh:NodeShape ;\n  rdfs:label \"Persoonsvermelding\"@nl ;\n  rdfs:comment \"Standaard Recordtype voor Persoonsvermeldingen in Indexen\"@nl ;\n  dc:identifier \"Persoonsvermelding\" ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  dash:defaultViewForRole dash:all ;\n  sh:property [\n    rdfs:label \"Voornaam\"@nl ;\n    sh:path persoonsvermelding:firstName ;\n    sh:order 1.0 ;\n    sh:group persoonsvermelding:personListingGroup  ;\n    memorix:inTitleAt 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Tussenvoegsel\"@nl ;\n    sh:path persoonsvermelding:surnamePrefix ;\n    sh:order 2.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    memorix:inTitleAt 2.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Achternaam\"@nl ;\n    sh:path persoonsvermelding:lastName ;\n    sh:order 3.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    memorix:inTitleAt 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Geboortedatum\"@nl ;\n    sh:path persoonsvermelding:birthDate  ;\n    sh:order 4.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    sh:datatype xsd:date ;\n  ] ;\n  sh:property [\n    rdfs:label \"Geboorteplaats\"@nl ;\n    sh:path persoonsvermelding:birthPlace  ;\n    sh:order 5.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Overlijdensdatum\"@nl ;\n    sh:path persoonsvermelding:deathDate  ;\n    sh:order 6.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    sh:datatype xsd:date ;\n  ] ;\n  sh:property [\n    rdfs:label \"Overlijdensplaats\"@nl ;\n    sh:path persoonsvermelding:deathPlace  ;\n    sh:order 7.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Leeftijd\"@nl ;\n    sh:path persoonsvermelding:age  ;\n    sh:order 8.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Overleden\"@nl ;\n    sh:path persoonsvermelding:deceased  ;\n    sh:order 9.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    sh:datatype xsd:string ;\n    #TODO Dit moet een dropdown veld worden met de waarden \"ja\", \"nee\" en \"onbekend\"\n  ] ;\n  sh:property [\n    rdfs:label \"Beroep\"@nl ;\n    sh:path persoonsvermelding:profession  ;\n    sh:order 10.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Persoon - URI\"@nl ;\n    sh:path persoonsvermelding:personURI  ;\n    sh:order 11.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Is identiek aan\"@nl ;\n    sh:path persoonsvermelding:isIdenticalTo  ;\n    sh:order 12.0 ;\n    sh:group persoonsvermelding:personListingGroup ;\n    dash:editor memorix:LinkedRecordEditor ;\n    sh:nodeKind sh:IRI ;\n#    sh:class recordtypes:Persoon ;\n  ] ;\n  sh:property [\n    rdfs:label \"Voornaam\"@nl ;\n    sh:path persoonsvermelding:alternativeFirstName ;\n    sh:order 1.0 ;\n    sh:group persoonsvermelding:alternativeNameGroup   ;\n    memorix:inTitleAt 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Tussenvoegsel\"@nl ;\n    sh:path persoonsvermelding:alternativeSurnamePrefix ;\n    sh:order 2.0 ;\n    sh:group persoonsvermelding:alternativeNameGroup ;\n    memorix:inTitleAt 2.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Achternaam\"@nl ;\n    sh:path persoonsvermelding:alternativeLastName ;\n    sh:order 3.0 ;\n    sh:group persoonsvermelding:alternativeNameGroup ;\n    memorix:inTitleAt 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Locatie\"@nl ;\n    rdfs:comment \"Locaties die voorkomen op de akte\"@nl ;\n    sh:maxCount 999 ;\n    sh:path persoonsvermelding:location ;\n    sh:order 1.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class persoonsvermelding:Location ;\n    sh:group persoonsvermelding:locationsGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Bijzonderheid\"@nl ;\n    rdfs:comment \"Bijzonderheid bij deze akte\"@nl ;\n    sh:maxCount 10 ;\n    sh:path persoonsvermelding:details ;\n    sh:order 1.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class persoonsvermelding:Details ;\n    sh:group persoonsvermelding:detailsGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Opmerkingen\"@nl ;\n    sh:path persoonsvermelding:notes ;\n    sh:maxCount 1 ;\n    sh:order 1.0 ;\n    sh:group persoonsvermelding:remarksGroup ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ] ;\n.\npersoonsvermelding:Location\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass persoonsvermelding:Location ;\n  sh:property [\n    rdfs:label \"Locatie - Type\"@nl ;\n    sh:path persoonsvermelding:locationType ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    #TODO dit moet een link naar een vocabulaire worden\n  ] ;\n  sh:property [\n    rdfs:label \"Benaming in bron\"@nl ;\n    sh:path persoonsvermelding:locationNameInSource ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Gestandaardiseerde term\"@nl ;\n    sh:path persoonsvermelding:locationStandardisedTerm ;\n    sh:order 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Locatie - Uri\"@nl ;\n    sh:path persoonsvermelding:locationUri ;\n    sh:order 4.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Opmerking\"@nl ;\n    sh:path persoonsvermelding:locationRemark ;\n    sh:order 5.0 ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ]\n.\npersoonsvermelding:Details\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass persoonsvermelding:Details ;\n  sh:property [\n    rdfs:label \"Bijzonderheid - Type\"@nl ;\n    sh:path persoonsvermelding:detailType ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  #TODO dit moet een link naar een vocabulaire worden\n  ] ;\n  sh:property [\n    rdfs:label \"Bijzonderheid\"@nl ;\n    sh:path persoonsvermelding:detailDetail ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n.\npersoonsvermelding:personListingGroup a sh:PropertyGroup ;\n  rdfs:label \"Persoonsvermelding\"@nl ;\n  sh:order 1.0\n.\npersoonsvermelding:alternativeNameGroup a sh:PropertyGroup ;\n  rdfs:label \"Naamsvariant\"@nl ;\n  sh:order 2.0\n.\npersoonsvermelding:locationsGroup a sh:PropertyGroup ;\n  rdfs:label \"Locaties\"@nl ;\n  sh:order 3.0\n.\npersoonsvermelding:detailsGroup a sh:PropertyGroup ;\n  rdfs:label \"Bijzonderheden\"@nl ;\n  sh:order 4.0\n.\npersoonsvermelding:remarksGroup a sh:PropertyGroup ;\n  rdfs:label \"Opmerkingen\"@nl ;\n  sh:order 5.0\n."},"url":"https://test.memorix.io/resources/recordtypes"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 09 Jul 2021 10:47:54 GMT"},{"key":"Content-Type","value":"application/ld+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix dash:               <http://datashapes.org/dash#> .\n@prefix dc:                 <http://purl.org/dc/elements/1.1/> .\n@prefix html:               <http://www.w3.org/1999/xhtml/> .\n@prefix memorix:            <http://memorix.io/ontology#> .\n@prefix persoonsvermelding: <https://example.memorix-test.nl/resources/recordtypes/Persoonsvermelding#> .\n@prefix rdf:                <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:               <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:        <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix sh:                 <http://www.w3.org/ns/shacl#> .\n@prefix skos:               <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies:       <https://example.memorix-test.nl/vocabularies/> .\n@prefix xsd:                <http://www.w3.org/2001/XMLSchema#> .\n\npersoonsvermelding:personListingGroup\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Persoonsvermelding\"@nl ;\n        sh:order    1.0 .\n\npersoonsvermelding:alternativeNameGroup\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Naamsvariant\"@nl ;\n        sh:order    2.0 .\n\npersoonsvermelding:remarksGroup\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Opmerkingen\"@nl ;\n        sh:order    5.0 .\n\npersoonsvermelding:detailsGroup\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Bijzonderheden\"@nl ;\n        sh:order    4.0 .\n\npersoonsvermelding:Details\n        rdf:type              sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Bijzonderheid - Type\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      persoonsvermelding:detailType\n                              ] ;\n        sh:property           [ rdfs:label   \"Bijzonderheid\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     2.0 ;\n                                sh:path      persoonsvermelding:detailDetail\n                              ] ;\n        sh:targetClass        persoonsvermelding:Details .\n\npersoonsvermelding:Location\n        rdf:type              sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Locatie - Type\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      persoonsvermelding:locationType\n                              ] ;\n        sh:property           [ rdfs:label   \"Benaming in bron\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     2.0 ;\n                                sh:path      persoonsvermelding:locationNameInSource\n                              ] ;\n        sh:property           [ rdfs:label   \"Gestandaardiseerde term\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     3.0 ;\n                                sh:path      persoonsvermelding:locationStandardisedTerm\n                              ] ;\n        sh:property           [ rdfs:label   \"Locatie - Uri\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     4.0 ;\n                                sh:path      persoonsvermelding:locationUri\n                              ] ;\n        sh:property           [ rdfs:label   \"Opmerking\"@nl ;\n                                dash:editor  dash:TextAreaEditor ;\n                                sh:datatype  xsd:string ;\n                                sh:order     5.0 ;\n                                sh:path      persoonsvermelding:locationRemark\n                              ] ;\n        sh:targetClass        persoonsvermelding:Location .\n\nrecordtypes:Persoonsvermelding\n        rdf:type                 sh:NodeShape , memorix:Recordtype ;\n        rdfs:comment             \"Standaard Recordtype voor Persoonsvermeldingen in Indexen\"@nl ;\n        rdfs:label               \"Persoonsvermelding\"@nl ;\n        dash:defaultViewForRole  dash:all ;\n        dc:identifier            \"Persoonsvermelding\" ;\n        sh:closed                true ;\n        sh:ignoredProperties     ( rdf:type ) ;\n        sh:property              [ rdfs:label         \"Voornaam\"@nl ;\n                                   memorix:inTitleAt  1.0 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           persoonsvermelding:alternativeNameGroup ;\n                                   sh:order           1.0 ;\n                                   sh:path            persoonsvermelding:alternativeFirstName\n                                 ] ;\n        sh:property              [ rdfs:label   \"Beroep\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     persoonsvermelding:personListingGroup ;\n                                   sh:order     10.0 ;\n                                   sh:path      persoonsvermelding:profession\n                                 ] ;\n        sh:property              [ rdfs:label         \"Achternaam\"@nl ;\n                                   memorix:inTitleAt  3.0 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           persoonsvermelding:personListingGroup ;\n                                   sh:order           3.0 ;\n                                   sh:path            persoonsvermelding:lastName\n                                 ] ;\n        sh:property              [ rdfs:label   \"Geboortedatum\"@nl ;\n                                   sh:datatype  xsd:date ;\n                                   sh:group     persoonsvermelding:personListingGroup ;\n                                   sh:order     4.0 ;\n                                   sh:path      persoonsvermelding:birthDate\n                                 ] ;\n        sh:property              [ rdfs:label   \"Overleden\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     persoonsvermelding:personListingGroup ;\n                                   sh:order     9.0 ;\n                                   sh:path      persoonsvermelding:deceased\n                                 ] ;\n        sh:property              [ rdfs:label   \"Leeftijd\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     persoonsvermelding:personListingGroup ;\n                                   sh:order     8.0 ;\n                                   sh:path      persoonsvermelding:age\n                                 ] ;\n        sh:property              [ rdfs:label         \"Voornaam\"@nl ;\n                                   memorix:inTitleAt  1.0 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           persoonsvermelding:personListingGroup ;\n                                   sh:order           1.0 ;\n                                   sh:path            persoonsvermelding:firstName\n                                 ] ;\n        sh:property              [ rdfs:label   \"Overlijdensplaats\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     persoonsvermelding:personListingGroup ;\n                                   sh:order     7.0 ;\n                                   sh:path      persoonsvermelding:deathPlace\n                                 ] ;\n        sh:property              [ rdfs:label         \"Achternaam\"@nl ;\n                                   memorix:inTitleAt  3.0 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           persoonsvermelding:alternativeNameGroup ;\n                                   sh:order           3.0 ;\n                                   sh:path            persoonsvermelding:alternativeLastName\n                                 ] ;\n        sh:property              [ rdfs:label   \"Overlijdensdatum\"@nl ;\n                                   sh:datatype  xsd:date ;\n                                   sh:group     persoonsvermelding:personListingGroup ;\n                                   sh:order     6.0 ;\n                                   sh:path      persoonsvermelding:deathDate\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Bijzonderheid bij deze akte\"@nl ;\n                                   rdfs:label    \"Bijzonderheid\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      persoonsvermelding:Details ;\n                                   sh:group      persoonsvermelding:detailsGroup ;\n                                   sh:maxCount   10 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      1.0 ;\n                                   sh:path       persoonsvermelding:details\n                                 ] ;\n        sh:property              [ rdfs:label         \"Tussenvoegsel\"@nl ;\n                                   memorix:inTitleAt  2.0 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           persoonsvermelding:personListingGroup ;\n                                   sh:order           2.0 ;\n                                   sh:path            persoonsvermelding:surnamePrefix\n                                 ] ;\n        sh:property              [ rdfs:label               \"Is identiek aan\"@nl ;\n                                   dash:editor              memorix:VocabularyEditor ;\n                                   memorix:conceptSchemeIn  <https://data.rkd.nl/rkdartists> , <https://example.memorix-test.nl/resources/vocabularies/conceptschemes/21d5a77c-1ef9-4cbf-b57a-7203b1160687> , <http://data.bibliotheken.nl/id/dataset/brinkman> ;\n                                   sh:class                 skos:Concept ;\n                                   sh:group                 persoonsvermelding:personListingGroup ;\n                                   sh:nodeKind              sh:IRI ;\n                                   sh:order                 12.0 ;\n                                   sh:path                  persoonsvermelding:isIdenticalTo\n                                 ] ;\n        sh:property              [ rdfs:label   \"Opmerkingen\"@nl ;\n                                   dash:editor  dash:TextAreaEditor ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     persoonsvermelding:remarksGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:order     1.0 ;\n                                   sh:path      persoonsvermelding:notes\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Locaties die voorkomen op de akte\"@nl ;\n                                   rdfs:label    \"Locatie\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      persoonsvermelding:Location ;\n                                   sh:group      persoonsvermelding:locationsGroup ;\n                                   sh:maxCount   999 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      1.0 ;\n                                   sh:path       persoonsvermelding:location\n                                 ] ;\n        sh:property              [ rdfs:label   \"Persoon - URI\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     persoonsvermelding:personListingGroup ;\n                                   sh:order     11.0 ;\n                                   sh:path      persoonsvermelding:personURI\n                                 ] ;\n        sh:property              [ rdfs:label   \"Geboorteplaats\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     persoonsvermelding:personListingGroup ;\n                                   sh:order     5.0 ;\n                                   sh:path      persoonsvermelding:birthPlace\n                                 ] ;\n        sh:property              [ rdfs:label         \"Tussenvoegsel\"@nl ;\n                                   memorix:inTitleAt  2.0 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           persoonsvermelding:alternativeNameGroup ;\n                                   sh:order           2.0 ;\n                                   sh:path            persoonsvermelding:alternativeSurnamePrefix\n                                 ] ;\n        sh:targetClass           recordtypes:Persoonsvermelding .\n\npersoonsvermelding:locationsGroup\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Locaties\"@nl ;\n        sh:order    3.0 .\n"},{"id":"dcd4e1f7-ac3a-4762-a2db-08d10259716c","name":"Create Series Recordtype","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix series: </resources/recordtypes/Series#> .\n@prefix vocabularies: </vocabularies/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix html: <http://www.w3.org/1999/xhtml/> .\n@prefix dash: <http://datashapes.org/dash#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .\n@prefix ric-rst: <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix owl: <http://www.w3.org/2002/07/owl#> .\n\nrecordtypes:Series\n  a memorix:Recordtype, sh:NodeShape ;\n  owl:equivalentClass [\n    a rico:RecordSet ;\n    rico:hasRecordSetType ric-rst:Series ;\n  ];\n  rdfs:label \"Reeks\"@nl ;\n  rdfs:comment \"Standaard Recordtype voor Reeks\"@nl ;\n  dc:identifier \"Series\" ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass recordtypes:Series ;\n  dash:defaultViewForRole dash:all ;\n  sh:property [\n    rdfs:label \"Rubriekscode\"@nl ;\n    sh:path rico:identifier ;\n    sh:order 1.0 ;\n    sh:group series:reeksGroup ;\n    sh:datatype xsd:string ;\n    memorix:inTitleAt 1 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Titel\"@nl ;\n    sh:path rico:name ;\n    sh:order 2.0 ;\n    sh:group series:reeksGroup ;\n    sh:datatype xsd:string ;\n    memorix:inTitleAt 2 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering Oudste Stuk\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:hasBeginningDate ;\n    sh:order 3.0 ;\n    sh:group series:reeksGroup  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class rico:Date ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering Jongste Stuk\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:hasEndDate ;\n    sh:order 4.0 ;\n    sh:group series:reeksGroup  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class rico:Date ;\n  ] ;\n  sh:property [\n    rdfs:label \"Uiterlijke vorm\"@nl ;\n    sh:path rico:hasExtent;\n    sh:order 5.0 ;\n    sh:group series:reeksGroup ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class rico:Extent ;\n  ] ;\n  sh:property [\n    rdfs:label \"Bovenliggend Archief of Reeks\"@nl ;\n    sh:path rico:isOrWasPartOf ;\n    sh:order 6.0 ;\n    sh:group series:reeksGroup ;\n#    sh:datatype xsd:string ;\n    dash:editor memorix:LinkedRecordEditor ;\n    sh:nodeKind sh:IRI ;\n    sh:or (\n      sh:class recordtypes:Fonds\n    )\n  ] ;\n.\nrico:Extent\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass rico:Extent ;\n  sh:property [\n    rdfs:label \"Aantal\" ;\n    sh:path rico:quantity ;\n    sh:order 1.0 ;\n    memorix:inSummaryAt 3.0 ;\n    sh:datatype xsd:integer  ;\n    ] ;\n  sh:property [\n    rdfs:label \"Eenheid\" ;\n    sh:path rico:UnitOfMeasurement ;\n    sh:order 2.0 ;\n    memorix:inSummaryAt 4.0 ;\n    sh:datatype xsd:string ;\n    #TODO Dit moet een link naar een vocabulaire worden\n    ] ;\n.\nrico:Date\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass rico:Date ;\n  sh:property [\n    rdfs:label \"Datering (tekst)\"@nl ;\n    sh:path rico:expressedDate ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering\"@nl ;\n    sh:path rico:normalizedDateValue ;\n    sh:order 2.0 ;\n    memorix:inSummaryAt 2.0 ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ] ;\n.\nseries:reeksGroup a sh:PropertyGroup ;\n  rdfs:label \"Reeks\"@nl ;\n  sh:order 1.0\n."},"url":"https://test.memorix.io/resources/recordtypes"},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 22 Jul 2021 08:12:10 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix dash:         <http://datashapes.org/dash#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix owl:          <http://www.w3.org/2002/07/owl#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:  <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix ric-rst:      <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix rico:         <https://www.ica.org/standards/RiC/ontology#> .\n@prefix series:       <https://example.memorix-test.nl/resources/recordtypes/Series#> .\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies: <https://example.memorix-test.nl/vocabularies/> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\nseries:reeksGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Reeks\"@nl ;\n        sh:order    1.0 .\n\nrecordtypes:Series  rdf:type     memorix:Recordtype , sh:NodeShape ;\n        rdfs:comment             \"Standaard Recordtype voor Reeks\"@nl ;\n        rdfs:label               \"Reeks\"@nl ;\n        dash:defaultViewForRole  dash:all ;\n        dc:identifier            \"Series\" ;\n        owl:equivalentClass      [ rdf:type               rico:RecordSet ;\n                                   rico:hasRecordSetType  ric-rst:Series\n                                 ] ;\n        sh:closed                true ;\n        sh:ignoredProperties     ( rdf:type ) ;\n        sh:property              [ rdfs:label   \"Datering Oudste Stuk\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     rico:Date ;\n                                   sh:group     series:reeksGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     3.0 ;\n                                   sh:path      rico:hasBeginningDate\n                                 ] ;\n        sh:property              [ rdfs:label   \"Uiterlijke vorm\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     rico:Extent ;\n                                   sh:group     series:reeksGroup ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     5.0 ;\n                                   sh:path      rico:hasExtent\n                                 ] ;\n        sh:property              [ rdfs:label   \"Datering Jongste Stuk\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     rico:Date ;\n                                   sh:group     series:reeksGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     4.0 ;\n                                   sh:path      rico:hasEndDate\n                                 ] ;\n        sh:property              [ rdfs:label         \"Titel\"@nl ;\n                                   memorix:inTitleAt  2 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           series:reeksGroup ;\n                                   sh:order           2.0 ;\n                                   sh:path            rico:name\n                                 ] ;\n        sh:property              [ rdfs:label         \"Rubriekscode\"@nl ;\n                                   memorix:inTitleAt  1 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           series:reeksGroup ;\n                                   sh:order           1.0 ;\n                                   sh:path            rico:identifier\n                                 ] ;\n        sh:property              [ rdfs:label   \"Bovenliggend Archief of Reeks\"@nl ;\n                                   dash:editor  memorix:LinkedRecordEditor ;\n                                   sh:group     series:reeksGroup ;\n                                   sh:nodeKind  sh:IRI ;\n                                   sh:or        ( sh:class recordtypes:Fonds ) ;\n                                   sh:order     6.0 ;\n                                   sh:path      rico:isOrWasPartOf\n                                 ] ;\n        sh:targetClass           recordtypes:Series .\n\nrico:Date  rdf:type           sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label           \"Datering\"@nl ;\n                                dash:editor          memorix:DateEditor ;\n                                memorix:inSummaryAt  2.0 ;\n                                sh:datatype          xsd:integer ;\n                                sh:order             2.0 ;\n                                sh:path              rico:normalizedDateValue\n                              ] ;\n        sh:property           [ rdfs:label   \"Datering (tekst)\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      rico:expressedDate\n                              ] ;\n        sh:targetClass        rico:Date .\n\nrico:Extent  rdf:type         sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label           \"Eenheid\" ;\n                                memorix:inSummaryAt  4.0 ;\n                                sh:datatype          xsd:string ;\n                                sh:order             2.0 ;\n                                sh:path              rico:UnitOfMeasurement\n                              ] ;\n        sh:property           [ rdfs:label           \"Aantal\" ;\n                                memorix:inSummaryAt  3.0 ;\n                                sh:datatype          xsd:integer ;\n                                sh:order             1.0 ;\n                                sh:path              rico:quantity\n                              ] ;\n        sh:targetClass        rico:Extent .\n"},{"id":"89fa4441-03dd-4c23-85d8-9d2d39cca336","name":"Create Fonds Recordtype","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix fonds: </resources/recordtypes/Fonds#> .\n@prefix vocabularies: </vocabularies/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix html: <http://www.w3.org/1999/xhtml/> .\n@prefix dash: <http://datashapes.org/dash#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .\n@prefix ric-rst: <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix ric-dft: <https://www.ica.org/standards/RiC/vocabularies/documentaryFormTypes#> .\n@prefix owl: <http://www.w3.org/2002/07/owl#> .\n\nrecordtypes:Fonds\n  a memorix:Recordtype, sh:NodeShape ;\n  owl:equivalentClass [\n    a rico:RecordSet ;\n    rico:hasRecordSetType ric-rst:Fonds ;\n  ];\n  rdfs:label \"Archiefblok\"@nl ;\n  rdfs:comment \"Standaard Recordtype voor Archiefblok\"@nl ;\n  dc:identifier \"Fonds\" ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass recordtypes:Fonds ;\n  dash:defaultViewForRole dash:all ;\n  sh:property [\n    sh:path rico:name ;\n    rdfs:label \"Archiefblok naam\"@nl ;\n    sh:order 1.0 ;\n    sh:group fonds:fondsGroup  ;\n    memorix:inTitleAt 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Archiefblok nummer\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:hasOrHadIdentifier ;\n    sh:order 2.0 ;\n    sh:group fonds:fondsGroup  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class rico:Identifier ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering Oudste Stuk\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:hasBeginningDate ;\n    sh:order 3.0 ;\n    sh:group fonds:fondsGroup  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class fonds:DateOldest ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering Jongste Stuk\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:hasEndDate ;\n    sh:order 4.0 ;\n    sh:group fonds:fondsGroup  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class fonds:DateYoungest ;\n  ] ;\n  sh:property [\n    rdfs:label \"Inleiding\"@nl ;\n    sh:path rico:scopeAndContent ;\n    sh:order 5.0 ;\n    sh:group fonds:fondsGroup  ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ] ;\n  sh:property [\n    rdfs:label \"Archiefvormer\"@nl ;\n    sh:path rico:hasCreator ;\n    sh:order 1.0 ;\n    sh:group fonds:creationGroup ;\n    dash:editor memorix:LinkedRecordEditor ;\n    sh:nodeKind sh:IRI ;\n    sh:or (\n      sh:class recordtypes:Persoon\n    )\n  ] ;\n  sh:property [\n    rdfs:label \"Periode vorming\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:isAssociatedWithDate ;\n    sh:order 2.0 ;\n    sh:group fonds:creationGroup  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class fonds:PeriodeVorming ;\n  ] ;\n  sh:property [\n    rdfs:label \"Zorgdrager\"@nl ;\n    sh:path rico:isOrWasUnderAuthorityOf ;\n    sh:order 3.0 ;\n    sh:group fonds:creationGroup ;\n    dash:editor memorix:LinkedRecordEditor ;\n    sh:nodeKind sh:IRI ;\n    sh:or (\n      sh:class recordtypes:Persoon\n    )\n  ] ;\n  sh:property [\n    rdfs:label \"Toegang\"@nl ;\n    sh:maxCount 10 ;\n    sh:path rico:isOrWasDescribedBy ;\n    sh:order 1.0 ;\n    sh:group fonds:findingAidGroup  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class fonds:FindingAid ;\n  ] ;\n  sh:property [\n    sh:path fonds:status ;\n    rdfs:label \"Status\"@nl ;\n    sh:maxCount 1 ;\n    sh:order 1.0 ;\n    sh:group fonds:statusGroup ;\n    sh:datatype xsd:string ;\n    #TODO Dit moet een link naar een vocabulaire worden\n  ] ;\n.\nrico:Identifier\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass rico:Identifier ;\n  sh:property [\n    rdfs:label \"Nummer\"@nl ;\n    sh:path rico:textualValue ;\n    sh:order 1.0 ;\n    sh:minCount 1 ;\n    memorix:inTitleAt 1 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Nummer toevoeging\"@nl ;\n    sh:path fonds:fondsNumberAddition ;\n    owl:equivalentProperty rico:textualValue ; #paden moeten uniek zijn binnen een NodeShape, dus deze mapping naar rico moet via een \"omweg\"\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    memorix:inTitleAt 2 ;\n  ]\n.\nfonds:FindingAid # Toegang\n  a sh:NodeShape ;\n  owl:equivalentClass [\n    a rico:Record ;\n    rico:hasDocumentaryFormType ric-dft:FindingAid ;\n  ];\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass fonds:FindingAid ;\n  sh:property [\n    rdfs:label \"Inventarisatie Door\"@nl ;\n    sh:path rico:hasCreator ;\n    sh:order 1.0 ;\n    dash:editor memorix:LinkedRecordEditor ;\n    sh:nodeKind sh:IRI ;\n    sh:or (\n      sh:class recordtypes:Persoon\n    )\n  ] ;\n  sh:property [\n    rdfs:label \"Inventarisatie datum\"@nl ;\n    sh:path rico:publicationDate ;\n    sh:order 1.0 ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ]\n.\nfonds:DateOldest\n  a sh:NodeShape ;\n  owl:equivalentClass rico:Date ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass fonds:DateOldest ;\n  sh:property [\n    rdfs:label \"Datering oudste stuk (tekst)\"@nl ;\n    sh:path rico:expressedDate ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering oudste stuk\"@nl ;\n    sh:path rico:normalizedDateValue ;\n    sh:order 2.0 ;\n    memorix:inSummaryAt 2.0 ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ] ;\n.\nfonds:DateYoungest\n  a sh:NodeShape ;\n  owl:equivalentClass rico:Date ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass fonds:DateYoungest ;\n  sh:property [\n    rdfs:label \"Datering jongste stuk (tekst)\"@nl ;\n    sh:path rico:expressedDate ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering jongste stuk\"@nl ;\n    sh:path rico:normalizedDateValue ;\n    sh:order 2.0 ;\n    memorix:inSummaryAt 2.0 ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ] ;\n.\nfonds:PeriodeVorming\n  a sh:nodeshape ;\n  owl:equivalentClass rico:DateRange ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass fonds:PeriodeVorming ;\n  sh:property [\n    rdfs:label \"Datum vorming (tekst)\"@nl ;\n    sh:path rico:expressedDate ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Begin vorming\"@nl ;\n    sh:path rico:hasBeginningDate ;\n    sh:order 2.0 ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ] ;\n  sh:property [\n    rdfs:label \"Einde vorming\"@nl ;\n    sh:path rico:hasEndDate ;\n    sh:order 3.0 ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ] ;\n.\nfonds:fondsGroup a sh:PropertyGroup ;\n  rdfs:label \"Archiefblok\"@nl ;\n  sh:order 1.0\n.\nfonds:creationGroup a sh:PropertyGroup ;\n  rdfs:label \"Archiefvorming\"@nl ;\n  sh:order 2.0\n.\nfonds:findingAidGroup a sh:PropertyGroup ;\n  rdfs:label \"Toegang\"@nl ;\n  sh:order 3.0\n.\nfonds:statusGroup a sh:PropertyGroup ;\n  rdfs:label \"Status\"@nl ;\n  sh:order 4.0\n."},"url":"https://test.memorix.io/resources/recordtypes"},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 28 Jul 2021 07:04:30 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix dash:         <http://datashapes.org/dash#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix fonds:        <https://example.memorix-test.nl/resources/recordtypes/Fonds#> .\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix owl:          <http://www.w3.org/2002/07/owl#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:  <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix ric-dft:      <https://www.ica.org/standards/RiC/vocabularies/documentaryFormTypes#> .\n@prefix ric-rst:      <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix rico:         <https://www.ica.org/standards/RiC/ontology#> .\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies: <https://example.memorix-test.nl/vocabularies/> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\nrecordtypes:Fonds  rdf:type      sh:NodeShape , memorix:Recordtype ;\n        rdfs:comment             \"Standaard Recordtype voor Archiefblok\"@nl ;\n        rdfs:label               \"Archiefblok\"@nl ;\n        dash:defaultViewForRole  dash:all ;\n        dc:identifier            \"Fonds\" ;\n        owl:equivalentClass      [ rdf:type               rico:RecordSet ;\n                                   rico:hasRecordSetType  ric-rst:Fonds\n                                 ] ;\n        sh:closed                true ;\n        sh:ignoredProperties     ( rdf:type ) ;\n        sh:property              [ rdfs:label   \"Inleiding\"@nl ;\n                                   dash:editor  dash:TextAreaEditor ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     fonds:fondsGroup ;\n                                   sh:order     5.0 ;\n                                   sh:path      rico:scopeAndContent\n                                 ] ;\n        sh:property              [ rdfs:label   \"Status\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     fonds:statusGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:order     1.0 ;\n                                   sh:path      fonds:status\n                                 ] ;\n        sh:property              [ rdfs:label   \"Zorgdrager\"@nl ;\n                                   dash:editor  memorix:LinkedRecordEditor ;\n                                   sh:group     fonds:creationGroup ;\n                                   sh:nodeKind  sh:IRI ;\n                                   sh:or        ( sh:class recordtypes:Persoon ) ;\n                                   sh:order     3.0 ;\n                                   sh:path      rico:isOrWasUnderAuthorityOf\n                                 ] ;\n        sh:property              [ rdfs:label   \"Datering Jongste Stuk\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     fonds:DateYoungest ;\n                                   sh:group     fonds:fondsGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     4.0 ;\n                                   sh:path      rico:hasEndDate\n                                 ] ;\n        sh:property              [ rdfs:label   \"Toegang\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     fonds:FindingAid ;\n                                   sh:group     fonds:findingAidGroup ;\n                                   sh:maxCount  10 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     1.0 ;\n                                   sh:path      rico:isOrWasDescribedBy\n                                 ] ;\n        sh:property              [ rdfs:label   \"Archiefvormer\"@nl ;\n                                   dash:editor  memorix:LinkedRecordEditor ;\n                                   sh:group     fonds:creationGroup ;\n                                   sh:nodeKind  sh:IRI ;\n                                   sh:or        ( sh:class recordtypes:Persoon ) ;\n                                   sh:order     1.0 ;\n                                   sh:path      rico:hasCreator\n                                 ] ;\n        sh:property              [ rdfs:label   \"Periode vorming\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     fonds:PeriodeVorming ;\n                                   sh:group     fonds:creationGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     2.0 ;\n                                   sh:path      rico:isAssociatedWithDate\n                                 ] ;\n        sh:property              [ rdfs:label   \"Archiefblok nummer\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     rico:Identifier ;\n                                   sh:group     fonds:fondsGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     2.0 ;\n                                   sh:path      rico:hasOrHadIdentifier\n                                 ] ;\n        sh:property              [ rdfs:label   \"Datering Oudste Stuk\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     fonds:DateOldest ;\n                                   sh:group     fonds:fondsGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     3.0 ;\n                                   sh:path      rico:hasBeginningDate\n                                 ] ;\n        sh:property              [ rdfs:label         \"Archiefblok naam\"@nl ;\n                                   memorix:inTitleAt  3.0 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           fonds:fondsGroup ;\n                                   sh:order           1.0 ;\n                                   sh:path            rico:name\n                                 ] ;\n        sh:targetClass           recordtypes:Fonds .\n\nfonds:statusGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Status\"@nl ;\n        sh:order    4.0 .\n\nfonds:PeriodeVorming  rdf:type  sh:nodeshape ;\n        owl:equivalentClass   rico:DateRange ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Einde vorming\"@nl ;\n                                dash:editor  memorix:DateEditor ;\n                                sh:datatype  xsd:integer ;\n                                sh:order     3.0 ;\n                                sh:path      rico:hasEndDate\n                              ] ;\n        sh:property           [ rdfs:label   \"Begin vorming\"@nl ;\n                                dash:editor  memorix:DateEditor ;\n                                sh:datatype  xsd:integer ;\n                                sh:order     2.0 ;\n                                sh:path      rico:hasBeginningDate\n                              ] ;\n        sh:property           [ rdfs:label   \"Datum vorming (tekst)\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      rico:expressedDate\n                              ] ;\n        sh:targetClass        fonds:PeriodeVorming .\n\nrico:Identifier  rdf:type     sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label              \"Nummer toevoeging\"@nl ;\n                                memorix:inTitleAt       2 ;\n                                owl:equivalentProperty  rico:textualValue ;\n                                sh:datatype             xsd:string ;\n                                sh:order                1.0 ;\n                                sh:path                 fonds:fondsNumberAddition\n                              ] ;\n        sh:property           [ rdfs:label         \"Nummer\"@nl ;\n                                memorix:inTitleAt  1 ;\n                                sh:datatype        xsd:string ;\n                                sh:minCount        1 ;\n                                sh:order           1.0 ;\n                                sh:path            rico:textualValue\n                              ] ;\n        sh:targetClass        rico:Identifier .\n\nfonds:fondsGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Archiefblok\"@nl ;\n        sh:order    1.0 .\n\nfonds:FindingAid  rdf:type    sh:NodeShape ;\n        owl:equivalentClass   [ rdf:type                     rico:Record ;\n                                rico:hasDocumentaryFormType  ric-dft:FindingAid\n                              ] ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Inventarisatie datum\"@nl ;\n                                dash:editor  memorix:DateEditor ;\n                                sh:datatype  xsd:integer ;\n                                sh:order     1.0 ;\n                                sh:path      rico:publicationDate\n                              ] ;\n        sh:property           [ rdfs:label   \"Inventarisatie Door\"@nl ;\n                                dash:editor  memorix:LinkedRecordEditor ;\n                                sh:nodeKind  sh:IRI ;\n                                sh:or        ( sh:class recordtypes:Persoon ) ;\n                                sh:order     1.0 ;\n                                sh:path      rico:hasCreator\n                              ] ;\n        sh:targetClass        fonds:FindingAid .\n\nfonds:DateOldest  rdf:type    sh:NodeShape ;\n        owl:equivalentClass   rico:Date ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label           \"Datering oudste stuk\"@nl ;\n                                dash:editor          memorix:DateEditor ;\n                                memorix:inSummaryAt  2.0 ;\n                                sh:datatype          xsd:integer ;\n                                sh:order             2.0 ;\n                                sh:path              rico:normalizedDateValue\n                              ] ;\n        sh:property           [ rdfs:label   \"Datering oudste stuk (tekst)\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      rico:expressedDate\n                              ] ;\n        sh:targetClass        fonds:DateOldest .\n\nfonds:DateYoungest  rdf:type  sh:NodeShape ;\n        owl:equivalentClass   rico:Date ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label           \"Datering jongste stuk\"@nl ;\n                                dash:editor          memorix:DateEditor ;\n                                memorix:inSummaryAt  2.0 ;\n                                sh:datatype          xsd:integer ;\n                                sh:order             2.0 ;\n                                sh:path              rico:normalizedDateValue\n                              ] ;\n        sh:property           [ rdfs:label   \"Datering jongste stuk (tekst)\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      rico:expressedDate\n                              ] ;\n        sh:targetClass        fonds:DateYoungest .\n\nfonds:findingAidGroup\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Toegang\"@nl ;\n        sh:order    3.0 .\n\nfonds:creationGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Archiefvorming\"@nl ;\n        sh:order    2.0 .\n"},{"id":"6880fa05-5cf1-4c36-a4a5-585fb31ae16d","name":"Create File Recordtype","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix file: </resources/recordtypes/File#> .\n@prefix vocabularies: </vocabularies/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix html: <http://www.w3.org/1999/xhtml/> .\n@prefix dash: <http://datashapes.org/dash#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .\n@prefix ric-rst: <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix ric-dft: <https://www.ica.org/standards/RiC/vocabularies/documentaryFormTypes#> .\n@prefix owl: <http://www.w3.org/2002/07/owl#> .\n\nrecordtypes:File\n  a memorix:Recordtype, sh:NodeShape ;\n  owl:equivalentClass [\n    a rico:RecordSet ;\n    rico:hasRecordSetType ric-rst:File ;\n  ];\n  rdfs:label \"Bestanddeel\"@nl ;\n  rdfs:comment \"Standaard Recordtype voor Bestanddeel\"@nl ;\n  dc:identifier \"File\" ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass recordtypes:File ;\n  dash:defaultViewForRole dash:all ;\n  sh:property [\n    rdfs:label \"Bestanddeel nummer\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:hasOrHadIdentifier ;\n    sh:order 1.0 ;\n    sh:group file:contentDescription  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class rico:Identifier ;\n  ] ;\n  sh:property [\n    sh:path rico:title ;\n    rdfs:label \"Beschrijving\"@nl ;\n    sh:order 2.0 ;\n    memorix:inTitleAt 3.0 ;\n    sh:group file:contentDescription  ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering Oudste Stuk\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:hasBeginningDate ;\n    sh:order 3.0 ;\n    sh:group file:contentDescription  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class file:DateOldest ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering Jongste Stuk\"@nl ;\n    sh:maxCount 1 ;\n    sh:path rico:hasEndDate ;\n    sh:order 4.0 ;\n    sh:group file:contentDescription  ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class file:DateYoungest ;\n  ] ;\n  sh:property [\n    rdfs:label \"Bereik en Inhoud\"@nl ;\n    sh:path rico:scopeAndContent ;\n    sh:order 5.0 ;\n    sh:group file:contentDescription  ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ] ;\n  sh:property [\n    rdfs:label \"Stuksoort\"@nl ;\n    sh:path file:fileType ;\n    sh:order 6.0 ;\n    sh:group file:contentDescription  ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Status\"@nl ;\n    sh:path rico:isOrWasRecordStateOfAllMembersOf ;\n    sh:order 7.0 ;\n    sh:group file:contentDescription  ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Bovenliggende Reeks of Archief\"@nl ;\n    sh:path rico:isOrWasPartOf ;\n    sh:order 8.0 ;\n    sh:group file:contentDescription ;\n    dash:editor memorix:LinkedRecordEditor ;\n    sh:nodeKind sh:IRI ;\n    sh:or (\n      sh:class recordtypes:Fonds\n      sh:class recordtypes:Series\n    )\n  ] ;\n  sh:property [\n    rdfs:label \"Uiterlijke vorm\"@nl ;\n    sh:path rico:hasExtent;\n    sh:order 1.0 ;\n    sh:group file:physicalDescription ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class rico:Extent ;\n  ] ;\n  sh:property [\n    rdfs:label \"Film\"@nl ;\n    sh:path file:hasFilmInstantiation ;\n    owl:equivalentProperty rico:hasInstantiation ;\n    sh:maxCount 1 ;\n    sh:order 2.0 ;\n    sh:group file:physicalDescription ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class file:FilmInstantiation ;\n  ] ;\n  sh:property [\n    rdfs:label \"Digitale bestanden\"@nl ;\n    sh:path file:hasDigitalInstantiation ;\n    owl:equivalentProperty rico:hasInstantiation ;\n    sh:maxCount 1 ;\n    sh:order 3.0 ;\n    sh:group file:physicalDescription ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class file:DigitalInstantiation ;\n  ] ;\n.\nrico:Identifier\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass rico:Identifier ;\n  sh:property [\n    rdfs:label \"Nummer\"@nl ;\n    sh:path rico:textualValue ;\n    sh:order 1.0 ;\n    sh:minCount 1 ;\n    memorix:inTitleAt 1 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Nummer toevoeging\"@nl ;\n    sh:path file:fondsNumberAddition ;\n    owl:equivalentProperty rico:textualValue ; #paden moeten uniek zijn binnen een NodeShape, dus deze mapping naar rico moet via een \"omweg\"\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    memorix:inTitleAt 2 ;\n  ]\n.\nfile:DateOldest\n  a sh:NodeShape ;\n  owl:equivalentClass rico:Date ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass file:DateOldest ;\n  sh:property [\n    rdfs:label \"Datering oudste stuk (tekst)\"@nl ;\n    sh:path rico:expressedDate ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering oudste stuk\"@nl ;\n    sh:path rico:normalizedDateValue ;\n    sh:order 2.0 ;\n    memorix:inSummaryAt 2.0 ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ] ;\n.\nfile:DateYoungest\n  a sh:NodeShape ;\n  owl:equivalentClass rico:Date ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass file:DateYoungest ;\n  sh:property [\n    rdfs:label \"Datering jongste stuk (tekst)\"@nl ;\n    sh:path rico:expressedDate ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datering jongste stuk\"@nl ;\n    sh:path rico:normalizedDateValue ;\n    sh:order 2.0 ;\n    memorix:inSummaryAt 2.0 ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ] ;\n.\nrico:Extent\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass rico:Extent ;\n  sh:property [\n    rdfs:label \"Aantal\" ;\n    sh:path rico:quantity ;\n    sh:order 1.0 ;\n    memorix:inSummaryAt 3.0 ;\n    sh:datatype xsd:integer  ;\n    ] ;\n  sh:property [\n    rdfs:label \"Eenheid\" ;\n    sh:path rico:UnitOfMeasurement ;\n    sh:order 2.0 ;\n    memorix:inSummaryAt 4.0 ;\n    sh:datatype xsd:string ;\n    #TODO Dit moet een link naar een vocabulaire worden\n    ] ;\n.\nfile:FilmInstantiation\n  a sh:NodeShape ;\n  owl:equivalentClass rico:Instantiation ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass file:FilmInstantiation ;\n  sh:property [\n    rdfs:label \"Filmnummer\" ;\n    sh:path rico:identifier ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string  ;\n    ] ;\n.\nfile:DigitalInstantiation\n  a sh:NodeShape ;\n  owl:equivalentClass rico:Instantiation ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass file:DigitalInstantiation ;\n  sh:property [\n    rdfs:label \"Digitale vindplaats\" ;\n    sh:path file:locationDigitalFiles ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string  ;\n  ] ;\n.\nfile:contentDescription a sh:PropertyGroup ;\n  rdfs:label \"Inhoudelijke beschrijving\"@nl ;\n  sh:order 1.0\n.\nfile:physicalDescription a sh:PropertyGroup ;\n  rdfs:label \"Fysieke beschrijving\"@nl ;\n  sh:order 2.0\n."},"url":"https://test.memorix.io/resources/recordtypes"},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 28 Jul 2021 07:06:00 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix dash:         <http://datashapes.org/dash#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix file:         <https://example.memorix-test.nl/resources/recordtypes/File#> .\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix owl:          <http://www.w3.org/2002/07/owl#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:  <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix ric-dft:      <https://www.ica.org/standards/RiC/vocabularies/documentaryFormTypes#> .\n@prefix ric-rst:      <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix rico:         <https://www.ica.org/standards/RiC/ontology#> .\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies: <https://example.memorix-test.nl/vocabularies/> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\nfile:DateYoungest  rdf:type   sh:NodeShape ;\n        owl:equivalentClass   rico:Date ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label           \"Datering jongste stuk\"@nl ;\n                                dash:editor          memorix:DateEditor ;\n                                memorix:inSummaryAt  2.0 ;\n                                sh:datatype          xsd:integer ;\n                                sh:order             2.0 ;\n                                sh:path              rico:normalizedDateValue\n                              ] ;\n        sh:property           [ rdfs:label   \"Datering jongste stuk (tekst)\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      rico:expressedDate\n                              ] ;\n        sh:targetClass        file:DateYoungest .\n\nfile:DigitalInstantiation\n        rdf:type              sh:NodeShape ;\n        owl:equivalentClass   rico:Instantiation ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Digitale vindplaats\" ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      file:locationDigitalFiles\n                              ] ;\n        sh:targetClass        file:DigitalInstantiation .\n\nfile:FilmInstantiation\n        rdf:type              sh:NodeShape ;\n        owl:equivalentClass   rico:Instantiation ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Filmnummer\" ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      rico:identifier\n                              ] ;\n        sh:targetClass        file:FilmInstantiation .\n\nrico:Identifier  rdf:type     sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label              \"Nummer toevoeging\"@nl ;\n                                memorix:inTitleAt       2 ;\n                                owl:equivalentProperty  rico:textualValue ;\n                                sh:datatype             xsd:string ;\n                                sh:order                1.0 ;\n                                sh:path                 file:fondsNumberAddition\n                              ] ;\n        sh:property           [ rdfs:label         \"Nummer\"@nl ;\n                                memorix:inTitleAt  1 ;\n                                sh:datatype        xsd:string ;\n                                sh:minCount        1 ;\n                                sh:order           1.0 ;\n                                sh:path            rico:textualValue\n                              ] ;\n        sh:targetClass        rico:Identifier .\n\nfile:physicalDescription\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Fysieke beschrijving\"@nl ;\n        sh:order    2.0 .\n\nrecordtypes:File  rdf:type       sh:NodeShape , memorix:Recordtype ;\n        rdfs:comment             \"Standaard Recordtype voor Bestanddeel\"@nl ;\n        rdfs:label               \"Bestanddeel\"@nl ;\n        dash:defaultViewForRole  dash:all ;\n        dc:identifier            \"File\" ;\n        owl:equivalentClass      [ rdf:type               rico:RecordSet ;\n                                   rico:hasRecordSetType  ric-rst:File\n                                 ] ;\n        sh:closed                true ;\n        sh:ignoredProperties     ( rdf:type ) ;\n        sh:property              [ rdfs:label   \"Uiterlijke vorm\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     rico:Extent ;\n                                   sh:group     file:physicalDescription ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     1.0 ;\n                                   sh:path      rico:hasExtent\n                                 ] ;\n        sh:property              [ rdfs:label   \"Datering Oudste Stuk\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     file:DateOldest ;\n                                   sh:group     file:contentDescription ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     3.0 ;\n                                   sh:path      rico:hasBeginningDate\n                                 ] ;\n        sh:property              [ rdfs:label   \"Bereik en Inhoud\"@nl ;\n                                   dash:editor  dash:TextAreaEditor ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     file:contentDescription ;\n                                   sh:order     5.0 ;\n                                   sh:path      rico:scopeAndContent\n                                 ] ;\n        sh:property              [ rdfs:label   \"Datering Jongste Stuk\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     file:DateYoungest ;\n                                   sh:group     file:contentDescription ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     4.0 ;\n                                   sh:path      rico:hasEndDate\n                                 ] ;\n        sh:property              [ rdfs:label   \"Bovenliggende Reeks of Archief\"@nl ;\n                                   dash:editor  memorix:LinkedRecordEditor ;\n                                   sh:group     file:contentDescription ;\n                                   sh:nodeKind  sh:IRI ;\n                                   sh:or        ( [ sh:class recordtypes:Fonds ] [ sh:class recordtypes:Series ] ) ;\n                                   sh:order     8.0 ;\n                                   sh:path      rico:isOrWasPartOf\n                                 ] ;\n        sh:property              [ rdfs:label              \"Digitale bestanden\"@nl ;\n                                   dash:viewer             dash:DetailsEditor ;\n                                   owl:equivalentProperty  rico:hasInstantiation ;\n                                   sh:class                file:DigitalInstantiation ;\n                                   sh:group                file:physicalDescription ;\n                                   sh:maxCount             1 ;\n                                   sh:nodeKind             sh:BlankNode ;\n                                   sh:order                3.0 ;\n                                   sh:path                 file:hasDigitalInstantiation\n                                 ] ;\n        sh:property              [ rdfs:label   \"Status\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     file:contentDescription ;\n                                   sh:order     7.0 ;\n                                   sh:path      rico:isOrWasRecordStateOfAllMembersOf\n                                 ] ;\n        sh:property              [ rdfs:label   \"Stuksoort\"@nl ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     file:contentDescription ;\n                                   sh:order     6.0 ;\n                                   sh:path      file:fileType\n                                 ] ;\n        sh:property              [ rdfs:label              \"Film\"@nl ;\n                                   dash:viewer             dash:DetailsEditor ;\n                                   owl:equivalentProperty  rico:hasInstantiation ;\n                                   sh:class                file:FilmInstantiation ;\n                                   sh:group                file:physicalDescription ;\n                                   sh:maxCount             1 ;\n                                   sh:nodeKind             sh:BlankNode ;\n                                   sh:order                2.0 ;\n                                   sh:path                 file:hasFilmInstantiation\n                                 ] ;\n        sh:property              [ rdfs:label   \"Bestanddeel nummer\"@nl ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     rico:Identifier ;\n                                   sh:group     file:contentDescription ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     1.0 ;\n                                   sh:path      rico:hasOrHadIdentifier\n                                 ] ;\n        sh:property              [ rdfs:label         \"Beschrijving\"@nl ;\n                                   dash:editor        dash:TextAreaEditor ;\n                                   memorix:inTitleAt  3.0 ;\n                                   sh:datatype        xsd:string ;\n                                   sh:group           file:contentDescription ;\n                                   sh:order           2.0 ;\n                                   sh:path            rico:title\n                                 ] ;\n        sh:targetClass           recordtypes:File .\n\nfile:DateOldest  rdf:type     sh:NodeShape ;\n        owl:equivalentClass   rico:Date ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label           \"Datering oudste stuk\"@nl ;\n                                dash:editor          memorix:DateEditor ;\n                                memorix:inSummaryAt  2.0 ;\n                                sh:datatype          xsd:integer ;\n                                sh:order             2.0 ;\n                                sh:path              rico:normalizedDateValue\n                              ] ;\n        sh:property           [ rdfs:label   \"Datering oudste stuk (tekst)\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      rico:expressedDate\n                              ] ;\n        sh:targetClass        file:DateOldest .\n\nfile:contentDescription\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Inhoudelijke beschrijving\"@nl ;\n        sh:order    1.0 .\n\nrico:Extent  rdf:type         sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label           \"Eenheid\" ;\n                                memorix:inSummaryAt  4.0 ;\n                                sh:datatype          xsd:string ;\n                                sh:order             2.0 ;\n                                sh:path              rico:UnitOfMeasurement\n                              ] ;\n        sh:property           [ rdfs:label           \"Aantal\" ;\n                                memorix:inSummaryAt  3.0 ;\n                                sh:datatype          xsd:integer ;\n                                sh:order             1.0 ;\n                                sh:path              rico:quantity\n                              ] ;\n        sh:targetClass        rico:Extent .\n"},{"id":"54323be4-eb78-47c7-90f6-b534c790da0c","name":"Create Deed Recordtype","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix deed: </resources/recordtypes/Deed#> .\n@prefix vocabularies: </vocabularies/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix sh: <http://www.w3.org/ns/shacl#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix recordtypes: </resources/recordtypes/> .\n@prefix html: <http://www.w3.org/1999/xhtml/> .\n@prefix dash: <http://datashapes.org/dash#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n@prefix owl: <http://www.w3.org/2002/07/owl#> .\n@prefix rico: <https://www.ica.org/standards/RiC/ontology#> .\n@prefix ric-rst: <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix ric-dft: <https://www.ica.org/standards/RiC/vocabularies/documentaryFormTypes#> .\n\nrecordtypes:Deed\n  a memorix:Recordtype, sh:NodeShape ;\n  rdfs:label \"Akte\"@nl  ;\n  rdfs:comment \"Standaard Recordtype voor Aktes\"@nl ;\n  dc:identifier \"Deed\" ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass recordtypes:Deed ;\n  owl:equivalentClass rico:Record ;\n  dash:defaultViewForRole dash:all ;\n  sh:property [\n    sh:path rico:hasDocumentaryFormType ;\n    rdfs:label \"Akte - Type\"@nl ;\n    sh:maxCount 1 ;\n    sh:order 1.0 ;\n    sh:group deed:deedGroup ;\n    memorix:inSummaryAt 1.0 ;\n    sh:datatype xsd:string ;\n    #TODO Dit moet een link naar een vocabulaire worden\n  ] ;\n  sh:property [\n    rdfs:label \"Gebeurtenis\" ;\n    sh:path rico:isAssociatedWithEvent ;\n    sh:maxCount 1 ;\n    sh:order 2.0 ;\n    sh:group deed:deedGroup ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class deed:Event ;\n  ] ;\n  sh:property [\n    rdfs:label \"Bron\"@nl ;\n    rdfs:comment \"Inventarisnummer waar de akte deel van uit maakt\"@nl ;\n    sh:maxCount 1 ;\n    sh:path deed:hasSource ;\n    sh:order 4.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class deed:Source ;\n    sh:group deed:deedGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Persoon\"@nl ;\n    rdfs:comment \"Persoon die voorkomt op de akte en zijn rol\"@nl ;\n    sh:maxCount 999 ;\n    sh:path rico:hasOrHadSubject ;\n    sh:order 5.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class deed:Person ;\n    sh:group deed:personsGroup  ;\n  ] ;\n  sh:property [\n    rdfs:label \"Locatie\"@nl ;\n    rdfs:comment \"Locaties die voorkomen op de akte\"@nl ;\n    sh:maxCount 999 ;\n    sh:path deed:location ;\n    sh:order 6.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class deed:Location ;\n    sh:group deed:locationsGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Adres\"@nl ;\n    rdfs:comment \"Adressen die voorkomen op de akte\"@nl ;\n    sh:maxCount 999 ;\n    sh:path deed:address ;\n    sh:order 7.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class deed:Address ;\n    sh:group deed:addressesGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Bijzonderheid\"@nl ;\n    rdfs:comment \"Bijzonderheid bij deze akte\"@nl ;\n    sh:maxCount 10 ;\n    sh:path deed:details ;\n    sh:order 8.0 ;\n    dash:viewer dash:DetailsEditor ;\n    sh:nodeKind sh:BlankNode ;\n    sh:class deed:Details ;\n    sh:group deed:detailsGroup ;\n  ] ;\n  sh:property [\n    rdfs:label \"Opmerkingen bij akte\"@nl ;\n    sh:path deed:notes ;\n    sh:maxCount 1 ;\n    sh:order 10.0 ;\n    sh:group deed:remarksGroup ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ] ;\n.\ndeed:Event\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass deed:Event ;\n  sh:property [\n    rdfs:label \"Type gebeurtenis\"@nl ;\n    sh:path rico:hasEventType ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    memorix:inTitleAt 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Datum gebeurtenis\"@nl ;\n    sh:path deed:hasDate ;\n    sh:maxCount 1 ;\n    sh:order 3.0 ;\n    sh:group deed:deedGroup ;\n    sh:datatype xsd:integer ;\n    dash:editor memorix:DateEditor ;\n  ] ;\n.\ndeed:Source\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass deed:Source ;\n  sh:property [\n    rdfs:label \"Index Naam\"@nl ;\n    sh:path deed:sourceIndexName ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    memorix:inTitleAt 1.0 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Inventarisnummer\"@nl ;\n    sh:path rico:isOrWasIncludedIn ;\n    sh:order 2.0 ;\n    sh:nodeKind sh:IRI ;\n    sh:or (\n      sh:class recordtypes:File\n    )\n  ] ;\n  sh:property [\n    rdfs:label \"Bronverwijzing\"@nl ;\n    sh:path deed:sourceReference ;\n    sh:order 3.0 ;\n    sh:datatype xsd:string ;\n  ]\n.\ndeed:Person\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass deed:Person ;\n  sh:property [\n    rdfs:label \"Rol\"@nl ;\n    sh:path deed:personRole ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    #TODO dit moet een link naar een vocabulaire worden\n  ] ;\n  sh:property [\n    rdfs:label \"Persoonsvermelding\"@nl ;\n    sh:path deed:personObservation ;\n    sh:order 2.0 ;\n    dash:editor memorix:LinkedRecordEditor ;\n    sh:nodeKind sh:IRI ;\n    sh:or (\n      recordtypes:Persoonsvermelding\n    )\n  ] ;\n.\ndeed:Location\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass deed:Location ;\n  sh:property [\n    rdfs:label \"Locatie - Type\"@nl ;\n    sh:path deed:locationType ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n    #TODO dit moet een link naar een vocabulaire worden\n  ] ;\n  sh:property [\n    rdfs:label \"Benaming in bron van locatie\"@nl ;\n    sh:path deed:locationNameInSource ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Gestandaardiseerde locatie\"@nl ;\n    sh:path deed:locationStandardisedTerm ;\n    sh:order 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Locatie - Uri\"@nl ;\n    sh:path deed:locationUri ;\n    sh:order 4.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Opmerking bij locatie\"@nl ;\n    sh:path deed:locationRemark ;\n    sh:order 5.0 ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ]\n.\ndeed:Address\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass deed:Address ;\n  sh:property [\n    rdfs:label \"Adres - Type\"@nl ;\n    sh:path deed:addressType ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  #TODO dit moet een link naar een vocabulaire worden\n  ] ;\n  sh:property [\n    rdfs:label \"Benaming in bron van adres\"@nl ;\n    sh:path deed:addressNameInSource ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Straatnaam in bron\"@nl ;\n    sh:path deed:addressStreetNameInSource ;\n    sh:order 3.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Gestandaardiseerd adres\"@nl ;\n    sh:path deed:addressStandardisedTerm ;\n    sh:order 4.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Verwijzingen (uris)\"@nl ;\n    sh:path deed:addressReferences ;\n    sh:order 5.0 ;\n    sh:datatype xsd:string ;\n    sh:maxCount 20 ;\n  ] ;\n  sh:property [\n    rdfs:label \"Huisnummer\"@nl ;\n    sh:path deed:addressHouseNumber ;\n    sh:order 6.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Huisnummer toevoeging\"@nl ;\n    sh:path deed:addressHouseNumberAddition ;\n    sh:order 7.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Huisnaam\"@nl ;\n    sh:path deed:addressHouseName ;\n    sh:order 8.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Buurtcode\"@nl ;\n    sh:path deed:addressNeighbourhoodCode ;\n    sh:order 9.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Buurtnummer\"@nl ;\n    sh:path deed:addressNeighbourhoodNumber ;\n    sh:order 10.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Kleinnummer\"@nl ;\n    sh:path deed:addressSmallNumber ;\n    sh:order 11.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Plaats\"@nl ;\n    sh:path deed:addressPlace ;\n    sh:order 12.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n  sh:property [\n    rdfs:label \"Opmerking bij adres\"@nl ;\n    sh:path deed:addressNote ;\n    sh:order 13.0 ;\n    sh:datatype xsd:string ;\n    dash:editor dash:TextAreaEditor ;\n  ] ;\n.\ndeed:Details\n  a sh:NodeShape ;\n  sh:closed true ;\n  sh:ignoredProperties ( rdf:type ) ;\n  sh:targetClass deed:Details ;\n  sh:property [\n    rdfs:label \"Bijzonderheid - Type\"@nl ;\n    sh:path deed:detailType ;\n    sh:order 1.0 ;\n    sh:datatype xsd:string ;\n  #TODO dit moet een link naar een vocabulaire worden\n  ] ;\n  sh:property [\n    rdfs:label \"Bijzonderheid\"@nl ;\n    sh:path deed:detailDetail ;\n    sh:order 2.0 ;\n    sh:datatype xsd:string ;\n  ] ;\n.\ndeed:deedGroup a sh:PropertyGroup ;\n  rdfs:label \"Akte\"@nl ;\n  sh:order 1.0\n.\ndeed:personsGroup a sh:PropertyGroup ;\n  rdfs:label \"Personen\"@nl ;\n  sh:order 2.0\n.\ndeed:locationsGroup a sh:PropertyGroup ;\n  rdfs:label \"Locaties\"@nl ;\n  sh:order 3.0\n.\ndeed:addressesGroup a sh:PropertyGroup ;\n  rdfs:label \"Adressen\"@nl ;\n  sh:order 4.0\n.\ndeed:detailsGroup a sh:PropertyGroup ;\n  rdfs:label \"Bijzonderheden\"@nl ;\n  sh:order 5.0\n.\ndeed:remarksGroup a sh:PropertyGroup ;\n  rdfs:label \"Opmerkingen\"@nl ;\n  sh:order 6.0\n."},"url":"https://test.memorix.io/resources/recordtypes"},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 28 Jul 2021 11:45:15 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix dash:         <http://datashapes.org/dash#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix deed:         <https://example.memorix-test.nl/resources/recordtypes/Deed#> .\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix owl:          <http://www.w3.org/2002/07/owl#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:  <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix ric-dft:      <https://www.ica.org/standards/RiC/vocabularies/documentaryFormTypes#> .\n@prefix ric-rst:      <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix rico:         <https://www.ica.org/standards/RiC/ontology#> .\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies: <https://example.memorix-test.nl/vocabularies/> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\ndeed:detailsGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Bijzonderheden\"@nl ;\n        sh:order    5.0 .\n\ndeed:personsGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Personen\"@nl ;\n        sh:order    2.0 .\n\ndeed:remarksGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Opmerkingen\"@nl ;\n        sh:order    6.0 .\n\ndeed:locationsGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Locaties\"@nl ;\n        sh:order    3.0 .\n\nrecordtypes:Deed  rdf:type       sh:NodeShape , memorix:Recordtype ;\n        rdfs:comment             \"Standaard Recordtype voor Aktes\"@nl ;\n        rdfs:label               \"Akte\"@nl ;\n        dash:defaultViewForRole  dash:all ;\n        dc:identifier            \"Deed\" ;\n        owl:equivalentClass      rico:Record ;\n        sh:closed                true ;\n        sh:ignoredProperties     ( rdf:type ) ;\n        sh:property              [ rdfs:comment  \"Locaties die voorkomen op de akte\"@nl ;\n                                   rdfs:label    \"Locatie\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Location ;\n                                   sh:group      deed:locationsGroup ;\n                                   sh:maxCount   999 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      6.0 ;\n                                   sh:path       deed:location\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Inventarisnummer waar de akte deel van uit maakt\"@nl ;\n                                   rdfs:label    \"Bron\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Source ;\n                                   sh:group      deed:deedGroup ;\n                                   sh:maxCount   1 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      4.0 ;\n                                   sh:path       deed:hasSource\n                                 ] ;\n        sh:property              [ rdfs:label           \"Akte - Type\"@nl ;\n                                   memorix:inSummaryAt  1.0 ;\n                                   sh:datatype          xsd:string ;\n                                   sh:group             deed:deedGroup ;\n                                   sh:maxCount          1 ;\n                                   sh:order             1.0 ;\n                                   sh:path              rico:hasDocumentaryFormType\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Persoon die voorkomt op de akte en zijn rol\"@nl ;\n                                   rdfs:label    \"Persoon\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Person ;\n                                   sh:group      deed:personsGroup ;\n                                   sh:maxCount   999 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      5.0 ;\n                                   sh:path       rico:hasOrHadSubject\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Bijzonderheid bij deze akte\"@nl ;\n                                   rdfs:label    \"Bijzonderheid\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Details ;\n                                   sh:group      deed:detailsGroup ;\n                                   sh:maxCount   10 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      8.0 ;\n                                   sh:path       deed:details\n                                 ] ;\n        sh:property              [ rdfs:label   \"Opmerkingen bij akte\"@nl ;\n                                   dash:editor  dash:TextAreaEditor ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     deed:remarksGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:order     10.0 ;\n                                   sh:path      deed:notes\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Adressen die voorkomen op de akte\"@nl ;\n                                   rdfs:label    \"Adres\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Address ;\n                                   sh:group      deed:addressesGroup ;\n                                   sh:maxCount   999 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      7.0 ;\n                                   sh:path       deed:address\n                                 ] ;\n        sh:property              [ rdfs:label   \"Gebeurtenis\" ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     deed:Event ;\n                                   sh:group     deed:deedGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     2.0 ;\n                                   sh:path      rico:isAssociatedWithEvent\n                                 ] ;\n        sh:targetClass           recordtypes:Deed .\n\ndeed:Location  rdf:type       sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Opmerking bij locatie\"@nl ;\n                                dash:editor  dash:TextAreaEditor ;\n                                sh:datatype  xsd:string ;\n                                sh:order     5.0 ;\n                                sh:path      deed:locationRemark\n                              ] ;\n        sh:property           [ rdfs:label   \"Locatie - Uri\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     4.0 ;\n                                sh:path      deed:locationUri\n                              ] ;\n        sh:property           [ rdfs:label   \"Gestandaardiseerde locatie\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     3.0 ;\n                                sh:path      deed:locationStandardisedTerm\n                              ] ;\n        sh:property           [ rdfs:label   \"Benaming in bron van locatie\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     2.0 ;\n                                sh:path      deed:locationNameInSource\n                              ] ;\n        sh:property           [ rdfs:label   \"Locatie - Type\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      deed:locationType\n                              ] ;\n        sh:targetClass        deed:Location .\n\ndeed:Source  rdf:type         sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Bronverwijzing\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     3.0 ;\n                                sh:path      deed:sourceReference\n                              ] ;\n        sh:property           [ rdfs:label   \"Inventarisnummer\"@nl ;\n                                sh:nodeKind  sh:IRI ;\n                                sh:or        ( sh:class recordtypes:File ) ;\n                                sh:order     2.0 ;\n                                sh:path      rico:isOrWasIncludedIn\n                              ] ;\n        sh:property           [ rdfs:label         \"Index Naam\"@nl ;\n                                memorix:inTitleAt  1.0 ;\n                                sh:datatype        xsd:string ;\n                                sh:order           1.0 ;\n                                sh:path            deed:sourceIndexName\n                              ] ;\n        sh:targetClass        deed:Source .\n\ndeed:Person  rdf:type         sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Persoonsvermelding\"@nl ;\n                                dash:editor  memorix:LinkedRecordEditor ;\n                                sh:nodeKind  sh:IRI ;\n                                sh:or        ( [ recordtypes:Persoonsvermelding ] ) ;\n                                sh:order     2.0 ;\n                                sh:path      deed:personObservation\n                              ] ;\n        sh:property           [ rdfs:label   \"Rol\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      deed:personRole\n                              ] ;\n        sh:targetClass        deed:Person .\n\ndeed:Details  rdf:type        sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Bijzonderheid\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     2.0 ;\n                                sh:path      deed:detailDetail\n                              ] ;\n        sh:property           [ rdfs:label   \"Bijzonderheid - Type\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      deed:detailType\n                              ] ;\n        sh:targetClass        deed:Details .\n\ndeed:addressesGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Adressen\"@nl ;\n        sh:order    4.0 .\n\ndeed:Address  rdf:type        sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Huisnummer toevoeging\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     7.0 ;\n                                sh:path      deed:addressHouseNumberAddition\n                              ] ;\n        sh:property           [ rdfs:label   \"Straatnaam in bron\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     3.0 ;\n                                sh:path      deed:addressStreetNameInSource\n                              ] ;\n        sh:property           [ rdfs:label   \"Benaming in bron van adres\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     2.0 ;\n                                sh:path      deed:addressNameInSource\n                              ] ;\n        sh:property           [ rdfs:label   \"Plaats\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     12.0 ;\n                                sh:path      deed:addressPlace\n                              ] ;\n        sh:property           [ rdfs:label   \"Opmerking bij adres\"@nl ;\n                                dash:editor  dash:TextAreaEditor ;\n                                sh:datatype  xsd:string ;\n                                sh:order     13.0 ;\n                                sh:path      deed:addressNote\n                              ] ;\n        sh:property           [ rdfs:label   \"Gestandaardiseerd adres\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     4.0 ;\n                                sh:path      deed:addressStandardisedTerm\n                              ] ;\n        sh:property           [ rdfs:label   \"Huisnaam\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     8.0 ;\n                                sh:path      deed:addressHouseName\n                              ] ;\n        sh:property           [ rdfs:label   \"Buurtcode\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     9.0 ;\n                                sh:path      deed:addressNeighbourhoodCode\n                              ] ;\n        sh:property           [ rdfs:label   \"Buurtnummer\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     10.0 ;\n                                sh:path      deed:addressNeighbourhoodNumber\n                              ] ;\n        sh:property           [ rdfs:label   \"Verwijzingen (uris)\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:maxCount  20 ;\n                                sh:order     5.0 ;\n                                sh:path      deed:addressReferences\n                              ] ;\n        sh:property           [ rdfs:label   \"Huisnummer\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     6.0 ;\n                                sh:path      deed:addressHouseNumber\n                              ] ;\n        sh:property           [ rdfs:label   \"Kleinnummer\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     11.0 ;\n                                sh:path      deed:addressSmallNumber\n                              ] ;\n        sh:property           [ rdfs:label   \"Adres - Type\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      deed:addressType\n                              ] ;\n        sh:targetClass        deed:Address .\n\ndeed:deedGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Akte\"@nl ;\n        sh:order    1.0 .\n\ndeed:Event  rdf:type          sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Datum gebeurtenis\"@nl ;\n                                dash:editor  memorix:DateEditor ;\n                                sh:datatype  xsd:integer ;\n                                sh:group     deed:deedGroup ;\n                                sh:maxCount  1 ;\n                                sh:order     3.0 ;\n                                sh:path      deed:hasDate\n                              ] ;\n        sh:property           [ rdfs:label         \"Type gebeurtenis\"@nl ;\n                                memorix:inTitleAt  1.0 ;\n                                sh:datatype        xsd:string ;\n                                sh:order           1.0 ;\n                                sh:path            rico:hasEventType\n                              ] ;\n        sh:targetClass        deed:Event .\n"},{"id":"c746100e-507e-4bb8-a5fc-ebeb84ae5f5c","name":"Create Location Recordtype","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix dash:         <http://datashapes.org/dash#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\n@prefix location:     </resources/recordtypes/Location#> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:  </resources/recordtypes/> .\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies: </vocabularies/> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\nlocation:DisplayGroupGeneral\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"General\" ;\n        sh:order    1.0 .\n\nlocation:DisplayGroupLocation\n        rdf:type    sh:PropertyGroup ;\n        rdfs:label  \"Location Group\" ;\n        sh:order    2.0 .\n\nrecordtypes:Location  rdf:type      sh:NodeShape , memorix:Recordtype ;\n        rdfs:comment             \"Location recordtype\" ;\n        rdfs:label               \"Location\" ;\n        dash:defaultViewForRole  dash:location ;\n        dc:identifier            \"Location\" ;\n        sh:closed                true ;\n        sh:ignoredProperties     ( rdf:type ) ;\n        sh:property              [ rdfs:label   \"Title\" ; \n                                    sh:datatype xsd:string ; \n                                    sh:group    location:DisplayGroupGeneral ;\n                                    sh:order    1.0 ; \n                                    sh:path     location:title ;\n                                    memorix:inTitleAt 1.0 ;\n                                    ] ;\n        sh:property              [ rdfs:label   \"BAG location\" ;\n                                    dash:editor  memorix:LocationBagEditor ;\n                                    sh:group     location:DisplayGroupLocation ;\n                                    sh:class     memorix:GeoCoordinates ;\n                                    sh:order     1.0 ;\n                                    sh:path      location:bag\n                                    ] ;\n        sh:property              [ rdfs:label   \"Coordinates location\" ;\n                                    dash:editor  memorix:LocationCoordinatesEditor ;\n                                    sh:group     location:DisplayGroupLocation ;\n                                    sh:class     memorix:GeoCoordinates ;\n                                    sh:order     2.0 ;\n                                    sh:path      location:coordinates\n                                    ] ;\n        sh:targetClass           recordtypes:Location ."},"url":"https://test.memorix.io/resources/recordtypes"},"status":"Created","code":201,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Wed, 28 Jul 2021 11:45:15 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix dash:         <http://datashapes.org/dash#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix deed:         <https://example.memorix-test.nl/resources/recordtypes/Deed#> .\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix owl:          <http://www.w3.org/2002/07/owl#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:  <https://example.memorix-test.nl/resources/recordtypes/> .\n@prefix ric-dft:      <https://www.ica.org/standards/RiC/vocabularies/documentaryFormTypes#> .\n@prefix ric-rst:      <https://www.ica.org/standards/RiC/vocabularies/recordSetTypes#> .\n@prefix rico:         <https://www.ica.org/standards/RiC/ontology#> .\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies: <https://example.memorix-test.nl/vocabularies/> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\ndeed:detailsGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Bijzonderheden\"@nl ;\n        sh:order    5.0 .\n\ndeed:personsGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Personen\"@nl ;\n        sh:order    2.0 .\n\ndeed:remarksGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Opmerkingen\"@nl ;\n        sh:order    6.0 .\n\ndeed:locationsGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Locaties\"@nl ;\n        sh:order    3.0 .\n\nrecordtypes:Deed  rdf:type       sh:NodeShape , memorix:Recordtype ;\n        rdfs:comment             \"Standaard Recordtype voor Aktes\"@nl ;\n        rdfs:label               \"Akte\"@nl ;\n        dash:defaultViewForRole  dash:all ;\n        dc:identifier            \"Deed\" ;\n        owl:equivalentClass      rico:Record ;\n        sh:closed                true ;\n        sh:ignoredProperties     ( rdf:type ) ;\n        sh:property              [ rdfs:comment  \"Locaties die voorkomen op de akte\"@nl ;\n                                   rdfs:label    \"Locatie\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Location ;\n                                   sh:group      deed:locationsGroup ;\n                                   sh:maxCount   999 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      6.0 ;\n                                   sh:path       deed:location\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Inventarisnummer waar de akte deel van uit maakt\"@nl ;\n                                   rdfs:label    \"Bron\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Source ;\n                                   sh:group      deed:deedGroup ;\n                                   sh:maxCount   1 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      4.0 ;\n                                   sh:path       deed:hasSource\n                                 ] ;\n        sh:property              [ rdfs:label           \"Akte - Type\"@nl ;\n                                   memorix:inSummaryAt  1.0 ;\n                                   sh:datatype          xsd:string ;\n                                   sh:group             deed:deedGroup ;\n                                   sh:maxCount          1 ;\n                                   sh:order             1.0 ;\n                                   sh:path              rico:hasDocumentaryFormType\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Persoon die voorkomt op de akte en zijn rol\"@nl ;\n                                   rdfs:label    \"Persoon\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Person ;\n                                   sh:group      deed:personsGroup ;\n                                   sh:maxCount   999 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      5.0 ;\n                                   sh:path       rico:hasOrHadSubject\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Bijzonderheid bij deze akte\"@nl ;\n                                   rdfs:label    \"Bijzonderheid\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Details ;\n                                   sh:group      deed:detailsGroup ;\n                                   sh:maxCount   10 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      8.0 ;\n                                   sh:path       deed:details\n                                 ] ;\n        sh:property              [ rdfs:label   \"Opmerkingen bij akte\"@nl ;\n                                   dash:editor  dash:TextAreaEditor ;\n                                   sh:datatype  xsd:string ;\n                                   sh:group     deed:remarksGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:order     10.0 ;\n                                   sh:path      deed:notes\n                                 ] ;\n        sh:property              [ rdfs:comment  \"Adressen die voorkomen op de akte\"@nl ;\n                                   rdfs:label    \"Adres\"@nl ;\n                                   dash:viewer   dash:DetailsEditor ;\n                                   sh:class      deed:Address ;\n                                   sh:group      deed:addressesGroup ;\n                                   sh:maxCount   999 ;\n                                   sh:nodeKind   sh:BlankNode ;\n                                   sh:order      7.0 ;\n                                   sh:path       deed:address\n                                 ] ;\n        sh:property              [ rdfs:label   \"Gebeurtenis\" ;\n                                   dash:viewer  dash:DetailsEditor ;\n                                   sh:class     deed:Event ;\n                                   sh:group     deed:deedGroup ;\n                                   sh:maxCount  1 ;\n                                   sh:nodeKind  sh:BlankNode ;\n                                   sh:order     2.0 ;\n                                   sh:path      rico:isAssociatedWithEvent\n                                 ] ;\n        sh:targetClass           recordtypes:Deed .\n\ndeed:Location  rdf:type       sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Opmerking bij locatie\"@nl ;\n                                dash:editor  dash:TextAreaEditor ;\n                                sh:datatype  xsd:string ;\n                                sh:order     5.0 ;\n                                sh:path      deed:locationRemark\n                              ] ;\n        sh:property           [ rdfs:label   \"Locatie - Uri\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     4.0 ;\n                                sh:path      deed:locationUri\n                              ] ;\n        sh:property           [ rdfs:label   \"Gestandaardiseerde locatie\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     3.0 ;\n                                sh:path      deed:locationStandardisedTerm\n                              ] ;\n        sh:property           [ rdfs:label   \"Benaming in bron van locatie\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     2.0 ;\n                                sh:path      deed:locationNameInSource\n                              ] ;\n        sh:property           [ rdfs:label   \"Locatie - Type\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      deed:locationType\n                              ] ;\n        sh:targetClass        deed:Location .\n\ndeed:Source  rdf:type         sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Bronverwijzing\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     3.0 ;\n                                sh:path      deed:sourceReference\n                              ] ;\n        sh:property           [ rdfs:label   \"Inventarisnummer\"@nl ;\n                                sh:nodeKind  sh:IRI ;\n                                sh:or        ( sh:class recordtypes:File ) ;\n                                sh:order     2.0 ;\n                                sh:path      rico:isOrWasIncludedIn\n                              ] ;\n        sh:property           [ rdfs:label         \"Index Naam\"@nl ;\n                                memorix:inTitleAt  1.0 ;\n                                sh:datatype        xsd:string ;\n                                sh:order           1.0 ;\n                                sh:path            deed:sourceIndexName\n                              ] ;\n        sh:targetClass        deed:Source .\n\ndeed:Person  rdf:type         sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Persoonsvermelding\"@nl ;\n                                dash:editor  memorix:LinkedRecordEditor ;\n                                sh:nodeKind  sh:IRI ;\n                                sh:or        ( [ recordtypes:Persoonsvermelding ] ) ;\n                                sh:order     2.0 ;\n                                sh:path      deed:personObservation\n                              ] ;\n        sh:property           [ rdfs:label   \"Rol\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      deed:personRole\n                              ] ;\n        sh:targetClass        deed:Person .\n\ndeed:Details  rdf:type        sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Bijzonderheid\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     2.0 ;\n                                sh:path      deed:detailDetail\n                              ] ;\n        sh:property           [ rdfs:label   \"Bijzonderheid - Type\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      deed:detailType\n                              ] ;\n        sh:targetClass        deed:Details .\n\ndeed:addressesGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Adressen\"@nl ;\n        sh:order    4.0 .\n\ndeed:Address  rdf:type        sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Huisnummer toevoeging\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     7.0 ;\n                                sh:path      deed:addressHouseNumberAddition\n                              ] ;\n        sh:property           [ rdfs:label   \"Straatnaam in bron\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     3.0 ;\n                                sh:path      deed:addressStreetNameInSource\n                              ] ;\n        sh:property           [ rdfs:label   \"Benaming in bron van adres\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     2.0 ;\n                                sh:path      deed:addressNameInSource\n                              ] ;\n        sh:property           [ rdfs:label   \"Plaats\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     12.0 ;\n                                sh:path      deed:addressPlace\n                              ] ;\n        sh:property           [ rdfs:label   \"Opmerking bij adres\"@nl ;\n                                dash:editor  dash:TextAreaEditor ;\n                                sh:datatype  xsd:string ;\n                                sh:order     13.0 ;\n                                sh:path      deed:addressNote\n                              ] ;\n        sh:property           [ rdfs:label   \"Gestandaardiseerd adres\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     4.0 ;\n                                sh:path      deed:addressStandardisedTerm\n                              ] ;\n        sh:property           [ rdfs:label   \"Huisnaam\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     8.0 ;\n                                sh:path      deed:addressHouseName\n                              ] ;\n        sh:property           [ rdfs:label   \"Buurtcode\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     9.0 ;\n                                sh:path      deed:addressNeighbourhoodCode\n                              ] ;\n        sh:property           [ rdfs:label   \"Buurtnummer\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     10.0 ;\n                                sh:path      deed:addressNeighbourhoodNumber\n                              ] ;\n        sh:property           [ rdfs:label   \"Verwijzingen (uris)\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:maxCount  20 ;\n                                sh:order     5.0 ;\n                                sh:path      deed:addressReferences\n                              ] ;\n        sh:property           [ rdfs:label   \"Huisnummer\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     6.0 ;\n                                sh:path      deed:addressHouseNumber\n                              ] ;\n        sh:property           [ rdfs:label   \"Kleinnummer\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     11.0 ;\n                                sh:path      deed:addressSmallNumber\n                              ] ;\n        sh:property           [ rdfs:label   \"Adres - Type\"@nl ;\n                                sh:datatype  xsd:string ;\n                                sh:order     1.0 ;\n                                sh:path      deed:addressType\n                              ] ;\n        sh:targetClass        deed:Address .\n\ndeed:deedGroup  rdf:type  sh:PropertyGroup ;\n        rdfs:label  \"Akte\"@nl ;\n        sh:order    1.0 .\n\ndeed:Event  rdf:type          sh:NodeShape ;\n        sh:closed             true ;\n        sh:ignoredProperties  ( rdf:type ) ;\n        sh:property           [ rdfs:label   \"Datum gebeurtenis\"@nl ;\n                                dash:editor  memorix:DateEditor ;\n                                sh:datatype  xsd:integer ;\n                                sh:group     deed:deedGroup ;\n                                sh:maxCount  1 ;\n                                sh:order     3.0 ;\n                                sh:path      deed:hasDate\n                              ] ;\n        sh:property           [ rdfs:label         \"Type gebeurtenis\"@nl ;\n                                memorix:inTitleAt  1.0 ;\n                                sh:datatype        xsd:string ;\n                                sh:order           1.0 ;\n                                sh:path            rico:hasEventType\n                              ] ;\n        sh:targetClass        deed:Event .\n"}],"_postman_id":"6022bb99-7536-44ed-a1a9-9a6b5ae3362a"},{"name":"Update Recordtype","id":"9d3f03a4-9181-4414-8354-bce2488b6921","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"text/turtle"},{"key":"Accept","value":"text/turtle"}],"body":{"mode":"raw","raw":"@prefix dc:                 <http://purl.org/dc/elements/1.1/> .\n@prefix pico:               <https://personsincontext.org/model#> .\n@prefix picot:              <https://terms.personsincontext.org/> .\n@prefix pnv:                <https://w3id.org/pnv#> .\n@prefix prov:               <http://www.w3.org/ns/prov#> .\n@prefix rdf:                <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:               <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:             <https://schema.org/> .\n@prefix xsd:                <http://www.w3.org/2001/XMLSchema#> .\n@prefix skos:               <http://www.w3.org/2004/02/skos/core#> .\n@prefix sh:                 <http://www.w3.org/ns/shacl#> .\n@prefix dash:               <http://datashapes.org/dash#> .\n\n@prefix memorix:            <http://memorix.io/ontology#> .\n@prefix rt:                 </resources/recordtypes/> .\n@prefix personObservation:  </resources/recordtypes/PersonObservation#> .\n@prefix vocabularies:       </resources/vocabularies/conceptschemes/> .\n\npersonObservation:sourceGroup\n    a           sh:PropertyGroup ;\n    rdfs:label  \"Bron\"@nl, \"Source\"@en ;\n    sh:order    1.0 ;\n.\n\npersonObservation:identificationGroup\n    a           sh:PropertyGroup ;\n    rdfs:label  \"Identificatie\"@nl, \"Identification\"@en ;\n    sh:order    2.0 ;\n.\n\npersonObservation:classificationGroup\n    a           sh:PropertyGroup ;\n    rdfs:label  \"Classificatie\"@nl, \"Classification\"@en ;\n    sh:order    3.0 ;\n.\n\npersonObservation:relationGroup\n    a           sh:PropertyGroup ;\n    rdfs:label  \"Relaties\"@nl, \"Relations\"@en ;\n    sh:order    4.0 ;\n.\n\nrt:PersonObservation\n    a                       memorix:Recordtype, sh:NodeShape, pico:PersonObservation ;\n    rdfs:comment            \"Recordtype voor persoonsobservaties\"@nl, \"Record type for Person Observations\"@en ;\n    rdfs:label              \"Persoonsobservatie\"@nl, \"Person Observation\"@en ;\n    dc:identifier           \"PersonObservation\" ;\n    sh:targetClass          rt:PersonObservation ;\n    sh:closed               true ;\n    sh:ignoredProperties    ( rdf:type ) ;\n\n    sh:property             [ sh:path           prov:hadPrimarySource ;\n                              rdfs:label        \"Bron\"@nl, \"Source\"@en ;\n                              sh:description    \"Bron waar de observatie in voorkomt\"@nl, \"Source where the observation occurred\"@en ;\n                              sh:group          personObservation:sourceGroup ;\n                              sh:order          1.0 ;\n                              sh:minCount       1 ;\n                              sh:maxCount       1 ;\n                              sh:nodeKind       sh:IRI ;\n                              sh:or             ( [ sh:class rt:Deed ] ) ;\n                              dash:editor       memorix:LinkedRecordEditor ;\n                              memorix:inTitleAt 2.0 ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:name ;\n                              rdfs:label        \"Naam\"@nl, \"Name\"@en ;\n                              sh:description    \"Volledige naam van de geobserveerde persoon\"@nl, \"Full name of the observed person\"@en ;\n                              sh:group          personObservation:identificationGroup ;\n                              sh:order          1.0 ;\n                              sh:minCount       1 ;\n                              sh:maxCount       1 ;\n                              sh:datatype       xsd:string ;\n                              memorix:inTitleAt 1.0 ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:familyName ;\n                              rdfs:label        \"Achternaam\"@nl, \"Family Name\"@en ;\n                              sh:description    \"Achternaam van de geobserveerde persoon\"@nl, \"Family name of the observed person\"@en ;\n                              sh:group          personObservation:identificationGroup ;\n                              sh:order          2.0 ;\n                              sh:maxCount       1 ;\n                              sh:datatype       xsd:string ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:givenName ;\n                              rdfs:label        \"Voornaam\"@nl, \"Given Name\"@en ;\n                              sh:description    \"Voornaam van de geobserveerde persoon\"@nl, \"Given name of the observed person\"@en ;\n                              sh:group          personObservation:identificationGroup ;\n                              sh:order          3.0 ;\n                              sh:maxCount       1 ;\n                              sh:datatype       xsd:string ;\n                            ] ;\n\n    sh:property             [ sh:path           pico:hasAge ;\n                              rdfs:label        \"Leeftijd\"@nl, \"Age\"@en ;\n                              sh:description    \"Leeftijd ten tijde van de observatie\"@nl, \"Age at the time of observation\"@en ;\n                              sh:group          personObservation:classificationGroup ;\n                              sh:order          4.0 ;\n                              sh:maxCount       1 ;\n                              sh:datatype       xsd:integer ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:birthDate ;\n                              rdfs:label        \"Geboortedatum\"@nl, \"Birth Date\"@en ;\n                              sh:description    \"Geboortedatum van de geobserveerde persoon\"@nl, \"Birth date of the observed person\"@en ;\n                              sh:group          personObservation:classificationGroup ;\n                              sh:order          5.0 ;\n                              sh:maxCount       1 ;\n                              sh:datatype       xsd:date ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:birthPlace ;\n                              rdfs:label        \"Geboorteplaats\"@nl, \"Birth Place\"@en ;\n                              sh:description    \"Geboortedatum van de geobserveerde persoon\"@nl, \"Birth place of the observed person\"@en ;\n                              sh:group          personObservation:classificationGroup ;\n                              sh:order          7.0 ;\n                              sh:maxCount       1 ;\n                              sh:datatype       xsd:string ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:gender ;\n                              rdfs:label        \"Geslacht\"@nl, \"Gender\"@en ;\n                              sh:description    \"Geslacht van de geobserveerde persoon\"@nl, \"Gender of the observed person\"@en ;\n                              sh:group          personObservation:classificationGroup ;\n                              sh:order          8.0 ;\n                              sh:maxCount       1 ;\n                              sh:datatype       xsd:string ;\n                              sh:in             ( \"Male\" \"Female\" ) ;\n                              dash:editor       dash:EnumSelectEditor ;\n                            ] ;\n\n    sh:property             [ sh:path           pico:role ;\n                              rdfs:label        \"Rol\"@nl, \"Role\"@en ;\n                              sh:description    \"Rol van de geobserveerde persoon\"@nl, \"Role of the observed person\"@en ;\n                              sh:group          personObservation:classificationGroup ;\n                              sh:order          9.0 ;\n                              sh:maxCount       1 ;\n                              sh:class          skos:Concept ;\n                              sh:nodeKind       sh:IRI ;\n                              memorix:conceptSchemeIn <https://terms.personsincontext.org/ThesaurusHistorischePersoonsgegevens/44> ;\n                              dash:editor       memorix:VocabularyEditor ;\n                              memorix:inTitleAt 2.0 ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:spouse ;\n                              rdfs:label        \"Echtgeno(o)t(e)\"@nl, \"Spouse\"@en ;\n                              sh:description    \"Echtgenoot/echtgenote van de geobserveerde persoon\"@nl, \"Spouse of the observed person\"@en ;\n                              sh:group          personObservation:relationGroup ;\n                              sh:order          1.0 ;\n                              sh:maxCount       1 ;\n                              sh:nodeKind       sh:IRI ;\n                              sh:or             ( [ sh:class rt:PersonObservation ] ) ;\n                              dash:editor       memorix:LinkedRecordEditor ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:children ;\n                              rdfs:label        \"Kinderen\"@nl, \"Children\"@en ;\n                              sh:description    \"Kinderen van de geobserveerde persoon\"@nl, \"Children of the observed person\"@en ;\n                              sh:group          personObservation:relationGroup ;\n                              sh:order          2.0 ;\n                              sh:nodeKind       sh:IRI ;\n                              sh:or             ( [ sh:class rt:PersonObservation ] ) ;\n                              dash:editor       memorix:LinkedRecordEditor ;\n                            ] ;\n\n    sh:property             [ sh:path           schema:parents ;\n                              rdfs:label        \"Ouders\"@nl, \"Parents\"@en ;\n                              sh:description    \"Ouders van de geobserveerde persoon\"@nl, \"Parents of the observed person\"@en ;\n                              sh:group          personObservation:relationGroup ;\n                              sh:order          3.0 ;\n                              sh:nodeKind       sh:IRI ;\n                              sh:or             ( [ sh:class rt:PersonObservation ] ) ;\n                              dash:editor       memorix:LinkedRecordEditor ;\n                            ] ;\n."},"url":"https://test.memorix.io/resources/recordtypes/","description":"<p>This endpoint updates a <a href=\"https://www.w3.org/TR/shacl/\">SHACL</a> Nodeshape/Memorix Recordtype new fields or changing field paths are not permitted for now only metadata about the fields is allowed to be changed.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","recordtypes",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"31fce101-c710-4a54-994b-c7cb9b045126","name":"Update Recordtype","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix dash:         <http://datashapes.org/dash#> .\n@prefix dc:           <http://purl.org/dc/elements/1.1/> .\n@prefix file:         </resources/recordtypes/File#> .\n@prefix html:         <http://www.w3.org/1999/xhtml/> .\n@prefix memorix:      <http://memorix.io/ontology#> .\n@prefix rdf:          <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:         <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix recordtypes:  </resources/recordtypes/> .\n@prefix sh:           <http://www.w3.org/ns/shacl#> .\n@prefix skos:         <http://www.w3.org/2004/02/skos/core#> .\n@prefix vocabularies: </vocabularies/> .\n@prefix xsd:          <http://www.w3.org/2001/XMLSchema#> .\n\nfile:DisplayGroup  rdf:type  sh:PropertyGroup;\n        rdfs:label  \"File\";\n        sh:order    1.0 .\n\nrecordtypes:File  rdf:type    sh:NodeShape , memorix:Recordtype;\n        rdfs:comment          \"File recordtype\";\n        rdfs:label            \"File\";\n        memorix:hasInformationComponent\n                [ rdf:type               memorix:TreePathComponent;\n                  memorix:hasRecordtype  recordtypes:Fonds , recordtypes:Serie\n                ];\n        memorix:hasInformationComponent\n                [ rdf:type  memorix:DepotLocationComponent , memorix:DigitalAssetComponent ];\n        memorix:typeOf        memorix:File;\n        dc:identifier         \"File\";\n        sh:closed             true;\n        sh:ignoredProperties  ( rdf:type );\n        sh:property           [ rdfs:label         \"Title\";\n                                dash:editor        dash:TextFieldEditor;\n                                dash:singleLine    true;\n                                memorix:inTitleAt  2.0;\n                                sh:datatype        xsd:string;\n                                sh:group           file:DisplayGroup;\n                                sh:maxCount        1;\n                                sh:message         \"Title field is required\";\n                                sh:minCount        1;\n                                sh:order           2.0;\n                                sh:path            file:title\n                              ];\n        sh:property           [ rdfs:label   \"Order\";\n                                sh:datatype  xsd:integer;\n                                sh:group     file:DisplayGroup;\n                                sh:maxCount  1;\n                                sh:order     5.0;\n                                sh:path      file:order\n                              ];\n        sh:property           [ rdfs:label         \"File identifier\"@en;\n                                dash:editor        dash:TextFieldEditor;\n                                memorix:inTitleAt  1.0;\n                                memorix:typeOf     memorix:Identifier;\n                                html:placeholder   \"Enter a file identifier\"@en;\n                                sh:datatype        xsd:string;\n                                sh:group           file:DisplayGroup;\n                                sh:maxCount        1;\n                                sh:message         \"File identifier field should not be empty\"@en;\n                                sh:minCount        1;\n                                sh:order           1.0;\n                                sh:path            file:id\n                              ];\n        sh:property           [ rdfs:label      \"Fonds/Archive\";\n                                dash:editor     memorix:LinkedRecordEditor;\n                                memorix:typeOf  memorix:FondsFieldLink;\n                                sh:group        file:DisplayGroup;\n                                sh:maxCount     1;\n                                sh:minCount     1;\n                                sh:nodeKind     sh:IRI;\n                                sh:or           ( [ sh:class  recordtypes:Fonds ]\n                                                );\n                                sh:order        3.0;\n                                sh:path         file:fonds\n                              ];\n        sh:property           [ rdf:type             sh:PropertyShape;\n                                rdfs:label           \"Description\"@nl;\n                                dash:editor          dash:TextAreaEditor;\n                                dash:singleLine      false;\n                                memorix:inSummaryAt  1.0;\n                                sh:datatype          xsd:string;\n                                sh:group             file:DisplayGroup;\n                                sh:maxCount          1;\n                                sh:message           \"Empty or missing description.\";\n                                sh:order             4.0;\n                                sh:path              file:textarea\n                              ];\n        sh:targetClass        recordtypes:File .\n"},"url":"https://test.memorix.io/resources/recordtypes/"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9d3f03a4-9181-4414-8354-bce2488b6921"},{"name":"Get history of a single Recordtype","id":"29092312-7dcc-4849-8db2-abe0905d2e90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/recordtypes//history","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","recordtypes","","history"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"2e16609b-e3cd-4f40-a1df-f6fa74e67800","name":"Get history of a single Recordtype","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/recordtypes/Image"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n@prefix users:   <https://example.memorix-test.nl/resources/users/> .\n@prefix history: <https://example.memorix-test.nl/resources/history/> .\n@prefix recordtypes: <https://example.memorix-test.nl/resources/recordtypes/> .\n\n## Used for POST requests on a Resource, only 1 of these per Resource:\nhistory:f34ab96b-81ae-4705-a22e-d71ac4bac809 a schema:AddAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n  schema:about memorix:Recordtype ;\n  schema:object recordtypes:Image .\n\n## Used for PUT requests on a Resource:\nhistory:b3b4329a-dda0-11eb-acc9-d7d818391015 a schema:ReplaceAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n  schema:about memorix:Recordtype ;\n  schema:object recordtypes:Image .\n\n## Used for DELETE requests on a Resource, only 1 of these per Resource:\nhistory:b879806e-dda0-11eb-8780-5b2ef4c12217 a schema:DeleteAction ;\n  schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n  schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n  schema:about memorix:Recordtype ;\n  schema:object recordtypes:Image .\n"}],"_postman_id":"29092312-7dcc-4849-8db2-abe0905d2e90"}],"id":"6a74da0a-2b7c-4cbe-839a-78cbc436ab91","_postman_id":"6a74da0a-2b7c-4cbe-839a-78cbc436ab91","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Reservations","item":[{"name":"Visitor","item":[{"name":"Make reservation","event":[{"listen":"prerequest","script":{"id":"1d15cad5-461b-4c09-9fb6-31bf33b6012b","exec":[""],"type":"text/javascript","packages":{}}}],"id":"69cb523b-fef2-4bd5-906f-19dcbff0388c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"recordId\": \"9db96d0d-8cdb-4de1-bdec-aeaba813d51e\",\n  \"reservationDate\": \"2024-12-10T15:37:45\",\n    \"user\" : {\n      \"name\": \"Sander\",\n      \"email\": \"sander@vitecsoftware.com\"\n  },\n  \"remark\": \"Ik kom graag even langs voor nader onderzoek\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/reservation","description":"<p>Create a reservation for an archive record that is defined as a \"File\" recordtype only records which have a fond and file identifier stored can be reserved.</p>\n<p>Only \"File\" records which have file and fond identifier can be reserved and have\"Allow reservations\" set to true, and do not have a public or use restriction on the desired date.</p>\n<h2 id=\"optional\">Optional</h2>\n<p>The remark string field is nullable the property can be removed or set to null if it's not required.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["reservation"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"69cb523b-fef2-4bd5-906f-19dcbff0388c"},{"name":"Make public reservation (spam protection)","id":"d71f0a6b-ad02-4aee-9096-9703dcca77bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"recordId\": \"33b28548-2b2e-4450-8ed9-821b86b07f75\",\r\n  \"reservationDate\": \"2023-06-01T15:37:45\",\r\n    \"user\" : {\r\n      \"name\": \"John Doe\",\r\n      \"email\": \"gzanetti@picturae.com\"\r\n  },\r\n  \"remark\": \"I'm excited to see it with my own eyes\",\r\n  \"token\": \"[reCaptchaToken]\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/reservation/submit","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["reservation","submit"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d71f0a6b-ad02-4aee-9096-9703dcca77bc"}],"id":"4481b4a3-dafa-4430-b553-fbb854229cb6","event":[{"listen":"prerequest","script":{"id":"b23ea166-8668-4692-a66b-e30337de8153","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ea322e03-bf52-46a2-8b85-b45b8bbd88ca","type":"text/javascript","exec":[""]}}],"_postman_id":"4481b4a3-dafa-4430-b553-fbb854229cb6","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Admin","item":[{"name":"Update reservation status by barcode","item":[{"name":"Set next status by barcode","id":"ff9b24df-b832-4e89-8a01-bc118d4c792d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/admin/reservation/k158KR8lU8Rl/status/next","description":"<h3 id=\"success-response\">Success response</h3>\n<p>A successful response will be:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP 1.1 200 OK\n{\n    \"id\": \"18b58950-6fac-4315-b38f-75c0a6293ed0\",\n    \"status\": \"ef261682-10dc-4824-9615-bc1810a72ed1\",\n    \"token\": \"k158KR8lU8Rl\",\n    \"record\": {\n        \"id\": \"b8649f31-8647-4af4-ae9d-ad82d01929dd\",\n        \"fondsId\": \"936764223\",\n        \"fileId\": \"2123638854\"\n    }\n}\n\n</code></pre><h3 id=\"error-response\">Error response</h3>\n<p>If the item is already on the last status it will return a 400</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP 1.1 400 Bad request\n{\n    \"message\": \"Reservation is on last status\"\n}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reservation","k158KR8lU8Rl","status","next"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff9b24df-b832-4e89-8a01-bc118d4c792d"},{"name":"Set previous status by barcode","id":"19571483-76a3-4d3c-9743-8e0273d344aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/admin/reservation/k158KR8lU8Rl/status/previous","description":"<h3 id=\"success-response\">Success response</h3>\n<p>A successful response will be:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP 1.1 200 OK\n{\n    \"id\": \"18b58950-6fac-4315-b38f-75c0a6293ed0\",\n    \"status\": \"ef261682-10dc-4824-9615-bc1810a72ed1\",\n    \"token\": \"k158KR8lU8Rl\",\n    \"record\": {\n        \"id\": \"b8649f31-8647-4af4-ae9d-ad82d01929dd\",\n        \"fondsId\": \"936764223\",\n        \"fileId\": \"2123638854\"\n    }\n}\n\n</code></pre><h3 id=\"error-response\">Error response</h3>\n<p>If the item is already on the first status it will return a 400</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP 1.1 400 Bad request\n{\n    \"message\": \"Reservation is on first status\"\n}\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reservation","k158KR8lU8Rl","status","previous"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"19571483-76a3-4d3c-9743-8e0273d344aa"}],"id":"099066b0-b766-4ae0-af1f-14df1f17f471","_postman_id":"099066b0-b766-4ae0-af1f-14df1f17f471","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Make internal reservation","event":[{"listen":"prerequest","script":{"id":"1d15cad5-461b-4c09-9fb6-31bf33b6012b","exec":[""],"type":"text/javascript"}}],"id":"bb5c5aa2-898b-44d8-b60e-e51aeb1f22e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"recordId\": \"9ac3ce96-57db-40ce-ab55-0c039b13ae34\",\n  \"reservationDate\": \"2023-04-19T15:37:45\",\n    \"user\" : {\n      \"name\": \"Jane Doe\",\n      \"email\": \"j.doe@example.com\"\n  },\n  \"remark\": \"I'm excited to see it with my own eyes asd dsa sadsa dsa dadsa sad dsad sad asdsad sad asd asdsadasdsadsad\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/reservation","description":"<p>Create a reservation for an archive record that is defined as a \"File\" recordtype only records which have a fond and file identifier stored can be reserved.</p>\n<p>This is to be used by users authenticated against the services realm not for memorix users.</p>\n<p>Only \"File\" records which have file and fond identifier can be reserved and have\"Allow reservations\" set to true, and do not have a public or use restriction on the desired date.</p>\n<h2 id=\"optional\">Optional</h2>\n<p>The remark string field is nullable the property can be removed or set to null if it's not required.</p>\n","urlObject":{"path":["admin","reservation"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"bb5c5aa2-898b-44d8-b60e-e51aeb1f22e8"},{"name":"List reservations","id":"95105f07-7c9a-476a-9ff7-4c1b61136826","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/admin/reservation?page=1&perPage=10&depot=1086eff5-1ed2-4850-a7dc-92361532299f&reserveFrom=2022-08-15&reserveTill=2022-09-10","description":"<p>List of reservations, this shows all reservation for admin purposes.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reservation"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"},{"disabled":true,"key":"email","value":"someone@example.com"},{"disabled":true,"key":"fileId","value":"12"},{"disabled":true,"key":"fondsId","value":"123"},{"disabled":true,"key":"status","value":"NEW"},{"disabled":true,"key":"orderBy","value":"reserve_from"},{"disabled":true,"key":"order","value":"asc"},{"key":"depot","value":"1086eff5-1ed2-4850-a7dc-92361532299f"},{"key":"reserveFrom","value":"2022-08-15"},{"description":{"content":"<p>Upper boundary for the reservation date [optional]</p>\n","type":"text/plain"},"key":"reserveTill","value":"2022-09-10"}],"variable":[]}},"response":[{"id":"48266f36-11b3-45da-8864-2eb01a33a06c","name":"List reservations","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://test.memorix.io/admin/reservation?page=1&perPage=10&order=asc&orderBy=fileIdentifier","host":["https://test.memorix.io"],"path":["admin","reservation"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"},{"key":"email","value":"someone@example.com","type":"text","disabled":true},{"key":"fileId","value":"12","type":"text","disabled":true},{"key":"fondsId","value":"123","type":"text","disabled":true},{"key":"status","value":"NEW","type":"text","disabled":true},{"key":"orderBy","value":"reserve_from","disabled":true},{"key":"order","value":"asc"},{"key":"orderBy","value":"fileIdentifier"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""},{"id":"c09eed67-5a8e-436c-8224-54af568c130e","name":"List reservations filter byfondsId asc","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://test.memorix.io/admin/reservation?page=1&perPage=10&order=asc&orderBy=fondsIdentifier","host":["https://test.memorix.io"],"path":["admin","reservation"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"},{"key":"email","value":"someone@example.com","type":"text","disabled":true},{"key":"fileId","value":"12","type":"text","disabled":true},{"key":"fondsId","value":"123","type":"text","disabled":true},{"key":"status","value":"NEW","type":"text","disabled":true},{"key":"orderBy","value":"reserve_from","disabled":true},{"key":"order","value":"asc"},{"key":"orderBy","value":"fondsIdentifier"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"95105f07-7c9a-476a-9ff7-4c1b61136826"},{"name":"Get placeholder documents","id":"d37c9560-1d47-496f-81c6-dbe93950d7e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reservationIds\": [\n        \"d56bd21d-8a88-4912-846f-6ba5d67cc4b4\", \n        \"1a9b923c-388b-4c30-93b2-25878eb8bc9e\"\n    ]\n}"},"url":"https://test.memorix.io/admin/reservation/export/placeholder","description":"<p>List of reservations, this shows all reservation for admin purposes.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reservation","export","placeholder"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d37c9560-1d47-496f-81c6-dbe93950d7e6"},{"name":"Update reservation","id":"ad8cea5d-0d33-412c-adf4-ee5a643aef89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reserveFrom\": \"2022-05-24T15:37:45\",\n    \"record\": {\n        \"id\": \"ce378e93-16cd-480f-8f2f-26687075f791\",\n        \"fondsId\": \"-543536384\",\n        \"fileId\": \"47004799\"\n    },\n    \"email\": \"barry@picturae.com\",\n    \"status\": \"NEW\"\n}"},"url":"https://test.memorix.io/admin/reservation/{{reservation_id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reservation","{{reservation_id}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad8cea5d-0d33-412c-adf4-ee5a643aef89"},{"name":"Delete reservation","id":"66dfff1b-d1fc-423a-b489-8d76ce8f1c83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://test.memorix.io/admin/reservation/{{reservation_id}}","description":"<p>Delete reservation by id.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["admin","reservation","{{reservation_id}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"66dfff1b-d1fc-423a-b489-8d76ce8f1c83"},{"name":"New Request","id":"f8dfae90-337d-4613-846a-1d03fc46ece5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"query":[],"variable":[]}},"response":[],"_postman_id":"f8dfae90-337d-4613-846a-1d03fc46ece5"},{"name":"Export csv reservations","id":"81969ba1-d189-4828-810c-020206e1539c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"search\": {\n        \"email\":null,\n        \"name\":null,\n        \"fondsId\":null,\n        \"fileId\":null,\n        \"status\":null,\n        \"reserveFrom\":null,\n        \"reserveTill\":null,\n        \"depot\":[]\n        },\n    \"ids\":null,\n    \"orderBy\":{\n        \"column\":\"reserveFrom\",\n        \"direction\":\"asc\"\n        }\n}"},"url":"https://test.memorix.io/admin/reservation/export/csv","description":"<blockquote>\n<p>Endpoint to export reservations to CSV. Can be exported by search query or by specified IDs, but not both. </p>\n</blockquote>\n<p><strong>Properties</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>parameter</th>\n<th>type</th>\n<th><strong>comment</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong><code>search</code></strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>- email</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>- name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>- fondsId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>- fileId</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>- status</td>\n<td>Set of UUID</td>\n<td></td>\n</tr>\n<tr>\n<td>- reserveFrom</td>\n<td>LocalDateTime as String</td>\n<td>\"2023-10-01T00:00:00\"</td>\n</tr>\n<tr>\n<td>- reserveTill</td>\n<td>LocalDateTime as Strig</td>\n<td>\"2023-10-01T00:00:00\"</td>\n</tr>\n<tr>\n<td>- depot</td>\n<td>Array of UUID</td>\n<td></td>\n</tr>\n<tr>\n<td><strong><code>ids</code></strong></td>\n<td>Array of UUID</td>\n<td></td>\n</tr>\n<tr>\n<td><strong><code>orderBy</code></strong></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>- column</td>\n<td>String</td>\n<td>reserveFrom, fondsId, fileId, email, name, status</td>\n</tr>\n<tr>\n<td>- direction</td>\n<td>String</td>\n<td>asc, desc</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["admin","reservation","export","csv"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"56439e3e-df0f-443d-8246-009b13b8d3f9","name":"Export csv reservations","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"search\": {\n        \"email\": \"email\",\n        \"name\": \"Name\",\n        \"fondsId\": \"-858018619\",\n        \"fileId\": \"-36759604\",\n        \"status\": [\n            \"3f3775a7-db3e-4542-8e61-eeaeacf6237\"\n        ],\n        \"reserveFrom\": \"2023-10-01T00:00:00\",\n        \"reserveTill\": null,\n        \"depot\": [\n            \"4230bdd6-aaf8-496b-b024-cdc896ce678\"\n        ]\n    },\n    \"ids\": null,\n    \"orderBy\": {\n        \"column\": \"reserveFrom\",\n        \"direction\": \"asc\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/reservation/export/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Nov 2023 08:24:57 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"45"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"794d684f-1640-4363-a587-3feb5ae3f0d3\"\n}"},{"id":"f48b5c7f-3fcb-4af3-8996-eb359d51dfee","name":"Export csv reservations","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"search\": null,\n    \"ids\": [\"3c5b61a8-e431-44c2-ad23-a7f108ea1632\", \"e7466afe-de3d-44c6-8df0-12daef76651c\"],\n    \"orderBy\": {\n        \"column\": \"reserveFrom\",\n        \"direction\": \"asc\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/admin/reservation/export/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 02 Nov 2023 09:14:37 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"45"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"328e46c5-157a-4fa7-a9cc-182602e2cbaf\"\n}"}],"_postman_id":"81969ba1-d189-4828-810c-020206e1539c"}],"id":"888388e9-98fb-4ded-9415-4364a34183fc","_postman_id":"888388e9-98fb-4ded-9415-4364a34183fc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Actions","item":[{"name":"Change reservations status","event":[{"listen":"prerequest","script":{"id":"4a8c31c6-50ae-46a9-bdda-9cccfaba1d25","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"821585bc-3554-48e3-a899-16baaf8af488","exec":[""],"type":"text/javascript"}}],"id":"0c4e2b0f-740c-4fe0-8eac-c8590f75c326","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"setRequestStatus\",\n    \"params\": {\n        \"reservationIds\":[\"83e62494-26bc-4032-8bb1-5596417a4740\", \"eb50c39f-7010-4400-ac58-9f524545ba3e\"],\n        \"statusId\": \"2ee97181-e1f3-4d2b-8936-eeacb16f02a7\"\n    },\n    \"id\": 1234\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","description":"<p>Update the status of one or multiple reservations, use a concept id as statusId property.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c4e2b0f-740c-4fe0-8eac-c8590f75c326"}],"id":"7cc9fcbe-bea4-431e-8d89-3d3bdc6c9381","_postman_id":"7cc9fcbe-bea4-431e-8d89-3d3bdc6c9381","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Public","item":[{"name":"Public Reservation config","event":[{"listen":"prerequest","script":{"id":"1d15cad5-461b-4c09-9fb6-31bf33b6012b","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c3d12e42-578e-4e29-9f2b-2d5e4fa0d821","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/public/reservation/config","description":"<p>Reservation configuration</p>\n<h4 id=\"response\">Response</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"daysInAdvance\": 3\n}\n\n</code></pre>\n","urlObject":{"path":["public","reservation","config"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3d12e42-578e-4e29-9f2b-2d5e4fa0d821"}],"id":"d8bc0f9d-3e3e-4b5f-a743-d2bf04c61728","_postman_id":"d8bc0f9d-3e3e-4b5f-a743-d2bf04c61728","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}}],"id":"94932d90-98e0-47ea-9756-3120167a61aa","event":[{"listen":"prerequest","script":{"id":"6a41f0e9-3eed-4feb-9650-dbac367d0211","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3baa336e-02c1-4f4f-88d5-0403ec5d12be","type":"text/javascript","exec":[""]}}],"_postman_id":"94932d90-98e0-47ea-9756-3120167a61aa","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Sets","item":[{"name":"Actions","item":[{"name":"Add Record to Set","id":"8f16a257-82ee-4c21-b810-487d0ffd4c50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"addRecordToSet\",\n    \"params\": {\n        \"record_id\": \"\",\n        \"set_id\": \"\"\n    },\n    \"id\": 4231\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","description":"<p>Adds a <a href=\"https://memorix.io/onthology#Record\">Record</a> to a <a href=\"https://memorix.io/onthology#Set\">Set</a>. Duplicate calls using the same parameters will trigger an error.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>record_id</td>\n<td>UUID</td>\n<td>The ID of the Record</td>\n</tr>\n<tr>\n<td>set_id</td>\n<td>UUID</td>\n<td>The ID of the Set</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f16a257-82ee-4c21-b810-487d0ffd4c50"},{"name":"Remove Record from Set","event":[{"listen":"test","script":{"id":"82900186-3a89-406c-8c36-00b9c5bf4440","exec":[""],"type":"text/javascript"}}],"id":"5880d81e-ebcf-41a7-b7bf-6c9e9f580b9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"removeRecordFromSet\",\n    \"params\": {\n        \"record_id\": \"\",\n        \"set_id\": \"\"\n    },\n    \"id\": 1234\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","description":"<p>Removes a <a href=\"https://memorix.io/onthology#Record\">Record</a> from a <a href=\"https://memorix.io/onthology#Set\">Set</a>. Duplicate calls using the same parameters will not trigger an error.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>record_id</td>\n<td>UUID</td>\n<td>The ID of the Record</td>\n</tr>\n<tr>\n<td>set_id</td>\n<td>UUID</td>\n<td>The ID of the Set</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"497a86cc-2530-49ac-a433-04b7512bb6c7","name":"Remove Record From Set","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"removeRecordFromSet\",\n    \"params\": {\n        \"record_id\": \"34ab96b-81ae-4705-a22e-d71ac4bac809\",\n        \"set_id\": \"c9787836-93c2-4c27-ae1a-346a886cbcc9\"\n    },\n    \"id\": 1234\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Jun 2021 10:46:49 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"136"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"result\": \"Record f34ab96b-81ae-4705-a22e-d71ac4bac809 removed from set c9787836-93c2-4c27-ae1a-346a886cbcc9\",\n    \"id\": 1234\n}"},{"id":"b3d2617c-eacc-4da1-8c30-24f7b260cfa8","name":"Remove Record From Set","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"removeRecordFromSet\",\n    \"params\": {\n        \"record_id\": \"34ab96b-81ae-4705-a22e-d71ac4bac809\",\n        \"set_id\": \"c9787836-93c2-4c27-ae1a-346a886cbcc9\"\n    },\n    \"id\": 1234\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 29 Jun 2021 10:46:49 GMT"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Content-Length","value":"136"}],"cookie":[],"responseTime":null,"body":"{\n    \"jsonrpc\": \"2.0\",\n    \"result\": \"Record f34ab96b-81ae-4705-a22e-d71ac4bac809 removed from set c9787836-93c2-4c27-ae1a-346a886cbcc9\",\n    \"id\": 1234\n}"}],"_postman_id":"5880d81e-ebcf-41a7-b7bf-6c9e9f580b9a"}],"id":"57f32497-2b2a-4541-af13-edac29164c0a","event":[{"listen":"prerequest","script":{"id":"cc0079d1-bf43-453f-ba9d-a89c74c836ba","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"60c6a697-f3ad-4ce6-9f32-200b0d154dd6","type":"text/javascript","exec":["pm.test(\"Response conforms to expected JSON-RPC structure\", Memorix.rpc.checkResponse(pm))","pm.test(\"Request/Response JSON-RPC ID match\", Memorix.rpc.checkId(pm))","pm.test(\"JSON-RPC Method exists\", Memorix.rpc.checkMethod(pm))","pm.test(\"Check JSON-RPC Parameters\", Memorix.rpc.checkMethodParameters(pm))",""]}}],"_postman_id":"57f32497-2b2a-4541-af13-edac29164c0a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"List Sets","event":[{"listen":"test","script":{"id":"171867bc-fbb5-47c6-a1f0-9d31e6247f4c","exec":["pm.test(\"Test for correct Rdf Types\", function () {","    const allowedRdfTypes = [","        'schema:ItemList',","        'http://schema.org/ItemList',","        'memorix:Set'","    ]","    Memorix.checkRdfClasses(pm.response, allowedRdfTypes, 'memorix:Set');","    pm.collectionVariables.set(\"SetId\", Memorix.path.basename(Memorix.lastSeenIdentifier))","});",""],"type":"text/javascript"}}],"id":"3817deee-bd23-488c-9ccf-32087d2dd0a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/sets?page=1&perPage=25&agent=&filter.id&title","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","sets"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>Page if there are more sets then requested</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Amount of sets to return</p>\n","type":"text/plain"},"key":"perPage","value":"25"},{"disabled":true,"description":{"content":"<p>Order column title, created, modified, agent</p>\n","type":"text/plain"},"key":"orderBy","value":"title"},{"disabled":true,"description":{"content":"<p>Order direction asc / desc</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"description":{"content":"<p>Repeatable Filter user UUID</p>\n","type":"text/plain"},"key":"agent","value":""},{"description":{"content":"<p>Repeatable Filter SetID</p>\n","type":"text/plain"},"key":"filter.id","value":""},{"description":{"content":"<p>Queries sets with title containing the query</p>\n","type":"text/plain"},"key":"title","value":""},{"disabled":true,"description":{"content":"<p>same as title (for backwards compatibility)</p>\n","type":"text/plain"},"key":"q","value":""}],"variable":[]}},"response":[{"id":"dfa1a50b-6f37-4692-aab0-5bc5b89976ee","name":"List Sets","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/sets"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 13:03:56 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<> a memorix:Pagination ;\n  memorix:currentPageIndex 1 ;\n  memorix:resultCount 2 ;\n  memorix:numberOfPages 1 ;\n  memorix:pageSize 1000 .\n\n<https://example.memorix-test.nl/resources/sets/75670c3b-4e5e-4ec0-978b-36b15935af11>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"This is a test set\" ;\n        dcterms:title        \"My test Set\"\n        memorix:history [\n            rdf:type schema:AddAction ;\n            schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n            schema:agent users:ecbd8021-efa6-440f-89b5-ad55bc991163;\n        ] .\n\n<https://example.memorix-test.nl/resources/sets/7a758f75-0385-443f-9458-c5db9501a80d>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"Ook weer een test set\" ;\n        dcterms:title        \"Setje van Pieter\";\n        memorix:history [\n            rdf:type schema:AddAction ;\n            schema:startTime \"2021-07-01T09:01:11.556114\"^^xsd:dateTime ;\n            schema:agent users:abcd8021-efa6-440f-89b5-ad55bc993389;\n        ], \n        [\n            rdf:type schema:ReplaceAction ;\n            schema:startTime \"2021-07-10T09:12:28.123456\"^^xsd:dateTime ;\n            schema:agent users:abcd8021-efa6-440f-89b5-ad55bc993389;\n        ] .\n\n"}],"_postman_id":"3817deee-bd23-488c-9ccf-32087d2dd0a7"},{"name":"Get Single Set","id":"3f7b02d7-a481-4083-bb83-7a40808bcd7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/sets/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","sets",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"edc31f78-d58a-40d0-a095-76e6ed542bac","name":"Get Single Set","originalRequest":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/sets/75670c3b-4e5e-4ec0-978b-36b15935af11"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 13:10:02 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<https://example.memorix-test.nl/resources/sets/75670c3b-4e5e-4ec0-978b-36b15935af11>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"This is a test set\" ;\n        dcterms:title        \"My test Set\" .\n        memorix:History      <https://example.memorix-test.nl/resources/sets/75670c3b-4e5e-4ec0-978b-36b15935af11/history> ;\n        dcterms:created       \"2021-09-16T09:04:57.560343\"^^xsd:dateTime ;\n        dcterms:creator       <https://example.memorix-test.nl/resources/users/ecbd8021-efa6-440f-89b5-ad55bc991163> ;\n        dcterms:modified     \"2022-02-11T11:12:50.203328\"^^xsd:dateTime ;\n"}],"_postman_id":"3f7b02d7-a481-4083-bb83-7a40808bcd7b"},{"name":"Create new Set","id":"d9b859d4-bca3-45a8-a824-f3e906be5550","protocolProfileBehavior":{"disabledSystemHeaders":{"content-type":true,"content-length":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/sets?setId=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","sets"],"host":["https://test.memorix.io"],"query":[{"key":"setId","value":""}],"variable":[]}},"response":[{"id":"68b3576d-8f52-4b3c-8165-e38235c568d1","name":"Create new Set","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n<> rdf:type memorix:Set ;\n    dcterms:description \"A new Set\" ;\n    dcterms:title \"My Set\" .\n"},"url":"https://test.memorix.io/resources/sets"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"text/turtle","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<https://example.memorix-test.nl/resources/sets/81dca521-b720-4d7f-9d30-5f17ffa74c57>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"A new Set (modified)\" ;\n        dcterms:title        \"My Set\" ."},{"id":"18e47db7-6d39-4d8f-bc13-03f74b25d9a8","name":"Create new Set with Id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n<> rdf:type memorix:Set ;\n    dcterms:description \"A new Set\" ;\n    dcterms:title \"My Set\" .\n"},"url":{"raw":"https://test.memorix.io/resources/sets?setId=","host":["https://test.memorix.io"],"path":["resources","sets"],"query":[{"key":"setId","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Content-Type","value":"text/turtle","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<https://example.memorix-test.nl/resources/sets/{SetId}>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"A new Set (with predefined SetId)\" ;\n        dcterms:title        \"My Set\" ."},{"id":"682e92bd-4039-440e-a6b8-3bd24b2b1100","name":"Error: no title","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"{{content_type}}","type":"text"}],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"A new Set (not Title )\" .\n"},"url":"https://test.memorix.io/resources/sets"},"status":"Bad Request","code":400,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 14:06:46 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix schema: <http://schema.org/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix dct:   <http://purl.org/dc/terms/> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix sh:    <http://www.w3.org/ns/shacl#> .\n@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix dash:  <http://datashapes.org/dash#> .\n@prefix dc:    <http://purl.org/dc/elements/1.1/> .\n\n[ rdf:type     sh:ValidationReport ;\n  sh:conforms  false ;\n  sh:result    [ rdf:type                      sh:ValidationResult ;\n                 sh:focusNode                  <https://example.memorix-test.nl> ;\n                 sh:resultMessage              \"A set must have exactly one title\" ;\n                 sh:resultPath                 dcterms:title ;\n                 sh:resultSeverity             sh:Violation ;\n                 sh:sourceConstraintComponent  sh:MinCountConstraintComponent ;\n                 sh:sourceShape                [] \n               ]\n] .\n"}],"_postman_id":"d9b859d4-bca3-45a8-a824-f3e906be5550"},{"name":"Delete Set","id":"3d2b7dfb-c569-4e17-a44b-0720e30ea119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/sets/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","sets",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"39ceb868-08a9-41b7-aaed-4b55206def7c","name":"Delete Set","originalRequest":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/sets/1bf06d06-b5e6-43b8-9991-8926718c4ce5"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 14:08:11 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3d2b7dfb-c569-4e17-a44b-0720e30ea119"},{"name":"Modify exisiting Set","id":"c1ad3eb1-5095-4791-8d62-7667ef27863c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/sets/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","sets",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"25dd73e2-a671-49fc-a98e-9663ffb581fb","name":"Modify non-exisiting Set","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<https://example.memorix-test.nl/resources/sets/81dca521-b720-4d7f-9d30-5f17ffa74c57>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"A new Set (modified)\" ;\n        dcterms:title        \"My Set\" ."},"url":"https://test.memorix.io/resources/sets/ddad1eea-6d2e-4ed6-a223-43393593d413"},"status":"Not Found","code":404,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 14:08:42 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix schema: <http://schema.org/> .\n\n[ a             schema:Action ;\n  schema:error  [ schema:additionalType  <https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404> ;\n                  schema:description     \"Set not found: 2d69e0df-e917-454a-8f02-8e42b82f1f2a\"@en\n                ]\n] .\n"},{"id":"7ccbbf4d-24c3-4e50-9b85-02f29586332f","name":"Modify exisiting Set","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"A new Set (modified)\" ;\n        dcterms:title        \"My Set\" ."},"url":"https://test.memorix.io/resources/sets/81dca521-b720-4d7f-9d30-5f17ffa74c57"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Fri, 25 Jun 2021 14:10:04 GMT"},{"key":"Content-Type","value":"text/turtle"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n\n<https://example.memorix-test.nl/resources/sets/81dca521-b720-4d7f-9d30-5f17ffa74c57>\n        rdf:type             memorix:Set ;\n        dcterms:description  \"A new Set (modified)\" ;\n        dcterms:title        \"My Set\" .\n"}],"_postman_id":"c1ad3eb1-5095-4791-8d62-7667ef27863c"},{"name":"Get history of single Set","id":"9bee6b73-4710-4e52-8609-201e016ff585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/sets//history","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","sets","","history"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"9bee6b73-4710-4e52-8609-201e016ff585"}],"id":"bc0ff1c2-f5ae-497a-9f7a-23f16d33fcd8","description":"<p>A <a href=\"https://memorix.io/onthology#Set\">Set</a> is a group of Records that are to be kept together for any purpose. Not to be confused with Collections. A Set can contain Records based on multiple Recordtypes and can be contain Records from different Collections.</p>\n","_postman_id":"bc0ff1c2-f5ae-497a-9f7a-23f16d33fcd8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Shapes","item":[{"name":"List Shapes","id":"cfc5fe62-d051-4361-afa0-fb3449e33c5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/shapes","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","shapes"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"857acc53-e6cb-4fe2-ab45-bfe255b63bc9","name":"List Shapes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://example.memorix.io/resources/shapes"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix schema: <http://schema.org/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix shapes: </resources/shapes/> .\n\nshapes:Collection a sh:NodeShape ;\n    rdfs:label   \"Collection\"@en ;\n    rdfs:comment \"This shape validates a Memorix collection\" .\n\nshapes:Concept a sh:NodeShape ;\n    rdfs:label   \"Concept\"@en ;\n    rdfs:comment \"This shape validates a Memorix concept\" .\n\nshapes:ConceptScheme a sh:NodeShape ;\n    rdfs:label   \"ConceptScheme\"@en ;\n    rdfs:comment \"This shape validates a skos:ConceptScheme\" .\n\nshapes:Recordtype a sh:NodeShape ;\n    rdfs:label     \"Record type\"@en ;\n    rdfs:comment   \"This shape validates a memorix record type\" .\n\nshapes:Set a sh:NodeShape ;\n    rdfs:label           \"Set\"@en ; \n    rdfs:comment         \"Validates a Memorix set\" .\n"}],"_postman_id":"cfc5fe62-d051-4361-afa0-fb3449e33c5c"},{"name":"Get single Shape","id":"7f96427e-64b3-4f54-a4af-3b24cb032ce4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/ld+json","type":"text"}],"url":"https://test.memorix.io/resources/shapes/{{shapeId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","shapes","{{shapeId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"c57c14bf-4002-4480-950c-43ba76454e74","name":"Get single Shape","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://example.memorix.io/resources/shapes/set"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dash:    <http://datashapes.org/dash#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix sh:      <http://www.w3.org/ns/shacl#> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix dct:     <http://purl.org/dc/terms/> .\n@prefix shapes:  </resources/shapes/> .\n\nshape:Set\n    a                    sh:NodeShape ;\n    rdfs:label           \"Set\"@en ;\n    rdfs:comment         \"Validates a Memorix set\" ;\n    sh:targetClass       memorix:Set ;\n    sh:ignoredProperties ( rdf:type ) ;\n    sh:closed            true ;\n    sh:property          [ sh:path         dct:title ;\n                           sh:datatype     xsd:string ;\n                           sh:name         \"Title\" ;\n                           sh:message      \"A set must have exactly one title\" ;\n                           sh:minCount     1 ;\n                           sh:maxCount     1 ;\n                           dash:singleLine true ; ] ;\n    sh:property          [ sh:path     dct:description ;\n                           sh:datatype xsd:string ;\n                           sh:name     \"Description\" ;\n                           sh:message  \"A description must be a string\" ;\n                           sh:maxCount 1 ; ] ;\n."}],"_postman_id":"7f96427e-64b3-4f54-a4af-3b24cb032ce4"}],"id":"8b591004-516b-4874-9400-68edb7b0ccf5","description":"<p>Endpoint related to SHACL Shape files that are used internally by Memorix. Not to be confused with the SHACL Shapes that are used to define Recordtypes. Shapes in this endpoint are read-only.</p>\n","_postman_id":"8b591004-516b-4874-9400-68edb7b0ccf5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Terms","item":[{"name":"List sources","id":"637b0450-e3f3-4e8e-a984-4efb80437788","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/terms/sources","description":"<p>List all sources where terms can be searched in.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","terms","sources"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"637b0450-e3f3-4e8e-a984-4efb80437788"},{"name":"Search terms","id":"bd7593d4-8df6-4792-a51b-4516d33e7ec3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/terms/concepts?q=rembrandt&sources=http://vocab.getty.edu/aat","description":"<p>Search for matching skos concepts based upon a keyword within the selected sources.\nSee list sources for all possible sources to select from.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","terms","concepts"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>Search keyword</p>\n","type":"text/plain"},"key":"q","value":"rembrandt"},{"description":{"content":"<p>Source iri found in list sources repeat to search in multiple sources e.g <a href=\"http://vocab.getty.edu/aat\">http://vocab.getty.edu/aat</a></p>\n","type":"text/plain"},"key":"sources","value":"http://vocab.getty.edu/aat"},{"disabled":true,"key":"sources","value":"https://example.memorix-test.nl/resources/vocabularies/conceptschemes/21d5a77c-1ef9-4cbf-b57a-7203b1160687"},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"bd7593d4-8df6-4792-a51b-4516d33e7ec3"},{"name":"Get concept","id":"aa45ddda-c8d0-44a9-8a41-492d57d804f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/ld+json","type":"text"}],"url":"https://test.memorix.io/resources/terms/concept?iri=http://data.bibliotheken.nl/id/thes/p172855640","description":"<p>Fetch details of an iri in skos format, this only works for iri's that are found in the search terms endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","terms","concept"],"host":["https://test.memorix.io"],"query":[{"key":"iri","value":"http://data.bibliotheken.nl/id/thes/p172855640"}],"variable":[]}},"response":[],"_postman_id":"aa45ddda-c8d0-44a9-8a41-492d57d804f5"}],"id":"6c615999-a0d5-455d-95af-502da7a5cd6f","description":"<p>Terms include include skos concepts which can be linked from internal (vocabularies) and external sources.</p>\n","_postman_id":"6c615999-a0d5-455d-95af-502da7a5cd6f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Users","item":[{"name":"List Users (IAM)","event":[{"listen":"test","script":{"id":"6d4c2533-2433-4096-b8ed-39b7fb30dbc5","exec":["pm.test(\"Test for correct OpenID Response\", function () {","    pm.response.to.have.status(200);","    pm.response.to.be.json;","    const response = pm.response.json();","    var UserId = null;","    pm.expect(response).to.be.a(\"array\");","    response.forEach(function(user) {","        // pm.expect(user).to.have.keys('id', 'email', 'username');","","        pm.expect(user.id).not.to.be.undefined","        pm.expect(user.id).to.be.a(\"string\")","        if (!UserId) UserId = user.id","","    })","    pm.collectionVariables.set(\"UserId\", UserId);","});",""],"type":"text/javascript"}}],"id":"c6c1e825-0457-4dca-b022-f0fb8521bc07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{auth_service}}/auth/admin/realms/{{tenant}}/users?first=100","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["auth","admin","realms","{{tenant}}","users"],"host":["{{auth_service}}"],"query":[{"key":"first","value":"100"}],"variable":[]}},"response":[],"_postman_id":"c6c1e825-0457-4dca-b022-f0fb8521bc07"},{"name":"Get single User (IAM)","id":"b8d1c37f-7b4a-4b17-bf43-78fcae2926ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"{{auth_service}}/auth/admin/realms/{{tenant}}/users/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["auth","admin","realms","{{tenant}}","users",""],"host":["{{auth_service}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8d1c37f-7b4a-4b17-bf43-78fcae2926ed"},{"name":"Get single User (Memorix)","id":"5367f03c-a36f-4647-8bcb-ec25040b4c1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/users/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","users",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"a9988183-abd9-472f-ab31-c586a1433c42","name":"Get single User (Memorix)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/users/ecbd8021-efa6-440f-89b5-ad55bc991163"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n\n<https://example.memorix.io/resources/users/aa525193-f98a-45d1-88b1-1b654401f12e>\n        rdf:type              schema:Person , memorix:User ;\n        memorix:authId        \"f665205a-a6e3-46a4-855f-1728b203bfd2\" ;\n        schema:alternateName  \"Jane Doe\" ;\n        schema:email          <j.doe@memorix.io> ;\n        schema:familyName     \"Doe\" ;\n        schema:givenName      \"Jane\" ."}],"_postman_id":"5367f03c-a36f-4647-8bcb-ec25040b4c1c"},{"name":"List Users (Memorix)","id":"34ad96ca-b40e-4a48-a223-cd225ce482e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/ld+json","type":"text"}],"url":"https://test.memorix.io/resources/users","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","users"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Define property for ordering (one of created|modified)</p>\n","type":"text/plain"},"key":"orderBy","value":"modified"},{"disabled":true,"description":{"content":"<p>Change ordering Records (one of asc|desc, default asc)</p>\n","type":"text/plain"},"key":"order","value":"desc"},{"disabled":true,"description":{"content":"<p>Request number of items in resultlist. Maximums might be enforced by our backend.</p>\n","type":"text/plain"},"key":"pageSize","value":"100"},{"disabled":true,"description":{"content":"<p>Request specific page of result set (offset by 1).</p>\n","type":"text/plain"},"key":"currentPage","value":"1"}],"variable":[]}},"response":[{"id":"fbd29f8e-0920-4eaf-a3cb-681ce3460a9e","name":"List Users (Memorix)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/resources/users","host":["https://test.memorix.io"],"path":["resources","users"],"query":[{"key":"orderBy","value":"modified","type":"text","description":"Define property for ordering (one of created|modified)","disabled":true},{"key":"order","value":"desc","type":"text","description":"Change ordering Records (one of asc|desc, default asc)","disabled":true},{"key":"pageSize","value":"100","type":"text","description":"Request number of items in resultlist. Maximums might be enforced by our backend.","disabled":true},{"key":"currentPage","value":"1","type":"text","description":"Request specific page of result set (offset by 1).","disabled":true}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix dc:      <http://purl.org/dc/elements/1.1/> .\n@prefix dcterms: <http://purl.org/dc/terms/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix schema:  <http://schema.org/> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .\n\n<https://example.memorix.io/api/resources/users/f01dab1e-a1ba-beef-ca4e-deadbea71111>\n        rdf:type              memorix:User , schema:Person ;\n        memorix:authId        \"78b63170-0616-4727-856a-43f53de2e0ff\" ;\n        schema:alternateName  \"John Doe\" ;\n        schema:email          <John.Doe@memorix.io> ;\n        schema:familyName     \"John\" ;\n        schema:givenName      \"Doe\" .\n\n<https://example.memorix.io/api/resources/users/f0d8bc63-dbc8-4e2e-8fca-dc97bc7959bf>\n        rdf:type              memorix:User , schema:Person ;\n        memorix:authId        \"86c8e45c-65b8-472f-bfe4-2ec6d35c8954\" ;\n        schema:alternateName  \"Moist von Lipwig\" ;\n        schema:email          <moist@memorix.io> ;\n        schema:familyName     \"von Lipwig\" ;\n        schema:givenName      \"Moist\" .\n\n<http://0.0.0.0:8080/resources/users#total>\n        rdf:type              schema:ItemList ;\n        schema:numberOfItems  \"2\"^^xsd:int .\n\n"}],"_postman_id":"34ad96ca-b40e-4a48-a223-cd225ce482e5"}],"id":"26259387-e9ed-41d9-92cf-8b8dc197003a","_postman_id":"26259387-e9ed-41d9-92cf-8b8dc197003a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Vocabularies","item":[{"name":"ConceptSchemes","item":[{"name":"List ConceptSchemes","id":"3eaa30cd-bb68-4c58-974a-c28dcbcd99ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/vocabularies/conceptschemes","urlObject":{"path":["resources","vocabularies","conceptschemes"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"order","value":"asc"},{"disabled":true,"description":{"content":"<p>Define property for ordering ('title')</p>\n","type":"text/plain"},"key":"orderBy","value":"title"},{"disabled":true,"description":{"content":"<p>Search by vocabulary title</p>\n","type":"text/plain"},"key":"title","value":"Artists"},{"disabled":true,"description":{"content":"<p>Request specific page of result set (offset by 1).</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Maximum number of items per page</p>\n","type":"text/plain"},"key":"perPage","value":"25"}],"variable":[]}},"response":[{"id":"19d0874e-8d02-4165-b4db-fbacc365987b","name":"List ConceptSchemes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/vocabularies/conceptschemes","host":["https://test.memorix.io"],"path":["resources","vocabularies","conceptschemes"],"query":[{"key":"orderBy","value":"created","type":"text","disabled":true},{"key":"order","value":"asc","type":"text","disabled":true},{"key":"currentPage","value":"1","type":"text","disabled":true},{"key":"pageSize","value":"100","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix schema: <http://schema.org/> .\n@prefix memorix: <http://memorix.io/ontology#> .\n\n@prefix schemes: <https://pic.memorix.io/resources/vocabuaries/schemes/> .\n\n<> a memorix:ResultPagination ;\n  memorix:resultsCount 2;\n  memorix:pageSize 200;\n  memorix:maxPageSize 1000;\n  memorix:currentPageSize 1;\n  memorix:currentPageIndex 0;\n  memorix:numberOfPages 1 .\n\n\nschemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71 a skos:ConceptScheme ;\n\tskos:prefLabel \"photographic processes\" ;\n  skos:scopeNote \"Process that produces a direct positive image on a silver-coated copper plate, invented by Louis-Jacques-Mandé Daguerre of France and Joseph-Nicéphore Niepce in the 1830s. In the process, a copper plate is coated with silver iodide and exposed to light in a camera, then fumed with mercury vapour and fixed with common salt in solution.\" ;\n  memorix:numberOfItems 2 .\n"}],"_postman_id":"3eaa30cd-bb68-4c58-974a-c28dcbcd99ca"},{"name":"Get a single ConceptScheme","id":"184f97b4-37da-4a66-82bd-a36f1c7d6dda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/vocabularies/conceptschemes/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","conceptschemes",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"004ab854-2b18-425c-8a6f-31d0fb4220e8","name":"Get a single ConceptScheme","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/vocabularies/conceptschemes/027283aa-c2b7-11eb-bb8a-5b50ea4a3f71"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n\n</resources/vocabularies/conceptschemes/fd68db5a-3bfe-4767-9c8c-92666f056684>\n        a                 skos:ConceptScheme ;\n        memorix:audience  memorix:AudienceExternal ;\n        skos:prefLabel    \"Artists, 2023-01-23T12:05:10.291848\"@en ;\n        skos:scopeNote    \"Collection of artists\" .\n"}],"_postman_id":"184f97b4-37da-4a66-82bd-a36f1c7d6dda"},{"name":"Create a new ConceptScheme","id":"779c3d91-7f48-4da0-8dd0-870cf098cb76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle"}],"body":{"mode":"raw","raw":"@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix schemes: </resources/vocabularies/conceptschemes/> .\n@prefix concepts: </resources/vocabularies/concepts/> .\n\n<> a skos:ConceptScheme ;\n    skos:prefLabel \"Test conceptscheme\"@en ;\n    skos:scopeNote \"This is a test conceptscheme.\" ;\n    memorix:audience memorix:AudienceExternal ;\n    memorix:slug \"test-conceptscheme\" ."},"url":"https://test.memorix.io/resources/vocabularies/conceptschemes?conceptSchemeId=6056a579-5765-440b-9ac4-ddc746689d89&","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","conceptschemes"],"host":["https://test.memorix.io"],"query":[{"description":{"content":"<p>Provide a Concept Scheme ID to store this Scheme. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.</p>\n","type":"text/plain"},"key":"conceptSchemeId","value":"6056a579-5765-440b-9ac4-ddc746689d89"},{"key":"","value":""}],"variable":[]}},"response":[{"id":"1308cb43-0bfa-473d-91e3-ddf6f149aa9e","name":"Create a new ConceptScheme","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"text/turtle","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n\n<> a skos:ConceptScheme ;\n   skos:prefLabel \"photographic processes\"@en ;\n   skos:scopeNote \"\"\"This is some description.\"\"\" ;\n   memorix:audience memorix:audienceExternal ;\n."},"url":"https://test.memorix.io/resources/vocabularies/conceptschemes"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n\n</resources/vocabularies/conceptschemes/fd68db5a-3bfe-4767-9c8c-92666f056684>\n        a                 skos:ConceptScheme ;\n        memorix:audience  memorix:AudienceExternal ;\n        skos:prefLabel    \"Licences\"@en ;\n        skos:scopeNote    \"Collection of Licences\" .\n"}],"_postman_id":"779c3d91-7f48-4da0-8dd0-870cf098cb76"},{"name":"Replace an existing ConceptScheme","id":"ad9cbc41-109c-4555-af7d-f819510b3512","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n\n<https://example.memorix-test.nl/resources/vocabularies/ddd83f23-5f21-42bf-8168-9eb1418d9999>\n        a                 skos:ConceptScheme ;\n        memorix:audience  memorix:AudienceExternal ;\n        skos:prefLabel    \"photographic processes\"@en ;\n        skos:scopeNote    \"This is some description.\" .\n"},"url":"https://test.memorix.io/resources/vocabularies/conceptschemes/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","conceptschemes",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"1fa2398f-d642-4444-a070-9ac306f93cc8","name":"Replace an existing ConceptScheme","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix memorix: <https://memorix.io/ontology#> .\n@prefix schemes: <https://example.memorix.io/resources/vocabularies/schemes/> .\n\nschemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71 a skos:ConceptScheme ;\n        memorix:audience  memorix:AudienceExternal ;\n        skos:prefLabel    \"photographic processes\"@en ;\n        skos:scopeNote    \"This is some description.\" .\n        "},"url":"https://test.memorix.io/resources/vocabularies/conceptschemes/"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix dct: <http://purl.org/dc/terms/> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix schema: <https://schema.org/> .\n@prefix memorix: <https://memorix.io/ontology#> .\n\n@prefix schemes: <https://example.memorix.io/resources/vocabuaries/schemes/> .\n@prefix users: <https://example.memorix.io/resources/users/> .\n\nschemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71 a skos:ConceptScheme ;\n  skos:prefLabel \"photographic processes\" ;\n  memorix:audience memorix:audienceExternal ;\n  memorix:numberOfItems 2 .\n\nschemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71 memorix:history \n  [\n    a schema:CreateAction ;\n    dct:created \"2021-01-06T08:34:56Z\"^^schema:dateTime ;\n    dct:creator users:bf8b749e-9790-11eb-8ed9-f77045a77479\n  ] ,\n  [\n    a schema:UpdateAction ;\n    dct:created \"2021-02-01T09:10:20Z\"^^schema:dateTime ;\n    dct:creator users:bf8b749e-9790-11eb-8ed9-f77045a77479\n  ], \n  [\n    a schema:UpdateAction ;\n    dct:created \"2021-03-01T12:23:56Z\"^^schema:dateTime ;\n    dct:creator users:bf8b749e-9790-11eb-8ed9-f77045a77479\n  ] \n.\n"}],"_postman_id":"ad9cbc41-109c-4555-af7d-f819510b3512"},{"name":"Delete ConceptScheme","id":"ae2be591-2b40-4cee-8816-1feaf6d9dd72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/vocabularies/conceptschemes/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","conceptschemes",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae2be591-2b40-4cee-8816-1feaf6d9dd72"}],"id":"f4143743-1624-4556-bb2e-d4858b4f1aeb","_postman_id":"f4143743-1624-4556-bb2e-d4858b4f1aeb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Concepts","item":[{"name":"List Concepts","id":"df20b41b-e805-4b7e-9020-038ddd07fef4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/vocabularies/concepts?conceptSchemeId=archieven-digitaal-documentsoort","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","concepts"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Filter concepts by ConceptScheme (UUID)</p>\n","type":"text/plain"},"key":"conceptSchemeId","value":"0dada355-9e1e-4f1f-8d86-0455d6067bb7"},{"disabled":true,"key":"orderBy","value":"prefLabel"},{"disabled":true,"key":"order","value":"asc"},{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"perPage","value":"25"},{"disabled":true,"description":{"content":"<p>search term</p>\n","type":"text/plain"},"key":"q","value":""},{"key":"conceptSchemeId","value":"archieven-digitaal-documentsoort"}],"variable":[]}},"response":[{"id":"62c66191-3421-4e4b-9222-d5c002997a16","name":"List Concepts","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":{"raw":"https://test.memorix.io/resources/vocabularies/concepts","host":["https://test.memorix.io"],"path":["resources","vocabularies","concepts"],"query":[{"key":"ConceptSchemeId","value":"","type":"text","description":"Filter concepts by ConceptScheme (UUID)","disabled":true},{"key":"orderBy","value":"created","type":"text","disabled":true},{"key":"order","value":"asc","type":"text","disabled":true},{"key":"currentPage","value":"1","type":"text","disabled":true},{"key":"pageSize","value":"100","type":"text","disabled":true}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix schema: <http://schema.org/> .\n@prefix memorix: <https://memorix.io/ontology#> .\n\n@prefix schemes: <https://example.memorix.io/resources/vocabuaries/schemes/> .\n@prefix concepts: <https://example.memorix.io/resources/vocabuaries/concepts/> .\n@prefix users: <https://example.memorix.io/resources/users/> .\n\n<> a memorix:ResultPagination ;\n  memorix:resultsCount 2;\n  memorix:pageSize 200;\n  memorix:maxPageSize 1000;\n  memorix:currentPageSize 1;\n  memorix:currentPageIndex 0;\n  memorix:numberOfPages 1 .\n\nconcepts:983d45b4-c2b2-11eb-879a-dbb8830414ac a skos:Concept ;\n  skos:inScheme schemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71;\n  skos:prefLabel \"daguerreotype\" ;\n  skos:scopeNote \"Process that produces a direct positive image on a silver-coated copper plate, invented by Louis-Jacques-Mandé Daguerre of France and Joseph-Nicéphore Niepce in the 1830s. In the process, a copper plate is coated with silver iodide and exposed to light in a camera, then fumed with mercury vapour and fixed with common salt in solution.\" ;\n  skos:exactMatch <http://vocab.getty.edu/aat/300053530> ;\n  memorix:audience memorix:audienceExternal .\n\nconcepts:6e8d9436-c2b6-11eb-8241-abcb37f074f5 a skos:Concept ;\n  skos:inScheme schemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71;\n\tskos:prefLabel \"hillotype\" ;\n\tskos:scopeNote \"Early color photographic process announced by Levi L. Hill in 1856 but thought until recently to be spurious, and still not fully understood.\"@en ;\n    memorix:audience memorix:audienceInternal .\n\n"}],"_postman_id":"df20b41b-e805-4b7e-9020-038ddd07fef4"},{"name":"Get a single Concept","id":"f2b7602a-f517-47a6-9ba0-cbdef7645c36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/vocabularies/concepts/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","concepts",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"70805095-824f-4a54-ad8b-431ca7064ee8","name":"Get a single Concept","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"text/turtle","type":"text"}],"url":"https://test.memorix.io/resources/vocabularies/concepts/983d45b4-c2b2-11eb-879a-dbb8830414ac"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix dct: <http://purl.org/dc/terms/> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix schema: <http://schema.org/> .\n@prefix memorix: <https://memorix.io/ontology#> .\n\n@prefix schemes: <https://example.memorix.io/resources/vocabuaries/schemes/> .\n@prefix concepts: <https://example.memorix.io/resources/vocabuaries/concepts/> .\n@prefix users: <https://example.memorix.io/resources/users/> .\n\nconcepts:983d45b4-c2b2-11eb-879a-dbb8830414ac a skos:Concept ;\n  skos:inScheme schemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71;\n\tskos:prefLabel \"daguerreotype\" ;\n\tskos:scopeNote \"Process that produces a direct positive image on a silver-coated copper plate, invented by Louis-Jacques-Mandé Daguerre of France and Joseph-Nicéphore Niepce in the 1830s. In the process, a copper plate is coated with silver iodide and exposed to light in a camera, then fumed with mercury vapour and fixed with common salt in solution.\" ;\n  skos:exactMatch <http://vocab.getty.edu/aat/300053530> ;\n  memorix:audience memorix:audienceExternal\n.\n\nschemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71 a skos:ConceptScheme .\n\nconcepts:983d45b4-c2b2-11eb-879a-dbb8830414ac memorix:history \n  [\n    a schema:CreateAction ;\n    dct:created \"2021-01-06T08:34:56Z\"^^schema:dateTime ;\n    dct:creator users:bf8b749e-9790-11eb-8ed9-f77045a77479\n  ] ,\n  [\n    a schema:UpdateAction ;\n    dct:created \"2021-02-01T09:10:20Z\"^^schema:dateTime ;\n    dct:creator users:bf8b749e-9790-11eb-8ed9-f77045a77479\n  ], \n  [\n    a schema:UpdateAction ;\n    dct:created \"2021-03-01T12:23:56Z\"^^schema:dateTime ;\n    dct:creator users:bf8b749e-9790-11eb-8ed9-f77045a77479\n  ] \n.\n"}],"_postman_id":"f2b7602a-f517-47a6-9ba0-cbdef7645c36"},{"name":"Create a new Concept","id":"fde70016-8979-4821-9dba-b40febfbfd42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"text/turtle","type":"text"},{"key":"Content-Type","value":"text/turtle","type":"text"}],"body":{"mode":"raw","raw":"@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix schemes: </resources/vocabularies/conceptschemes/> .\n@prefix concepts: </resources/vocabularies/concepts/> .\n\n<> a skos:Concept ;\n   skos:inScheme </resources/vocabularies/conceptschemes/fd68db5a-3bfe-4767-9c8c-92666f056684> ;\n   skos:topConceptOf </resources/vocabularies/conceptschemes/fd68db5a-3bfe-4767-9c8c-92666f056684> ;\n   skos:prefLabel \"bam bam\"@en ;\n   skos:scopeNote \"\"\"Process that produces a direct positive image on a silver-coated copper plate, \n    invented by Louis-Jacques-Mandé Daguerre of France and Joseph-Nicéphore Niepce in the 1830s. \n    In the process, a copper plate is coated with silver iodide and exposed to light in a camera, \n    then fumed with mercury vapour and fixed with common salt in solution.\"\"\" ;\n   skos:exactMatch <http://vocab.getty.edu/aat/300053530> ;\n."},"url":"https://test.memorix.io/resources/vocabularies/concepts","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","concepts"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"description":{"content":"<p>Provide a Concept ID to store this Concept. Memorix will auto-create a UUID if this value is not provided. UUID must be unique within Memorix or creation will fail.</p>\n","type":"text/plain"},"key":"conceptId","value":""}],"variable":[]}},"response":[{"id":"679a2b6a-77ba-4477-8ec9-ece7512255ac","name":"Create a new Concept","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"applicationld+/json","type":"text"}],"body":{"mode":"raw","raw":"@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix memorix: <http://memorix.io/ontology#> .\n@prefix schemes: </resources/vocabularies/conceptschemes/> .\n@prefix concepts: </resources/vocabularies/concepts/> .\n\n<> a skos:Concept ;\n   skos:inScheme </resources/vocabularies/conceptschemes/ddd83f23-5f21-42bf-8168-9eb1418d9999> ;\n   skos:topConceptOf </resources/vocabularies/conceptschemes/ddd83f23-5f21-42bf-8168-9eb1418d9999> ;\n   skos:prefLabel \"bam bam\"@en ;\n   skos:scopeNote \"\"\"Process that produces a direct positive image on a silver-coated copper plate, \n    invented by Louis-Jacques-Mandé Daguerre of France and Joseph-Nicéphore Niepce in the 1830s. \n    In the process, a copper plate is coated with silver iodide and exposed to light in a camera, \n    then fumed with mercury vapour and fixed with common salt in solution.\"\"\" ;\n   skos:exactMatch <http://vocab.getty.edu/aat/300053530> ;\n   memorix:audience memorix:AudienceExternal ;\n."},"url":"https://test.memorix.io/resources/vocabularies/concepts"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"@id\": \"https://example.memorix.io/resources/vocabuaries/concepts/983d45b4-c2b2-11eb-879a-dbb8830414ac\",\n    \"@type\": \"skos:Concept\",\n    \"exactMatch\": \"http://vocab.getty.edu/aat/300053530\",\n    \"inScheme\": \"schemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71\",\n    \"prefLabel\": [{\"@value\":\"bam bam\",\"@language\":\"en\"}],\n    \"scopeNote\": \"Process that produces a direct positive image on a silver-coated copper plate, \\n    invented by Louis-Jacques-Mandé Daguerre of France and Joseph-Nicéphore Niepce in the 1830s. \\n    In the process, a copper plate is coated with silver iodide and exposed to light in a camera, \\n    then fumed with mercury vapour and fixed with common salt in solution.\",\n    \"audience\": \"audience:External\",\n    \"@context\": {\n        \"audience\": {\n            \"@id\": \"https://memorix.io/ontology#audience\",\n            \"@type\": \"@id\"\n        },\n        \"exactMatch\": {\n            \"@id\": \"http://www.w3.org/2004/02/skos/core#exactMatch\",\n            \"@type\": \"@id\"\n        },\n        \"scopeNote\": {\n            \"@id\": \"http://www.w3.org/2004/02/skos/core#scopeNote\"\n        },\n        \"prefLabel\": {\n            \"@id\": \"http://www.w3.org/2004/02/skos/core#prefLabel\"\n        },\n        \"inScheme\": {\n            \"@id\": \"http://www.w3.org/2004/02/skos/core#inScheme\",\n            \"@type\": \"@id\"\n        },\n        \"memorix\": \"https://memorix.io/ontology#\",\n        \"concepts\": \"https://example.memorix.io/resources/vocabuaries/concepts/\",\n        \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n        \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n        \"schemes\": \"https://example.memorix.io/resources/vocabuaries/conceptschemes/\"\n    }\n}"}],"_postman_id":"fde70016-8979-4821-9dba-b40febfbfd42"},{"name":"Replace an existing Concept","id":"3ba332bc-0ec9-48a5-a3b9-9d8360d4727d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"@prefix memorix: <http://memorix.io/ontology#> .\n@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix skos:    <http://www.w3.org/2004/02/skos/core#> .\n\n<https://example.memorix-test.nl/resources/vocabularies/concepts/8d267ccc-98cc-4234-a024-928f4ac0fbbb>\n        a                  skos:Concept ;\n        skos:exactMatch    <http://vocab.getty.edu/aat/300053530> ;\n        skos:inScheme      <https://example.memorix-test.nl/resources/vocabularies/ddd83f23-5f21-42bf-8168-9eb1418d9999> ;\n        skos:prefLabel     \"bam bam\"@en ;\n        skos:scopeNote     \"Process that produces a direct positive image on a silver-coated copper plate.\" ;\n        skos:topConceptOf  <https://example.memorix-test.nl/resources/vocabularies/ddd83f23-5f21-42bf-8168-9eb1418d9999> .\n"},"url":"https://test.memorix.io/resources/vocabularies/concepts/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","concepts",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"f45d436b-e20a-4ec7-80ed-e025cd2f070b","name":"Replace an existing Concept","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/turtle","type":"text"},{"key":"Accept","value":"applicationld+/json","type":"text"}],"body":{"mode":"raw","raw":"@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix skos: <http://www.w3.org/2004/02/skos/core#> .\n@prefix memorix: <https://memorix.io/ontology#> .\n@prefix schemes: <https://example.memorix.io/resources/vocabularies/conceptschemes/> .\n@prefix concepts: <https://example.memorix.io/resources/vocabularies/concepts/> .\n\n<https://example.memorix.io/resources/vocabularies/concepts/983d45b4-c2b2-11eb-879a-dbb8830414ac> a skos:Concept ;\n    skos:inScheme schemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71 ;\n    skos:topConceptOf schemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71 ;\n\tskos:prefLabel \"daguerreotype\"@en ;\n\tskos:scopeNote \"\"\"Process that produces a direct positive image on a silver-coated copper plate, \n    invented by Louis-Jacques-Mandé Daguerre of France and Joseph-Nicéphore Niepce in the 1830s. \n    In the process, a copper plate is coated with silver iodide and exposed to light in a camera, \n    then fumed with mercury vapour and fixed with common salt in solution.\"\"\" ;\n  skos:exactMatch <http://vocab.getty.edu/aat/300053530> ;\n  memorix:audience memorix:AudienceExternal .\n"},"url":"https://test.memorix.io/resources/vocabularies/concepts/983d45b4-c2b2-11eb-879a-dbb8830414ac"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"@id\": \"https://example.memorix.io/resources/vocabuaries/concepts/983d45b4-c2b2-11eb-879a-dbb8830414ac\",\n    \"@type\": \"skos:Concept\",\n    \"exactMatch\": \"http://vocab.getty.edu/aat/300053530\",\n    \"inScheme\": \"schemes:027283aa-c2b7-11eb-bb8a-5b50ea4a3f71\",\n    \"prefLabel\": [{\"@value\":\"bam bam\",\"@language\":\"en\"}],\n    \"scopeNote\": \"Process that produces a direct positive image on a silver-coated copper plate, \\n    invented by Louis-Jacques-Mandé Daguerre of France and Joseph-Nicéphore Niepce in the 1830s. \\n    In the process, a copper plate is coated with silver iodide and exposed to light in a camera, \\n    then fumed with mercury vapour and fixed with common salt in solution.\",\n    \"audience\": \"audience:External\",\n    \"@context\": {\n        \"audience\": {\n            \"@id\": \"https://memorix.io/ontology#audience\",\n            \"@type\": \"@id\"\n        },\n        \"exactMatch\": {\n            \"@id\": \"http://www.w3.org/2004/02/skos/core#exactMatch\",\n            \"@type\": \"@id\"\n        },\n        \"scopeNote\": {\n            \"@id\": \"http://www.w3.org/2004/02/skos/core#scopeNote\"\n        },\n        \"prefLabel\": {\n            \"@id\": \"http://www.w3.org/2004/02/skos/core#prefLabel\"\n        },\n        \"inScheme\": {\n            \"@id\": \"http://www.w3.org/2004/02/skos/core#inScheme\",\n            \"@type\": \"@id\"\n        },\n        \"memorix\": \"https://memorix.io/ontology#\",\n        \"concepts\": \"https://example.memorix.io/resources/vocabuaries/concepts/\",\n        \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n        \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n        \"schemes\": \"https://example.memorix.io/resources/vocabuaries/conceptschemes/\"\n    }\n}"}],"_postman_id":"3ba332bc-0ec9-48a5-a3b9-9d8360d4727d"},{"name":"Delete Concept","id":"bf0ab051-3958-47bd-85c9-70e7ae56c476","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/vocabularies/concepts/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","vocabularies","concepts",""],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf0ab051-3958-47bd-85c9-70e7ae56c476"}],"id":"4bb3ef10-a846-4e82-b68d-7ddc61aa9b61","_postman_id":"4bb3ef10-a846-4e82-b68d-7ddc61aa9b61","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}}],"id":"3893bd42-d29e-4ef4-a5d4-e1d0ec1078b0","description":"<p><strong>RDF Types:</strong> </p>\n<ul>\n<li><strong><a href=\"http://www.w3.org/2004/02/skos/core#ConceptSchema\">http://www.w3.org/2004/02/skos/core#ConceptSchema</a></strong></li>\n<li><strong><a href=\"http://www.w3.org/2004/02/skos/core#Concept\">http://www.w3.org/2004/02/skos/core#Concept</a></strong></li>\n</ul>\n<p>Memorix contains a simple Vocabulary editor based on the <a href=\"https://www.w3.org/2009/08/skos-reference/skos.html\">Simple Knowledge Organization System</a> (SKOS). Two SKOS classes are available: <a href=\"https://www.w3.org/2009/08/skos-reference/skos.html#ConceptScheme\">ConceptSchema</a> and <a href=\"https://www.w3.org/2009/08/skos-reference/skos.html#Concept\">Concept</a>. Currently Memorix only supports these properties for Concepts, there is no language support available:</p>\n<ul>\n<li><a href=\"https://www.w3.org/2009/08/skos-reference/skos.html#prefLabel\">prefLabel</a></li>\n<li><a href=\"https://www.w3.org/2009/08/skos-reference/skos.html#scopeNote\">scopeNote</a></li>\n<li><a href=\"http://www.w3.org/2004/02/skos/core#exactMatch\">exactMatch</a> (for aligning to an external skos:Concept)</li>\n</ul>\n","_postman_id":"3893bd42-d29e-4ef4-a5d4-e1d0ec1078b0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Workflow","item":[{"name":"Workflows","item":[{"name":"Create workflow","id":"e5cdd966-2988-44b0-a637-c43c514be2b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/workflows","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"8c04e7e5-3a4e-44ce-b85a-ef525da74055","name":"Create workflow","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"My workflow title\",\n    \"description\": \"My workflow description\",\n    \"digitization\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/workflows"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 13:30:01 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"772ca15c-caa9-4cad-bb82-26bafa1d0eb4\",\n    \"summary\": {\n        \"title\": \"My workflow title\",\n        \"description\": \"My workflow description\",\n        \"digitization\": true,\n        \"modificationHistory\": {\n            \"createdAt\": \"2021-10-20T13:30:02.596621\",\n            \"createdBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n            \"modifiedAt\": null,\n            \"modifiedBy\": null\n        }\n    }\n}"}],"_postman_id":"e5cdd966-2988-44b0-a637-c43c514be2b1"},{"name":"Update workflow","id":"d6095212-ca0b-4849-8583-26a56e1dce72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"9945c152-426e-4bbe-89c1-1e0441cfe976","name":"Update workflow","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"My updated workflow title\",\n    \"description\": \"My updated workflow description\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 13:37:25 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"772ca15c-caa9-4cad-bb82-26bafa1d0eb4\",\n    \"summary\": {\n        \"title\": \"My updated workflow title\",\n        \"description\": \"My updated workflow description\",\n        \"modificationHistory\": {\n            \"createdAt\": \"2021-10-20T13:30:02.596621\",\n            \"createdBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n            \"modifiedAt\": \"2021-10-20T13:37:26.342523\",\n            \"modifiedBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\"\n        }\n    }\n}"}],"_postman_id":"d6095212-ca0b-4849-8583-26a56e1dce72"},{"name":"Delete workflow","id":"9326780b-70e1-4b81-a3ed-593209a839f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"9326780b-70e1-4b81-a3ed-593209a839f2"},{"name":"Get workflow","id":"40d98d7b-81f5-4269-a39a-5258991d8a03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"40d98d7b-81f5-4269-a39a-5258991d8a03"},{"name":"List workflows","id":"f3badbca-7039-4758-8cc6-20bce60fa657","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/workflow/workflows?page=1&perPage=10","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"}],"variable":[]}},"response":[],"_postman_id":"f3badbca-7039-4758-8cc6-20bce60fa657"},{"name":"https://test.memorix.io/resources/workflow/workflows","id":"d2703217-71e8-47f0-b759-cd6e199970bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"My workflow title\",\n    \"description\": \"My workflow description\",\n    \"digitization\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/workflows","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2703217-71e8-47f0-b759-cd6e199970bb"}],"id":"90ed7949-bfd5-4934-89d7-e53522fb2c1f","_postman_id":"90ed7949-bfd5-4934-89d7-e53522fb2c1f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Rules","item":[{"name":"Create rule","id":"15b95181-fbdd-44b0-af52-5d7e758e78de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"stepId\": \"{StepId}\",\n\t\"field\": \"DOWNLOAD_IMAGE\",\n\t\"value\": true\n}"},"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/rules","description":"<p>Field can be one of the following:\nALLOW_REQUESTS_OR_RESERVATIONS,\nALLOW_SCANNING_ON_DEMAND,\nDISPLAY_IMAGE,\nDOWNLOAD_IMAGE,\nDISPLAY_COPYRIGHT_HOLDER,\nAUDIENCE</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","rules"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"15b95181-fbdd-44b0-af52-5d7e758e78de"},{"name":"Delete rule","id":"12d880fe-9c6f-4da5-94f9-318220162d65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/rules/{{ruleId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","rules","{{ruleId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"12d880fe-9c6f-4da5-94f9-318220162d65"},{"name":"Get single rule by id","id":"ff423d55-5cc2-47ed-8de6-02cbf2081256","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/rules/{{ruleId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","rules","{{ruleId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff423d55-5cc2-47ed-8de6-02cbf2081256"},{"name":"List workflow rules","id":"b0a4f989-b0d9-4a12-8a28-df54edfd8ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/rules?page=1&perPage=25&q=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","rules"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"q","value":""}],"variable":[]}},"response":[],"_postman_id":"b0a4f989-b0d9-4a12-8a28-df54edfd8ec8"},{"name":"List workflow step rules","id":"0a538f4d-ee8e-4327-9b9c-27c47a41584e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/steps/{{stepId}}/rules?page=1&perPage=25&q=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","steps","{{stepId}}","rules"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"q","value":""}],"variable":[]}},"response":[],"_postman_id":"0a538f4d-ee8e-4327-9b9c-27c47a41584e"}],"id":"2725cff5-926a-493b-9d2d-a4804425c04d","_postman_id":"2725cff5-926a-493b-9d2d-a4804425c04d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Steps","item":[{"name":"Create step in workflow","id":"7775f6ba-ad5b-4129-9870-4b358ea80ba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/steps","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","steps"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"baf3aa3e-6b86-4f34-b658-fe05518ce121","name":"Create step in workflow","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Step 1\",\n    \"description\": \"The first step\",\n    \"order\": 1,\n    \"location\": \"Somewhere over the rainbow\"\n}"},"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/steps"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 14:02:01 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8a3f9aea-719d-4419-ab66-963bfc0f7fa4\",\n    \"workflowId\": \"772ca15c-caa9-4cad-bb82-26bafa1d0eb4\",\n    \"summary\": {\n        \"title\": \"Step 1\",\n        \"description\": \"The first step\",\n        \"modificationHistory\": {\n            \"createdAt\": \"2021-10-20T14:02:02.404682\",\n            \"createdBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n            \"modifiedAt\": null,\n            \"modifiedBy\": null\n        }\n    },\n    \"order\": 1,\n    \"location\": \"Somewhere over the rainbow\",\n    \"isFinal\": false\n}"}],"_postman_id":"7775f6ba-ad5b-4129-9870-4b358ea80ba2"},{"name":"Update step in workflow","id":"eedb60b8-f0fd-4f58-a569-95f188e02f93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/steps/{{stepId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","steps","{{stepId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"53a84a77-e220-43db-9c31-016ddf72afa9","name":"Update step in workflow","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Step 1\",\n    \"description\": \"The updated first step\",\n    \"order\": 1,\n    \"location\": \"Somewhere over another rainbow\"\n}"},"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/steps/{{stepId}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 14:05:49 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"8a3f9aea-719d-4419-ab66-963bfc0f7fa4\",\n    \"workflowId\": \"772ca15c-caa9-4cad-bb82-26bafa1d0eb4\",\n    \"summary\": {\n        \"title\": \"Step 1\",\n        \"description\": \"The updated first step\",\n        \"modificationHistory\": {\n            \"createdAt\": \"2021-10-20T14:02:02.404682\",\n            \"createdBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n            \"modifiedAt\": \"2021-10-20T14:05:49.615147\",\n            \"modifiedBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\"\n        }\n    },\n    \"order\": 1,\n    \"location\": \"Somewhere over the rainbow\",\n    \"isFinal\": false\n}"}],"_postman_id":"eedb60b8-f0fd-4f58-a569-95f188e02f93"},{"name":"Delete step from workflow","id":"b54a3ea5-ea39-4736-a8ba-7c6ac9fc3b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/steps/{{stepId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","steps","{{stepId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b54a3ea5-ea39-4736-a8ba-7c6ac9fc3b87"},{"name":"Get step","id":"26592fc6-f41a-4ce9-809a-5da8260c9525","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/steps/{{stepId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","steps","{{stepId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"26592fc6-f41a-4ce9-809a-5da8260c9525"},{"name":"List steps","id":"08aaa16e-51a4-459d-9ad5-fc7d19cd10e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://test.memorix.io/resources/workflow/workflows/{{workflowId}}/steps","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","workflows","{{workflowId}}","steps"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"08aaa16e-51a4-459d-9ad5-fc7d19cd10e2"}],"id":"33688b60-945a-4f80-982b-5b6aabdeb9f0","_postman_id":"33688b60-945a-4f80-982b-5b6aabdeb9f0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Projects","item":[{"name":"Create project","id":"995655e9-3645-4cfc-9c1a-814e7c7846f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/projects","description":"<p>Project status must be one of: OPEN, CLOSED, IN_PROGRESS</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"dbe9a60c-d98c-44b1-a441-efd73359b55c","name":"Create project","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Project three\",\n    \"description\": \"The third project\",\n    \"code\": \"TEST\",\n    \"workflow\": \"{{workflowId}}\",\n    \"status\": \"OPEN\",\n    \"startDate\": \"2021-10-20T14:29:53.426230\",\n    \"endDate\": \"2021-12-20T14:29:53.426230\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/projects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 14:29:53 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"6a4a4bd4-5bfc-4c7c-8095-ebaf7f60b7e8\",\n    \"projectNr\": \"1234\",\n    \"summary\": {\n        \"title\": \"Project one\",\n        \"description\": \"The first project\",\n        \"modificationHistory\": {\n            \"createdAt\": \"2021-10-20T14:29:53.426230\",\n            \"createdBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n            \"modifiedAt\": null,\n            \"modifiedBy\": null\n        }\n    },\n    \"workflowId\": \"772ca15c-caa9-4cad-bb82-26bafa1d0eb4\",\n    \"status\": \"OPEN\",\n    \"startDate\": null,\n    \"endDate\": null\n}"}],"_postman_id":"995655e9-3645-4cfc-9c1a-814e7c7846f3"},{"name":"Update project","id":"afb10339-7200-491c-a835-e50aba85828f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","{{projectId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"823716f0-7dbc-4e7b-93bf-38cbbaa35b0e","name":"Update project","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Project three point one\",\n    \"description\": \"The updated project\",\n    \"code\": \"TEST\",\n    \"workflow\": \"{{workflowId}}\",\n    \"status\": \"IN_PROGRESS\",\n    \"startDate\": \"2021-10-20T14:29:53.426230\",\n    \"endDate\": \"2021-12-20T14:29:53.426230\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 14:33:33 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"2c1b1cd4-5b98-4035-8099-df8b9c3037a1\",\n    \"projectNr\": \"1234\",\n    \"summary\": {\n        \"title\": \"Project one and a half\",\n        \"description\": \"The updated project\",\n        \"modificationHistory\": {\n            \"createdAt\": \"2021-10-20T14:30:21.052780\",\n            \"createdBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n            \"modifiedAt\": \"2021-10-20T14:33:33.236771\",\n            \"modifiedBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\"\n        }\n    },\n    \"workflowId\": \"772ca15c-caa9-4cad-bb82-26bafa1d0eb4\",\n    \"status\": \"IN_PROGRESS\",\n    \"startDate\": null,\n    \"endDate\": null\n}"}],"_postman_id":"afb10339-7200-491c-a835-e50aba85828f"},{"name":"Delete project","id":"e7029613-5b22-45a3-bc0a-7012453fb4fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","{{projectId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7029613-5b22-45a3-bc0a-7012453fb4fb"},{"name":"Get project","id":"c1f001e6-5a0d-445e-a916-5e0b2e47ba31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","{{projectId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1f001e6-5a0d-445e-a916-5e0b2e47ba31"},{"name":"List projects","id":"a02d5f79-cbe7-4337-a679-faa3a20dc59e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{}"},"url":"https://test.memorix.io/resources/workflow/projects/list?page=1&perPage=10","description":"<p>Allowed sortable fields are:</p>\n<ul>\n<li>title</li>\n<li>workflow</li>\n<li>status</li>\n</ul>\n<p>Allowed order options:</p>\n<ul>\n<li>asc</li>\n<li>desc</li>\n</ul>\n<p>All the fields are expected to be in snakeCase. Any other variations should result in 400 http response</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","list"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"}],"variable":[]}},"response":[{"id":"f518b1a3-992a-4262-8913-4cac6a888a78","name":"List projects with filter/sort","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"q\": \"project title searchphrase\",\n    \"status\": [\n        \"open\", \"closed\"\n    ],\n    \"workflow\": [\n        \"{{WorkflowId}}\"\n    ],\n    \"sort\": [\n        {\"status\": \"asc\"},\n        {\"title\": \"asc\"},\n        {\"workflow\": \"desc\"}\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/resources/workflow/projects/list?page=1&perPage=10","host":["https://test.memorix.io"],"path":["resources","workflow","projects","list"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"},{"key":"q","value":"project title","disabled":true}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"47d322c5-82ea-476a-9e98-0b4a6500a662","name":"List projects with filter/sort  with startDate and endDate","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"q\": \"project title searchphrase\",\n    \"status\": [\n        \"open\", \"closed\"\n     ],\n  \"startDateFrom\": \"2025-06-05T12:08:15.928186\", \n  \"startDateTill\": \"2025-07-05T12:08:15.928186\",  \n  \"endDateFrom\": \"2025-09-05T12:08:15.928\", \n  \"endDateTill\" : \"2025-10-05T12:08:15.928\",\n    \"workflow\": [\n        \"{{WorkflowId}}\"\n    ],\n    \"sort\": [\n        {\"status\": \"asc\"},\n        {\"title\": \"asc\"},\n        {\"workflow\": \"desc\"},\n        {\"startDate\": \"asc\"},\n        {\"endDate\": \"asc\"}\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/resources/workflow/projects/list?page=1&perPage=10","host":["https://test.memorix.io"],"path":["resources","workflow","projects","list"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"},{"key":"q","value":"project title","disabled":true}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a02d5f79-cbe7-4337-a679-faa3a20dc59e"},{"name":"List project records","id":"1f930083-5b95-47cf-b2ac-34e38c3b72e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"code\" : 2\n}"},"url":"https://test.memorix.io/resources/workflow/projects/{{ProjectId}}/records/list?page=1&perPage=10","description":"<p>Allowed sortable fields are:</p>\n<ul>\n<li>title</li>\n<li>workflow</li>\n<li>status</li>\n<li>fondsId</li>\n</ul>\n<p>Allowed order options:</p>\n<ul>\n<li>asc</li>\n<li>desc</li>\n</ul>\n<p>All the fields are expected to be in snakeCase. Any other variations should result in 400 http response</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","{{ProjectId}}","records","list"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"}],"variable":[]}},"response":[{"id":"2c23696c-0eb4-47f5-ae13-df8d9b5426ed","name":"List projects with filter/sort","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"q\": \"project title searchphrase\",\n    \"status\": [\n        \"open\", \"closed\"\n    ],\n    \"workflow\": [\n        \"{{WorkflowId}}\"\n    ],\n    \"fondsIds\": [\n        \"{{FondId}}\"\n    ],\n    \"sort\": [\n        {\"fondsId\": \"asc\"},\n        {\"record\": \"asc\"},\n        {\"serialNumber\": \"asc\"},\n        {\"step\": \"asc\"}\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/resources/workflow/projects/{{ProjectId}}/list?page=1&perPage=10","host":["https://test.memorix.io"],"path":["resources","workflow","projects","{{ProjectId}}","list"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"},{"key":"q","value":"project title","disabled":true}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1f930083-5b95-47cf-b2ac-34e38c3b72e0"}],"id":"5a8c9c30-95a7-4868-b816-d00bc606cc30","_postman_id":"5a8c9c30-95a7-4868-b816-d00bc606cc30","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Records","item":[{"name":"Add records to project via bulk action (by query)","id":"f76ca0ae-9b3d-4c90-9cdf-1324b8793898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","query"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"44c209ea-2867-4cb2-b353-09386e1eaca5","name":"Add records to project via bulk action (by query)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"type\": \"ADD_TO_PROJECT\",\n        \"projectId\": \"{{projectId}}\"\n    },\n    \"query\": {\n        \"type\": \"AndQuery\",\n        \"queries\": [\n            {\n                \"type\": \"AndQuery\",\n                \"queries\": [\n                    {\n                        \"type\": \"FieldQuery\",\n                        \"operator\": \"equals\",\n                        \"field\": \"title\",\n                        \"value\": \"My record title\"\n                    }\n                ]\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 15:03:29 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Length","value":"178"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"507bf99e-4c85-428b-a43b-70aa7b633616\",\n    \"userId\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n    \"start\": \"2021-10-20T15:03:30.248371\",\n    \"activity\": \"CREATED\",\n    \"progress\": null,\n    \"end\": null\n}"}],"_postman_id":"f76ca0ae-9b3d-4c90-9cdf-1324b8793898"},{"name":"Add records to project via bulk action (by ids)","id":"641907fa-aac9-43c1-89bc-e2e639d6bccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","ids"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"55133228-c0e3-4104-8864-762222bef2f5","name":"Add records to project via bulk action (by ids)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"type\": \"ADD_TO_PROJECT\",\n        \"projectId\": \"{{projectId}}\"\n    },\n    \"recordIds\": [\"{{recordId}}\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 15:13:37 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Length","value":"178"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ce847fed-a67c-4957-93b5-a475f8c50537\",\n    \"userId\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n    \"start\": \"2021-10-20T15:13:37.130667\",\n    \"activity\": \"CREATED\",\n    \"progress\": null,\n    \"end\": null\n}"}],"_postman_id":"641907fa-aac9-43c1-89bc-e2e639d6bccc"},{"name":"Move records to project via bulk action (by ids)","id":"eb03a48c-f3a8-4555-8160-dcb03114602b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","ids"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"1c017c89-8c14-4c45-b96f-246af540be87","name":"Move records to project via bulk action (by ids)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"recordIds\": [\n    \"f6b6a6c8-475b-432d-95f5-1f7dc7e615a7\",\n    \"25faa970-0855-4a0a-87b6-4b352448a546\"\n  ],\n  \"operation\": {\n    \"type\": \"MOVE_TO_PROJECT\",\n    \"from\": \"5ea71d3b-f03f-4a14-8db4-21239b02a379\",\n    \"to\": \"d6bb1ce2-24c8-4e78-9f53-cc8bb8be1ccb\"\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 15:13:37 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Length","value":"178"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"ce847fed-a67c-4957-93b5-a475f8c50537\",\n    \"userId\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n    \"start\": \"2021-10-20T15:13:37.130667\",\n    \"activity\": \"CREATED\",\n    \"progress\": null,\n    \"end\": null\n}"}],"_postman_id":"eb03a48c-f3a8-4555-8160-dcb03114602b"},{"name":"Add Record to Project via RPC","event":[{"listen":"test","script":{"id":"ce7641ef-0907-41d7-b624-415f779369ad","exec":[""],"type":"text/javascript"}}],"id":"ffb7ca30-585a-40b3-aaf5-dab688d07236","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"reorderAssetsOfRecord\",\n    \"params\": {\n        \"record_id\": \"a3c0275e-7203-49fb-9edc-9b462916993c\",\n        \"asset_id\": \"95\",\n        \"desired_order\": 5 \n    },\n    \"id\": 4321\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ffb7ca30-585a-40b3-aaf5-dab688d07236"},{"name":"Remove records from project via bulk action (by ids)","id":"b2cbe48e-94d1-4499-8fbb-fab58eabb449","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"type\": \"REMOVE_FROM_PROJECT\",\n        \"projectId\": {{projectId}}\n    },\n    \"recordIds\": \"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","ids"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2cbe48e-94d1-4499-8fbb-fab58eabb449"},{"name":"Change step of the records via bulk (by ids)","id":"36d11ed2-535e-463f-8579-463e30b7873d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"operation\": {\n        \"type\": \"CHANGE_WORKFLOW_STEP\",\n        \"projectId\": {{projectId}},\n        \"stepId\": {{stepId}},\n        \"message\": \"Step was changed for a reason\"\n    },\n    \"recordIds\": [\n        ,\n        ,\n        \n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/bulk/records/ids","description":"<p>This change will result in immediate creation of the comment with provided message for each record.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["bulk","records","ids"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"36d11ed2-535e-463f-8579-463e30b7873d"},{"name":"List project records","id":"35123cbd-b3da-4c8d-be98-533ee7b6e216","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}/records/list?page=1&perPage=2","description":"<p>Allowed sortable fields are:</p>\n<ul>\n<li>record</li>\n<li>step</li>\n<li>modifiedAt</li>\n</ul>\n<p>Allowed order options:</p>\n<ul>\n<li>asc</li>\n<li>desc</li>\n</ul>\n<p>All the fields are expected to be in snakeCase. Any other variations should result in 400 http response</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","{{projectId}}","records","list"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"2"}],"variable":[]}},"response":[{"id":"7eed6ae1-552a-43ab-8b50-427d23476eba","name":"List project records with filter/sort","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"q\": \"record title searchphrase\",\n    \"step\": [\n        \"{{StepId}}\",\n        \"{{StepId}}\"\n    ],\n    \"depot\": [\"{{depotId}}\"],\n    \"sort\": [\n        {\"record\": \"desc\"},\n        {\"step\": \"asc\"},\n        {\"modifiedAt\": \"asc\"}\n    ],\n    \"dateRange\": {\n    \t\"start\": \"2021-11-19T00:00:00\",\n    \t\"end\": \"2021-12-03T00:00:00\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://test.memorix.io/resources/workflow/projects/{{projectId}}/records/list?page=1&perPage=2","host":["https://test.memorix.io"],"path":["resources","workflow","projects","{{projectId}}","records","list"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"2"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": {\n                \"recordId\": \"68203cad-7135-42d2-9185-5b1510856f6d\",\n                \"projectId\": \"800a3565-6650-471d-bdcb-60484d0dc6f0\"\n            },\n            \"step\": null,\n            \"projectTitle\": \"Project one\",\n            \"summary\": {\n                \"title\": \"20022-01\",\n                \"description\": \"\",\n                \"modificationHistory\": {\n                    \"createdAt\": \"2021-12-06T14:42:17.640781\",\n                    \"createdBy\": {\n                        \"id\": \"9322211c-ad10-4284-9c58-bf7a270cec17\",\n                        \"name\": \"Siergiej Onda\"\n                    },\n                    \"modifiedAt\": null,\n                    \"modifiedBy\": null\n                }\n            },\n            \"nrOfComments\": 0,\n            \"locationDetails\": {\n                \"depot\": {\n                    \"id\": \"ad6007ac-e0af-4055-b02a-1f18bd2bae3c\",\n                    \"title\": \"Test 123\"\n                },\n                \"startContainer\": {\n                    \"id\": \"9bc6f6b1-a3f6-4f0f-8fac-85982c470769\",\n                    \"title\": \"container 1 / subContainer 1\"\n                },\n                \"endContainer\": {\n                    \"id\": \"aed815e8-cc22-4dfb-a2fd-e52d51d89c88\",\n                    \"title\": \"container 1 / subContainer 4 / subSubContainer 3 / subSubSubContainer 5\"\n                }\n            }\n        },\n        {\n            \"id\": {\n                \"recordId\": \"6809138a-932c-4ccb-9de3-0828be52c60d\",\n                \"projectId\": \"800a3565-6650-471d-bdcb-60484d0dc6f0\"\n            },\n            \"step\": {\n                \"id\": \"e91ac314-6e29-4ac0-81f0-3634b59625bb\",\n                \"title\": \"Rearranging\"\n            },\n            \"projectTitle\": \"Project one\",\n            \"summary\": {\n                \"title\": \"Eerste familie\",\n                \"description\": \"\",\n                \"modificationHistory\": {\n                    \"createdAt\": \"2021-11-15T14:13:25.743063\",\n                    \"createdBy\": {\n                        \"id\": \"9322211c-ad10-4284-9c58-bf7a270cec17\",\n                        \"name\": \"Siergiej Onda\"\n                    },\n                    \"modifiedAt\": \"2021-11-25T09:41:07.138602\",\n                    \"modifiedBy\": {\n                        \"id\": \"696bf3ab-c709-492f-a52b-e6454aba81b2\",\n                        \"name\": \"Moist von Lipwig\"\n                    }\n                }\n            },\n            \"nrOfComments\": 2,\n            \"locationDetails\": null\n        },\n        {\n            \"id\": {\n                \"recordId\": \"11ee93d8-ce77-4143-a4ee-fa63aa1b1799\",\n                \"projectId\": \"800a3565-6650-471d-bdcb-60484d0dc6f0\"\n            },\n            \"step\": {\n                \"id\": \"6d973fc8-5dca-4a41-b880-d40828c6ca96\",\n                \"title\": \"Move to Picturae\"\n            },\n            \"projectTitle\": \"Project one\",\n            \"summary\": {\n                \"title\": \"Harry, de, Tester\",\n                \"description\": \"\",\n                \"modificationHistory\": {\n                    \"createdAt\": \"2021-11-15T16:55:42.474455\",\n                    \"createdBy\": {\n                        \"id\": \"9322211c-ad10-4284-9c58-bf7a270cec17\",\n                        \"name\": \"Siergiej Onda\"\n                    },\n                    \"modifiedAt\": \"2021-11-15T16:56:31.283861\",\n                    \"modifiedBy\": {\n                        \"id\": \"9322211c-ad10-4284-9c58-bf7a270cec17\",\n                        \"name\": \"Siergiej Onda\"\n                    }\n                }\n            },\n            \"nrOfComments\": 1,\n            \"locationDetails\": null\n        },\n        {\n            \"id\": {\n                \"recordId\": \"2a6f4ff2-da35-4f79-94bc-24c13a3614e7\",\n                \"projectId\": \"800a3565-6650-471d-bdcb-60484d0dc6f0\"\n            },\n            \"step\": {\n                \"id\": \"6d973fc8-5dca-4a41-b880-d40828c6ca96\",\n                \"title\": \"Move to Picturae\"\n            },\n            \"projectTitle\": \"Project one\",\n            \"summary\": {\n                \"title\": \"Stichting Imagine IC\",\n                \"description\": \"\",\n                \"modificationHistory\": {\n                    \"createdAt\": \"2021-11-04T11:57:29.784620\",\n                    \"createdBy\": {\n                        \"id\": \"c0cc1854-4a41-4b11-b5a2-c783520f6cd8\",\n                        \"name\": \"Edja Crnogorcevic\"\n                    },\n                    \"modifiedAt\": \"2021-11-11T09:21:07.890816\",\n                    \"modifiedBy\": {\n                        \"id\": \"c0cc1854-4a41-4b11-b5a2-c783520f6cd8\",\n                        \"name\": \"Edja Crnogorcevic\"\n                    }\n                }\n            },\n            \"nrOfComments\": 13,\n            \"locationDetails\": null\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 10,\n        \"total\": 4,\n        \"max\": null\n    }\n}"}],"_postman_id":"35123cbd-b3da-4c8d-be98-533ee7b6e216"},{"name":"List record workflow records","id":"f41638ba-718b-44fd-932d-9a213aeeb0c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/workflow/projects/any/records/{{recordId}}?page=1&perPage=25&q=","description":"<p>This will get a list of workflow records linked to an actual mmx record, no matter in which project it is. </p>\n<p>Pagination and search by record title is supported, same as for any list endpoint</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","any","records","{{recordId}}"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"q","value":""}],"variable":[]}},"response":[{"id":"baec1999-4c33-4025-94de-d5c171ad3cd3","name":"List record workflow records","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://test.memorix.io/resources/workflow/projects/any/records/{{recordId}}?page=1&perPage=25&q=","host":["https://test.memorix.io"],"path":["resources","workflow","projects","any","records","{{recordId}}"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"25"},{"key":"q","value":""}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"rows\": [\n        {\n            \"id\": {\n                \"recordId\": \"ed54cde9-9083-441e-94e9-068f32f6097a\",\n                \"projectId\": \"d2d58a57-0e7c-48da-81ab-44ecdeb1f917\"\n            },\n            \"step\": {\n                \"id\": \"32bd7786-2c37-4317-9806-7773f135da30\",\n                \"title\": \"step 1 from workflow 1\"\n            },\n            \"projectTitle\": \"project with workflow 1\",\n            \"summary\": {\n                \"title\": \"My record\",\n                \"description\": \"\",\n                \"modificationHistory\": {\n                    \"createdAt\": \"2021-11-02T13:51:15.247284\",\n                    \"createdBy\": {\n                        \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                        \"name\": \"Barry Batsbak\"\n                    },\n                    \"modifiedAt\": \"2021-11-02T14:40:36.176590\",\n                    \"modifiedBy\": {\n                        \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                        \"name\": \"Barry Batsbak\"\n                    }\n                }\n            },\n            \"nrOfComments\": 3\n        },\n        {\n            \"id\": {\n                \"recordId\": \"ed54cde9-9083-441e-94e9-068f32f6097a\",\n                \"projectId\": \"cd326b2a-7bda-4265-a231-9e22073f3782\"\n            },\n            \"step\": {\n                \"id\": \"5169fabc-51b2-4619-9256-0828a7feac41\",\n                \"title\": \"step 3 from workflow 1\"\n            },\n            \"projectTitle\": \"another project with workflow 1\",\n            \"summary\": {\n                \"title\": \"My record\",\n                \"description\": \"\",\n                \"modificationHistory\": {\n                    \"createdAt\": \"2021-11-08T09:05:35.700980\",\n                    \"createdBy\": {\n                        \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                        \"name\": \"Barry Batsbak\"\n                    },\n                    \"modifiedAt\": \"2021-11-08T09:23:13.705748\",\n                    \"modifiedBy\": {\n                        \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                        \"name\": \"Barry Batsbak\"\n                    }\n                }\n            },\n            \"nrOfComments\": 2\n        },\n        {\n            \"id\": {\n                \"recordId\": \"ed54cde9-9083-441e-94e9-068f32f6097a\",\n                \"projectId\": \"6c3412f3-4a9d-416a-8b08-8b8cb263d0b5\"\n            },\n            \"step\": {\n                \"id\": \"b79ce788-ad53-414c-b885-043f9e629d9c\",\n                \"title\": \"step 1 from workflow 2\"\n            },\n            \"projectTitle\": \"project with workflow 2\",\n            \"summary\": {\n                \"title\": \"My record\",\n                \"description\": \"\",\n                \"modificationHistory\": {\n                    \"createdAt\": \"2021-11-08T10:00:46.327242\",\n                    \"createdBy\": {\n                        \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                        \"name\": \"Barry Batsbak\"\n                    },\n                    \"modifiedAt\": \"2021-11-08T10:04:05.438262\",\n                    \"modifiedBy\": {\n                        \"id\": \"f01dab1e-a1ba-beef-ca4e-deadbea71111\",\n                        \"name\": \"Barry Batsbak\"\n                    }\n                }\n            },\n            \"nrOfComments\": 1\n        }\n    ],\n    \"pagination\": {\n        \"page\": 1,\n        \"perPage\": 100,\n        \"total\": 3,\n        \"max\": null\n    }\n}"}],"_postman_id":"f41638ba-718b-44fd-932d-9a213aeeb0c3"},{"name":"Get single record from the project","id":"0e38d250-60e5-4a0d-93fd-50ebd4fdb42a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}/records/{{recordId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","{{projectId}}","records","{{recordId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e38d250-60e5-4a0d-93fd-50ebd4fdb42a"},{"name":"Find record by barcode","id":"ed124a17-401e-4b12-bf9e-0b21bc7456a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/workflow/search/record/barcode/{{workFlowBarcode}}","description":"<p>Find a record by it's barcode, the barcode consists of the project code and the record serial number in the project.</p>\n<p>For example the project code is <code>SKU</code>, and the record in the project has a serial number of <code>00001</code><br />The barcode will be <code>SKU0001</code></p>\n<p>Possible error response are</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP 1.1 400 Bad Request\n{ \"message\": \"Invalid barcode {barcode}\" }\n\n</code></pre><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP 1.1 404 Not Found\n{ \"message\": \"Project not found by code {code}\" }\n\n</code></pre><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>HTTP 1.1 404 Not Found\n{ \"message\": \"Record not found by serial number {serial}\" }\n\n</code></pre>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","search","record","barcode","{{workFlowBarcode}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ed124a17-401e-4b12-bf9e-0b21bc7456a6"},{"name":"Change step of a single record","id":"5ff1c461-95e0-4a4f-9572-eb4457ee94a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}/records/{{recordId}}","description":"<p>This change will result in immediate creation of the comment with provided message.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","{{projectId}}","records","{{recordId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"705e21b0-d1b1-4b64-b279-fb08cd66ae1d","name":"Change step of a single record","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"step_id\": \"{{stepId}}\",\n    \"message\": \"Next please!\"\n}"},"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}/records/{{recordId}}"},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Oct 2021 15:14:55 GMT"},{"key":"Server","value":"ktor-server-core/1.6.3"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"},{"key":"transfer-encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": {\n        \"recordId\": \"2eeed0b0-7dd8-4100-9a29-d389c8ff9cd9\",\n        \"projectId\": \"2c1b1cd4-5b98-4035-8099-df8b9c3037a1\"\n    },\n    \"stepId\": null,\n    \"modificationHistory\": {\n        \"createdAt\": \"2021-10-20T15:13:37.487789\",\n        \"createdBy\": \"3dadb253-8e12-4dfe-90cb-407959b6914e\",\n        \"modifiedAt\": null,\n        \"modifiedBy\": null\n    }\n}"}],"_postman_id":"5ff1c461-95e0-4a4f-9572-eb4457ee94a2"},{"name":"Delete single record from the project","id":"741c2ac7-5bef-4a7e-b5d4-d33c70497099","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/workflow/projects/{{projectId}}/records/{{recordId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","{{projectId}}","records","{{recordId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"741c2ac7-5bef-4a7e-b5d4-d33c70497099"},{"name":"Export project records to CSV","id":"dd635546-5ae1-439d-83ff-1750d895df80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"record title searchphrase\",\n    \"fondsIds\": [\"{{fonds_identifier}}\"],\n    \"step\": [\n        \"{{StepId}}\",\n        \"{{StepId}}\"\n    ],\n    \"code\": 1,\n    \"depot\": [\"{{depotId}}\"],\n    \"ids\":[{{recordId}}, {{recordId}}],\n    \"sort\": [\n        {\"record\": \"desc\"},\n        {\"step\": \"asc\"},\n        {\"modifiedAt\": \"asc\"},\n        {\"fondsId\": \"asc\"}\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/projects/export/{{ProjectId}}/csv","description":"<p>/resources/workflow/projects/export/{{ProjectId}}/csv</p>\n<p>Endpoint to export project records to CSV.</p>\n<p>Returns an id of a created export job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","projects","export","{{ProjectId}}","csv"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[{"id":"8a08bf91-2c16-48d8-8dd3-36dead24b24a","name":"Export project records to CSV","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"sort\": [\n        {\"fondsId\": \"asc\"}\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/projects/export/e697d002-94a1-4748-bf7c-42147ec72d37/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 18 Dec 2023 14:00:38 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"45"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"b0456651-fc29-44f2-8a6e-126af972e8c1\"\n}"},{"id":"6292b7ea-6620-4548-81fb-cdfcbacaca93","name":"Export project records to CSV by ids","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ids\": [\"c2f07a68-7888-441a-92c3-edf51b4dc450\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/projects/export/{{ProjectId}}/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Jan 2024 11:42:01 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"45"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4857d4e4-1d7b-431a-a38e-5b9567d0399d\"\n}"},{"id":"e0d4f9b2-4e20-4e60-88fb-7613b2320877","name":"Export project records to CSV","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"ww\",\n    \"sort\": [\n        {\"fondsId\": \"asc\"}\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/projects/export/e697d002-94a1-4748-bf7c-42147ec72d37/csv"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Jan 2024 11:49:41 GMT"},{"key":"Server","value":"ktor-server-core/1.6.8"},{"key":"Content-Length","value":"45"},{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"068df90c-bc61-400e-92df-936050f796fd\"\n}"}],"_postman_id":"dd635546-5ae1-439d-83ff-1750d895df80"}],"id":"892b573f-bcfc-4c68-a1f6-6a3cef016cd8","description":"<p>The record in the workflow context is created once actual record is added to the project. </p>\n<p>Adding records is done by bulk action ADD_TO_PROJECT.<br />Removing records is done by bulk action REMOVE_FROM_PROJECT.</p>\n<p>Deletion of the record will cause the deletion of the linked workflow records in all the projects.</p>\n","_postman_id":"892b573f-bcfc-4c68-a1f6-6a3cef016cd8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Comments","item":[{"name":"Create a comment for the project record","id":"9fd7b17a-41b4-44e7-8c20-67f84d4da145","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"message\": \"my comment message\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/project/{{projectId}}/record/{{recordId}}/comments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","project","{{projectId}}","record","{{recordId}}","comments"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"9fd7b17a-41b4-44e7-8c20-67f84d4da145"},{"name":"Update a comment for the project record","id":"31777206-28bc-4567-83fb-39371a083b2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"message\": \"this is a my updated message\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/resources/workflow/project/{{projectId}}/record/{{recordId}}/comments/{{commentId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","project","{{projectId}}","record","{{recordId}}","comments","{{commentId}}"],"host":["https://test.memorix.io"],"query":[{"disabled":true,"key":"message","value":"my updated comment"}],"variable":[]}},"response":[],"_postman_id":"31777206-28bc-4567-83fb-39371a083b2e"},{"name":"Delete a comment for the project record","id":"7249d027-dcad-48b6-997c-1b2a54987b97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://test.memorix.io/resources/workflow/project/{{projectId}}/record/{{recordId}}/comments/{{commentId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","project","{{projectId}}","record","{{recordId}}","comments","{{commentId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"7249d027-dcad-48b6-997c-1b2a54987b97"},{"name":"Get a comment for the project record","id":"1e5bd3a3-7824-4687-af08-43eb42d8e7e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/workflow/project/{{projectId}}/record/{{recordId}}/comments/{{commentId}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","project","{{projectId}}","record","{{recordId}}","comments","{{commentId}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e5bd3a3-7824-4687-af08-43eb42d8e7e8"},{"name":"List comments for the project record","id":"e5e33946-83e2-4c43-8a6c-42bccdc9d524","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.memorix.io/resources/workflow/project/{{projectId}}/record/{{recordId}}/comments/{{commentId}}?page=1&perPage=10&q=comment","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","workflow","project","{{projectId}}","record","{{recordId}}","comments","{{commentId}}"],"host":["https://test.memorix.io"],"query":[{"key":"page","value":"1"},{"key":"perPage","value":"10"},{"key":"q","value":"comment"}],"variable":[]}},"response":[],"_postman_id":"e5e33946-83e2-4c43-8a6c-42bccdc9d524"}],"id":"be9b8ea1-c1a4-4154-8c98-38e4bc10663a","description":"<p>Comments is also created automatically when record step is being changed (also via bulk action)</p>\n","_postman_id":"be9b8ea1-c1a4-4154-8c98-38e4bc10663a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}}],"id":"d8d69c27-ed3b-4a31-8145-64ce6ee0f9ff","_postman_id":"d8d69c27-ed3b-4a31-8145-64ce6ee0f9ff","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}},{"name":"Transcriptions","item":[{"name":"Link transcription to Asset","id":"dd96bde9-aa7c-4b73-ad6c-c343d6e0c0bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"linkTranscriptionToAsset\",\n    \"params\": \n     {\n        \"asset_id\": 55,\n        \"transcription_id\": 226,\n        \"transcription_dam_path\": \"System/abby.xml\"\n     }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd96bde9-aa7c-4b73-ad6c-c343d6e0c0bf"},{"name":"Unlink transcription from asset","id":"0c206f95-64d2-4381-b554-85d788e430d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"unlinkTranscriptionFromAsset\",\n    \"params\": \n    {\n        \"asset_id\": 55, \n        \"transcription_uuid\": \"2ec8d29d-a050-46e4-b0bf-6d4f81586b4d\"\n        }\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/rpc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["rpc"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c206f95-64d2-4381-b554-85d788e430d9"},{"name":"Link transcriptions","id":"6e02bfb2-38ad-4032-9d6c-2ab5790e1127","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"folderName\": \"/System/transcriptions\",\n    \"projectId\": \"471f0ab3-5a59-4d90-87ca-3908a6959cfe\"\n}","options":{"raw":{"language":"json"}}},"url":"https://test.memorix.io/edepot/project/transcriptions/link","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["edepot","project","transcriptions","link"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e02bfb2-38ad-4032-9d6c-2ab5790e1127"},{"name":"Download transcription","id":"1bc8db12-b41a-4a0a-badc-7fa81768ed8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://test.memorix.io/resources/transcriptions/download/{{TranscriptionUuid}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}},"urlObject":{"path":["resources","transcriptions","download","{{TranscriptionUuid}}"],"host":["https://test.memorix.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1bc8db12-b41a-4a0a-badc-7fa81768ed8c"}],"id":"d778622e-afeb-435a-87b7-41f711955150","_postman_id":"d778622e-afeb-435a-87b7-41f711955150","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"32cbd5a6-d476-404a-bae0-159197eb176c","id":"32cbd5a6-d476-404a-bae0-159197eb176c","name":"Memorix","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"ed8b3949-7a2d-4d07-a957-668458099c2c","type":"text/javascript","packages":{},"requests":{},"exec":["const path = require('path')","Memorix = {","    path: path,","    lastSeenIdentifier: null, ","    resourceTypes: [","        'Record',","        'Context',","        'History',","        'Recordtype',","        'Set',","        'Collection',","        'ConceptScheme',","        'Concept',","        'User',","    ],","    checkRdfClasses: function (","        response, ","        allowedRdfTypes, ","        setIdentifierFromRdfType","    ) {","        const hct = response.headers.get('Content-Type');","        //make sure we test for memorix: as prefix, but also for full URL's:","        for (var i in allowedRdfTypes) {","            if (allowedRdfTypes[i].match(/^memorix\\:/)) {","                allowedRdfTypes.push(allowedRdfTypes[i].replace('memorix:', 'http://memorix.io/ontology#'))","            }","        }","        var identifier = null;","        if (hct == 'application/ld+json') {","            const Graph = response.json();","            pm.expect(Graph).to.be.a(\"object\");","            pm.expect(Graph['@graph']).not.to.be.undefined;","            pm.expect(Graph['@graph']).to.be.a(\"array\");","            pm.expect(Graph['@context']).not.to.be.undefined;","            pm.expect(Graph['@context']).to.be.a(\"object\");","            Graph['@graph'].forEach(function (graph) {","                if (graph['@type'] == setIdentifierFromRdfType && !identifier) {","                    Memorix.lastSeenIdentifier = graph['@id'];","                }","                pm.expect(graph['@type']).to.be.oneOf(allowedRdfTypes);","            });","        }","    },","    rpc: {","        methods: {","            removeRecordFromSet: ['record_id', 'set_id'],","            addRecordToSet: ['record_id', 'set_id'],","            linkAssetToRecord: ['record_id', 'asset_id'],","            unlinkAssetFromRecord: ['record_id', 'asset_id'],","            unlinkAssetsFromRecord: ['record_id']","        },","        checkMethod: function (pm) {","            pm.expect(pm.request.body.mode).to.eql(\"raw\");","            const body = JSON.parse(pm.request.body.raw);  ","            pm.expect(body).to.a(\"object\");","","            pm.expect(body.method).not.to.be.undefined;","            pm.expect(body.method).to.be.a(\"string\");","","            pm.expect(body.method).to.be.oneOf(Object.keys(Memorix.rpc.methods));","        },","","        checkMethodParameters: function (pm) {","            const body = JSON.parse(pm.request.body.raw);  ","            const parameters = Memorix.rpc.methods[body.method];","            pm.expect(body.params).not.to.be.undefined;","            pm.expect(body.params).to.be.a(\"object\");","            parameters.forEach(function(parameter) {","                pm.expect(body.params[parameter]).not.to.be.undefined;","            })","        },","        checkResponse: function (pm) {","            pm.response.to.have.status(200);","            pm.response.to.be.json;","            const response = pm.response.json();","            pm.expect(response).to.be.a(\"object\");","","            pm.expect(response.jsonrpc).not.to.be.undefined;","            pm.expect(response.jsonrpc).to.be.a(\"string\");","            pm.expect(response.jsonrpc).to.eql(\"2.0\");","","            pm.expect(response.result).not.to.be.undefined;","            pm.expect(response.result).to.be.a(\"string\");","","            pm.expect(response.id).not.to.be.undefined;","            pm.expect(response.id).to.be.a(\"number\");","        },","","        checkId: function (pm) {","            pm.response.to.have.status(200);","            pm.response.to.be.json;","            const response = pm.response.json();","            pm.expect(pm.request.body.mode).to.eql(\"raw\");","            const body = JSON.parse(pm.request.body.raw);  ","            pm.expect(body).to.a(\"object\");","","            pm.expect(body.jsonrpc).not.to.be.undefined;","            pm.expect(body.jsonrpc).to.be.a(\"string\");","            pm.expect(body.jsonrpc).to.eql(\"2.0\");","","            pm.expect(body.id).not.to.be.undefined;","            pm.expect(body.id).to.be.a(\"number\");","            pm.expect(body.id).to.eql(response.id);","        }","    },","};","const disableAuthentication = pm.environment.get(\"disableAuthentication\")==\"true\" || pm.environment.get(\"disableAuthentication\")==true","if (request.name != 'Authenticate' && !disableAuthentication) {","    const auth_url = pm.environment.get('auth_service')","        + \"/auth/realms/\"","        + pm.environment.get('tenant')","        + \"/protocol/openid-connect/token\";","","    const headers = {","        'Content-Type': 'application/x-www-form-urlencoded',","    }","","    const username = pm.environment.get('username')","    const password = pm.environment.get('password')","","    let grantType = pm.environment.get('auth_grant_type')","    if (grantType == undefined) {","        grantType = \"password\"","    }","","    const body = {","        mode: 'urlencoded',","        urlencoded: [","            {key: \"grant_type\", value: grantType}","        ]","    }","","    // Auth for service accounts","    if (grantType === 'client_credentials') {","        body.urlencoded.push({key: \"client_id\", value: pm.environment.get('username')})","        body.urlencoded.push({key: \"client_secret\", value: pm.environment.get('password')})","    } else {        ","        // Add credentials for normal user accounts","        body.urlencoded.push({key: \"client_id\", value: pm.variables.get('auth_client_id')})","        body.urlencoded.push({key: \"username\", value: pm.environment.get('username')})","        body.urlencoded.push({key: \"password\", value: pm.environment.get('password')})","    }   ","","    const authRequest = {","        url: auth_url,","        method: 'POST',","        header: headers,","        body: body","    };","","    pm.sendRequest(authRequest, (error, response) => {","        if (error) console.log(error);","        const tokenObject = response.json();","        if (typeof tokenObject.access_token == \"string\")","            pm.collectionVariables.set(\"bearer_token\", tokenObject.access_token);","    });","","    // set Accept header for all requests based on the variable:","    if (!pm.request.headers.get('Accept')) {","        pm.request.headers.add({","            key: \"Accept\",","            value: pm.collectionVariables.get('Accept')","        });","    }","    // if (request.method == \"POST\" || request.method == \"PATCH\" || request.method == \"PUT\") {","    //     pm.request.headers.add({","    //         key: \"Content-Type\",","    //         value: pm.collectionVariables.get('Content-Type')","    //     });","","    // }","}","","",""]}},{"listen":"test","script":{"id":"7f6709f1-262d-4d2b-9da1-8c1ed033c4c4","type":"text/javascript","packages":{},"requests":{},"exec":["pm.test(`Test Accept header match`, function () {","    const h_accept = pm.request.headers.get('Accept');","    pm.response.to.have.header(\"Content-Type\");","    const h_contentType = pm.response.headers.get('Content-Type');","    parts1 = h_contentType.split(';')","    parts2 =  h_accept.split(';')","    pm.expect(parts1[0]).to.eql(parts2[0]);","});","",""]}}],"variable":[{"key":"auth_grant_type","value":"password"},{"key":"auth_client_id","value":"memorix-ui"},{"key":"Accept","value":"application/ld+json"},{"key":"Content-Type","value":"text/turtle"},{"key":"bearer_token","value":""},{"key":"CollectionId","value":""},{"key":"RecordId","value":""},{"key":"RecordtypeId","value":""},{"key":"SetId","value":""},{"key":"ConceptSchemeId","value":""},{"key":"ConceptId","value":""},{"key":"username","value":""},{"key":"password","value":""},{"key":"UserId","value":""},{"key":"HistoryId","value":""},{"key":"historyId","value":""},{"key":"AssetId","value":""},{"key":"AnnotationId","value":""},{"key":"listId","value":"reservation-status"},{"key":"barcode","value":"k158KR8lU8Rl"},{"key":"collectionTitle","value":"Files"},{"key":"test.memorix.io","value":"memorix_api_url"},{"key":"vocabularyTitle","value":"Artists"},{"key":"memorix_api_url","value":"https://test.memorix.io"}]}