{"info":{"_postman_id":"cb13e219-67cb-470a-93d8-545d55d46c6b","name":"Hermes Private","description":"The **Hermes** project is spanned across multiple *services* with a dedicated endpoint each. \\\nThe present document aims to provide a user friendly documentation for all services.\n\n## GraphQL\n\nThe main entry point to all services is a [**GraphQL**](https://graphql.org) compatible server. \\\nIn addition to the general specification, the server implements [**Relay**](https://relay.dev).\n\nRequests may be performed using a HTTP client such as [**cURL**](https://es.wikipedia.org/wiki/CURL) directly. \\\nHowever using a GraphQL-specific client should be preferred if available.\n\nWe recommend the reader be confident with both specifications before proceeding.\n\n## Variables\n\nSome of the values used within the example requests are present as placeholders. \\\nIn case the reader requires a valid value to be given, please refer to an administrator.","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Catalogue","item":[{"name":"Management","item":[{"name":"Authentication","event":[{"listen":"test","script":{"id":"6bc58d57-42e0-4203-b1ed-a0eb87e77f9b","exec":["var jsonData = pm.response.json();","token = jsonData.data.login.token;","pm.environment.set(\"employee_token\", token);","","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"dd09911c-ab05-4cea-815a-524cb82501f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Obtain a token to be passed in subsequent requests."},"response":[],"_postman_id":"dd09911c-ab05-4cea-815a-524cb82501f6"},{"name":"Create Type","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let type_id = response.data.alias.id;","pm.collectionVariables.set(\"type_id\", type_id);","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": type_id","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});"],"type":"text/javascript"}}],"id":"4ad31a77-935b-473f-a37c-960a0dab2c93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for type creation."},"response":[],"_postman_id":"4ad31a77-935b-473f-a37c-960a0dab2c93"},{"name":"Create Attribute","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let attribute_id = response.data.alias.id;","pm.collectionVariables.set(\"attribute_id\", attribute_id);","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": attribute_id","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","","","",""],"type":"text/javascript"}}],"id":"bcef1cd8-802a-4464-bf87-833805e052e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for attribute creation."},"response":[],"_postman_id":"bcef1cd8-802a-4464-bf87-833805e052e0"},{"name":"Create Value","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let value_id = response.data.alias.id;","pm.collectionVariables.set(\"value_id\", value_id);","","let attribute_id = pm.collectionVariables.get(\"attribute_id\");","let entity_id = pm.collectionVariables.get(\"entity_id\");","let shop_id = pm.collectionVariables.get(\"shop_id\");","let value_text = pm.collectionVariables.get(\"value_text\");","let value_number = parseFloat(pm.collectionVariables.get(\"value_number\"));","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": value_id,","            \"text\": value_text,","            \"number\": value_number,","            \"entity\": {","                \"id\": entity_id","            },","            \"attribute\": {","                \"id\": attribute_id","            },","            \"shop\": {","                \"id\": shop_id","            }","        }","    }","};","","","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});"],"type":"text/javascript"}}],"id":"aa340557-d5c6-4cde-b987-96b243eeea31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for value creation."},"response":[],"_postman_id":"aa340557-d5c6-4cde-b987-96b243eeea31"},{"name":"Create TranslationSet","id":"4b5948f4-ecb3-43aa-af38-8091c70ac477","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}"},"response":[],"_postman_id":"4b5948f4-ecb3-43aa-af38-8091c70ac477"},{"name":"Create Shop","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let shop_id = response.data.alias.id;","pm.collectionVariables.set(\"shop_id\", shop_id);","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": shop_id","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","","","",""],"type":"text/javascript"}}],"id":"786a2276-c04c-42f4-915f-a618a6569d2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for shop creation."},"response":[],"_postman_id":"786a2276-c04c-42f4-915f-a618a6569d2f"},{"name":"Create Entity","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let entity_id = response.data.alias.id;","let entity_name = pm.collectionVariables.get(\"entity_name\");","let type_id = pm.collectionVariables.get(\"type_id\");","","pm.collectionVariables.set(\"entity_id\", entity_id);","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": entity_id,","            \"parent\": null,","            \"reference\": entity_name,","            \"type\": {","                \"id\": type_id","            }","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","","","",""],"type":"text/javascript"}}],"id":"a6c7838e-ce11-4b29-8d7c-e8d645bee9aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for entity creation."},"response":[],"_postman_id":"a6c7838e-ce11-4b29-8d7c-e8d645bee9aa"},{"name":"Create Relation Kind","event":[{"listen":"test","script":{"id":"2d9a6a7b-15e3-4634-a052-3e2a322b3eeb","exec":["let response = pm.response.json();","let relation_kind_id = response.data.alias.id;","pm.collectionVariables.set(\"relation_kind_id\", relation_kind_id);","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": relation_kind_id","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"ccd847cd-0af0-40ea-b520-02bfc185b6f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for relation kind creation."},"response":[],"_postman_id":"ccd847cd-0af0-40ea-b520-02bfc185b6f9"},{"name":"Create Relation","event":[{"listen":"test","script":{"id":"1a33a613-2a92-440a-bbda-0bd750558ec3","exec":["let response = pm.response.json();","let relation_id = response.data.alias.id;","pm.collectionVariables.set(\"relation_id\", relation_id);","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": relation_id","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"4fdf9b99-284f-446d-8d73-6582dd41e8de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for relation creation."},"response":[],"_postman_id":"4fdf9b99-284f-446d-8d73-6582dd41e8de"},{"name":"RelationKind by name","event":[{"listen":"test","script":{"id":"03453761-c354-4b7e-8837-8aeaa9f7b9e1","exec":["let response = pm.response.json();","let relation_kind_id = pm.collectionVariables.get(\"relation_kind_id\");","let relation_kind_name = pm.collectionVariables.get(\"relation_kind_name\");","let expected2 = {","    \"data\": {","        \"alias\": {","            \"id\": relation_kind_id,","            \"name\": relation_kind_name","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected2).to.eql(response);","});","","","",""],"type":"text/javascript"}}],"id":"ef60a762-e927-41e9-b4c0-60a7f9703c84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Queries a relation kind by name."},"response":[],"_postman_id":"ef60a762-e927-41e9-b4c0-60a7f9703c84"},{"name":"Replace Relations","id":"35cd46c2-e586-4698-b62b-ff13963df111","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for relation replacement of a given source."},"response":[],"_postman_id":"35cd46c2-e586-4698-b62b-ff13963df111"},{"name":"Type by name","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let type_id = pm.collectionVariables.get(\"type_id\");","let type_name = pm.collectionVariables.get(\"type_name\");","let expected2 = {","    \"data\": {","        \"alias\": {","            \"id\": type_id,","            \"name\": type_name","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected2).to.eql(response);","});","","","",""],"type":"text/javascript"}}],"id":"0192ae48-d33a-4447-be1d-dc93064f5ead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Queries a type by name."},"response":[],"_postman_id":"0192ae48-d33a-4447-be1d-dc93064f5ead"},{"name":"Translations by mnemonic","id":"88c63bf9-2573-45b3-8264-bff920424cbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}"},"response":[],"_postman_id":"88c63bf9-2573-45b3-8264-bff920424cbd"},{"name":"Value by ID","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let value_id = pm.collectionVariables.get(\"value_id\");","let attribute_id = pm.collectionVariables.get(\"attribute_id\");","let entity_id = pm.collectionVariables.get(\"entity_id\");","let shop_id = pm.collectionVariables.get(\"shop_id\");","let value_text = pm.collectionVariables.get(\"value_text\");","let value_number = parseFloat(pm.collectionVariables.get(\"value_number\"));","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": value_id,","            \"text\": value_text,","            \"number\": value_number,","            \"entity\": {","                \"id\": entity_id","            },","            \"attribute\": {","                \"id\": attribute_id","            },","            \"shop\": {","                \"id\": shop_id","            }","        }","    }","};","","console.log(response,expected);","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","","","",""],"type":"text/javascript"}}],"id":"f4e50b8b-4bfd-4093-941f-8531925bc143","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Queries a value by ID."},"response":[],"_postman_id":"f4e50b8b-4bfd-4093-941f-8531925bc143"},{"name":"Shop by reference","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let shop_id = pm.collectionVariables.get(\"shop_id\");","let shop_name = pm.collectionVariables.get(\"shop_name\");","let shop_reference = pm.collectionVariables.get(\"shop_reference\");","let expected = {","        \"data\": {","            \"alias\": {","                \"id\": shop_id,","                \"name\": shop_name,","                \"reference\": shop_reference","            }","        }","    };","console.log(expected);","console.log(response);","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","","","",""],"type":"text/javascript"}}],"id":"54a5a594-e6fe-4af4-a646-5cc78ba3d5ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Queries a shop by reference."},"response":[],"_postman_id":"54a5a594-e6fe-4af4-a646-5cc78ba3d5ae"},{"name":"Entity by reference","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let entity_id = pm.collectionVariables.get(\"entity_id\");","let entity_name = pm.collectionVariables.get(\"entity_name\");","let type_id = pm.collectionVariables.get(\"type_id\");","let shop_id = pm.collectionVariables.get(\"shop_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": entity_id,","            \"parent\": null,","            \"shops\": {","                \"edges\": [","                  {","                    \"node\": {","                      \"id\": shop_id","                    }","                  }","                 ]","            },","            \"type\": {","                \"id\": type_id","            }","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","","","",""],"type":"text/javascript"}}],"id":"8e7ffece-25dd-481d-98ec-34615fe8c17e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Queries an entity by reference."},"response":[],"_postman_id":"8e7ffece-25dd-481d-98ec-34615fe8c17e"},{"name":"Update Type","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let type_id = pm.collectionVariables.get(\"type_id\");","let type_name = pm.collectionVariables.get(\"type_name\") + '_updated';","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": type_id,","            \"name\": type_name","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});"],"type":"text/javascript"}}],"id":"bb196865-bb08-4f57-ace2-9e7d6c8439a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for updating a type."},"response":[],"_postman_id":"bb196865-bb08-4f57-ace2-9e7d6c8439a5"},{"name":"Update Attribute","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let attribute_id = pm.collectionVariables.get(\"attribute_id\");","let attribute_name = pm.collectionVariables.get(\"attribute_name\") + '_updated';","","let expected = {","    \"data\": {","        \"alias\": {","            \"hasNumber\": false,","            \"hasShop\": false,","            \"hasText\": false,","            \"id\": attribute_id,","            \"isMultiple\": false,","            \"isShared\": false,","            \"name\": attribute_name","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","",""],"type":"text/javascript"}}],"id":"2361f35c-ab0b-4bef-8dd2-089727cf77a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for updating an attribute."},"response":[],"_postman_id":"2361f35c-ab0b-4bef-8dd2-089727cf77a8"},{"name":"Update Value","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let value_id = pm.collectionVariables.get(\"value_id\");","let value_text = pm.collectionVariables.get(\"value_text\") + '_up';","let value_number = 1.98;","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": value_id,","            \"text\": value_text,","            \"number\": value_number","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","",""],"type":"text/javascript"}}],"id":"18d7d064-d077-4f21-b6c2-b18ac2535bc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for updating a value."},"response":[],"_postman_id":"18d7d064-d077-4f21-b6c2-b18ac2535bc5"},{"name":"Update TranslationSet","id":"a3045eb9-1c98-4179-95c9-15792e893f32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}"},"response":[],"_postman_id":"a3045eb9-1c98-4179-95c9-15792e893f32"},{"name":"Update Shop","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let shop_id = pm.collectionVariables.get(\"shop_id\");","let shop_name = pm.collectionVariables.get(\"shop_name\") + '_updated';","let shop_reference = \"updated_reference\";","","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": shop_id,","            \"name\": shop_name,","            \"reference\": shop_reference","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","",""],"type":"text/javascript"}}],"id":"adf2cfc6-c183-4ae8-beca-99a125ab6a23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for updating a shop."},"response":[],"_postman_id":"adf2cfc6-c183-4ae8-beca-99a125ab6a23"},{"name":"Delete Type","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let type_id = pm.collectionVariables.get(\"type_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": type_id,","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"b1297cfa-ea51-40bb-bd83-c5674755a074","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for deleting a type."},"response":[],"_postman_id":"b1297cfa-ea51-40bb-bd83-c5674755a074"},{"name":"Delete Attribute","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let attribute_id = pm.collectionVariables.get(\"attribute_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": attribute_id,","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"dd5df7ec-08eb-47bf-80df-c26669368b9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for deleting an attribute."},"response":[],"_postman_id":"dd5df7ec-08eb-47bf-80df-c26669368b9b"},{"name":"Delete Value","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let value_id = pm.collectionVariables.get(\"value_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": value_id,","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"3bbaf92d-ec77-4287-88b0-4b1c1f606a71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for deleting a value."},"response":[],"_postman_id":"3bbaf92d-ec77-4287-88b0-4b1c1f606a71"},{"name":"Delete Shop","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let shop_id = pm.collectionVariables.get(\"shop_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": shop_id,","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"64a9dd1f-52ba-4c2e-ab69-c04340143b4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for deleting a shop."},"response":[],"_postman_id":"64a9dd1f-52ba-4c2e-ab69-c04340143b4a"},{"name":"Delete Entity","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["let response = pm.response.json();","let entity_id = pm.collectionVariables.get(\"entity_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": entity_id,","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"40eae0e0-329e-49b7-94a0-72088564b133","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for deleting an entity."},"response":[],"_postman_id":"40eae0e0-329e-49b7-94a0-72088564b133"},{"name":"Delete Relation Kind","event":[{"listen":"test","script":{"id":"4903fcc5-7c12-43da-9083-39c444de33de","exec":["let response = pm.response.json();","let relation_kind_id = pm.collectionVariables.get(\"relation_kind_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": relation_kind_id,","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"62071f4a-1ce2-4c28-b4b7-326bd9e7d07c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for deleting a relation kind."},"response":[],"_postman_id":"62071f4a-1ce2-4c28-b4b7-326bd9e7d07c"},{"name":"Delete Relation","event":[{"listen":"test","script":{"id":"5faab545-6df0-4c86-aa7a-cc3a89110b15","exec":["let response = pm.response.json();","let relation_id = pm.collectionVariables.get(\"relation_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": relation_id,","        }","    }","};","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});",""],"type":"text/javascript"}}],"id":"37780131-74d1-416e-9a79-51cf469b4318","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Sample mutation for deleting a relation."},"response":[],"_postman_id":"37780131-74d1-416e-9a79-51cf469b4318"}],"id":"bf843b95-ef41-4d04-8bd2-18eb65575d61","description":"This section exposes requests specific to the overall management of the EAV model.","event":[{"listen":"prerequest","script":{"id":"d20c753f-323e-4995-8115-e57a56588070","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"965b6cc6-a4e3-4f3b-a834-6049364ae950","type":"text/javascript","exec":[""]}}],"_postman_id":"bf843b95-ef41-4d04-8bd2-18eb65575d61"},{"name":"Entity","item":[{"name":"Create Category","event":[{"listen":"test","script":{"id":"a15d0ccb-1389-46fe-b68b-6d056b6d7cce","exec":["var jsonData = pm.response.json();","id = jsonData.data.createEntity.id;","","pm.collectionVariables.set(\"new_product_test_id\", id);","","","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});","","pm.test('Schema is valid', function() {","    var schema = {","      \"definitions\": {},","      \"$schema\": \"http://json-schema.org/draft-07/schema#\",","      \"$id\": \"http://example.com/root.json\",","      \"type\": \"object\",","      \"title\": \"The Root Schema\",","      \"required\": [","        \"data\"","      ],","      \"properties\": {","        \"data\": {","          \"$id\": \"#/properties/data\",","          \"type\": \"object\",","          \"title\": \"The Data Schema\",","          \"required\": [","            \"createEntity\"","          ],","          \"properties\": {","            \"createEntity\": {","              \"$id\": \"#/properties/data/properties/createEntity\",","              \"type\": \"object\",","              \"title\": \"The createEntity Schema\",","              \"required\": [","                \"id\"","              ],","              \"properties\": {","                \"id\": {","                  \"$id\": \"#/properties/data/properties/createEntity/properties/id\",","                  \"type\": \"string\",","                  \"title\": \"The Id Schema\",","                  \"default\": \"\",","                  \"examples\": [","                    \"RG9jdW1lbnQ6SC16ZjVwQ18tVWZlUjRhMl9Wc0J6\"","                  ],","                  \"pattern\": \"^(.*)$\"","                }","              }","            }","          }","        }","      }","    };","    var jsonData = pm.response.json();","    pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});"],"type":"text/javascript"}}],"id":"ad8418dd-d417-40c4-8c9a-175cfcccfa1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Create an entity of the **category** type."},"response":[],"_postman_id":"ad8418dd-d417-40c4-8c9a-175cfcccfa1e"},{"name":"Create Product","event":[{"listen":"test","script":{"id":"a15d0ccb-1389-46fe-b68b-6d056b6d7cce","exec":["var jsonData = pm.response.json();","id = jsonData.data.createEntity.id;","","pm.collectionVariables.set(\"new_product_test_id\", id);","","","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});","","pm.test('Schema is valid', function() {","    var schema = {","      \"definitions\": {},","      \"$schema\": \"http://json-schema.org/draft-07/schema#\",","      \"$id\": \"http://example.com/root.json\",","      \"type\": \"object\",","      \"title\": \"The Root Schema\",","      \"required\": [","        \"data\"","      ],","      \"properties\": {","        \"data\": {","          \"$id\": \"#/properties/data\",","          \"type\": \"object\",","          \"title\": \"The Data Schema\",","          \"required\": [","            \"createEntity\"","          ],","          \"properties\": {","            \"createEntity\": {","              \"$id\": \"#/properties/data/properties/createEntity\",","              \"type\": \"object\",","              \"title\": \"The createEntity Schema\",","              \"required\": [","                \"id\"","              ],","              \"properties\": {","                \"id\": {","                  \"$id\": \"#/properties/data/properties/createEntity/properties/id\",","                  \"type\": \"string\",","                  \"title\": \"The Id Schema\",","                  \"default\": \"\",","                  \"examples\": [","                    \"RG9jdW1lbnQ6SC16ZjVwQ18tVWZlUjRhMl9Wc0J6\"","                  ],","                  \"pattern\": \"^(.*)$\"","                }","              }","            }","          }","        }","      }","    };","    var jsonData = pm.response.json();","    pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});"],"type":"text/javascript"}}],"id":"c1bae553-5cb8-4bcd-bbe3-ca54615691e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Create an entity of the **product** type."},"response":[],"_postman_id":"c1bae553-5cb8-4bcd-bbe3-ca54615691e0"},{"name":"Create SKU Related To Product","event":[{"listen":"test","script":{"id":"a15d0ccb-1389-46fe-b68b-6d056b6d7cce","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});","","pm.test('Schema is valid', function() {","    var schema = {","      \"definitions\": {},","      \"$schema\": \"http://json-schema.org/draft-07/schema#\",","      \"$id\": \"http://example.com/root.json\",","      \"type\": \"object\",","      \"title\": \"The Root Schema\",","      \"required\": [","        \"data\"","      ],","      \"properties\": {","        \"data\": {","          \"$id\": \"#/properties/data\",","          \"type\": \"object\",","          \"title\": \"The Data Schema\",","          \"required\": [","            \"createEntity\"","          ],","          \"properties\": {","            \"createEntity\": {","              \"$id\": \"#/properties/data/properties/createEntity\",","              \"type\": \"object\",","              \"title\": \"The createEntity Schema\",","              \"required\": [","                \"id\"","              ],","              \"properties\": {","                \"id\": {","                  \"$id\": \"#/properties/data/properties/createEntity/properties/id\",","                  \"type\": \"string\",","                  \"title\": \"The Id Schema\",","                  \"default\": \"\",","                  \"examples\": [","                    \"RG9jdW1lbnQ6SC16ZjVwQ18tVWZlUjRhMl9Wc0J6\"","                  ],","                  \"pattern\": \"^(.*)$\"","                }","              }","            }","          }","        }","      }","    };","    var jsonData = pm.response.json();","    pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});"],"type":"text/javascript"}}],"id":"19f556ca-c763-4303-a990-f5ba50c2280f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Create an entity of the **sku** type with a **product** as its parent."},"response":[],"_postman_id":"19f556ca-c763-4303-a990-f5ba50c2280f"},{"name":"Replace Product","event":[{"listen":"test","script":{"id":"a15d0ccb-1389-46fe-b68b-6d056b6d7cce","exec":["var jsonData = pm.response.json();","id = jsonData.data.replaceEntity.id;","","pm.collectionVariables.set(\"new_product_test_id\", id);","","","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});","","pm.test('Schema is valid', function() {","    var schema = {","      \"definitions\": {},","      \"$schema\": \"http://json-schema.org/draft-07/schema#\",","      \"$id\": \"http://example.com/root.json\",","      \"type\": \"object\",","      \"title\": \"The Root Schema\",","      \"required\": [","        \"data\"","      ],","      \"properties\": {","        \"data\": {","          \"$id\": \"#/properties/data\",","          \"type\": \"object\",","          \"title\": \"The Data Schema\",","          \"required\": [","            \"replaceEntity\"","          ],","          \"properties\": {","            \"replaceEntity\": {","              \"$id\": \"#/properties/data/properties/replaceEntity\",","              \"type\": \"object\",","              \"title\": \"The replaceEntity Schema\",","              \"required\": [","                \"id\"","              ],","              \"properties\": {","                \"id\": {","                  \"$id\": \"#/properties/data/properties/replaceEntity/properties/id\",","                  \"type\": \"string\",","                  \"title\": \"The Id Schema\",","                  \"default\": \"\",","                  \"examples\": [","                    \"RG9jdW1lbnQ6SC16ZjVwQ18tVWZlUjRhMl9Wc0J6\"","                  ],","                  \"pattern\": \"^(.*)$\"","                }","              }","            }","          }","        }","      }","    };","    var jsonData = pm.response.json();","    pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});"],"type":"text/javascript"}}],"id":"6a47301c-df03-4a2f-9d87-3e7fed6c8df1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Replace a given **product** entity's fields."},"response":[],"_postman_id":"6a47301c-df03-4a2f-9d87-3e7fed6c8df1"},{"name":"Replace Relations","event":[{"listen":"test","script":{"id":"a15d0ccb-1389-46fe-b68b-6d056b6d7cce","exec":["var jsonData = pm.response.json();","id = jsonData.data.replaceEntity.id;","","pm.collectionVariables.set(\"new_product_test_id\", id);","","","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});","","pm.test('Schema is valid', function() {","    var schema = {","      \"definitions\": {},","      \"$schema\": \"http://json-schema.org/draft-07/schema#\",","      \"$id\": \"http://example.com/root.json\",","      \"type\": \"object\",","      \"title\": \"The Root Schema\",","      \"required\": [","        \"data\"","      ],","      \"properties\": {","        \"data\": {","          \"$id\": \"#/properties/data\",","          \"type\": \"object\",","          \"title\": \"The Data Schema\",","          \"required\": [","            \"replaceEntity\"","          ],","          \"properties\": {","            \"replaceEntity\": {","              \"$id\": \"#/properties/data/properties/replaceEntity\",","              \"type\": \"object\",","              \"title\": \"The replaceEntity Schema\",","              \"required\": [","                \"id\"","              ],","              \"properties\": {","                \"id\": {","                  \"$id\": \"#/properties/data/properties/replaceEntity/properties/id\",","                  \"type\": \"string\",","                  \"title\": \"The Id Schema\",","                  \"default\": \"\",","                  \"examples\": [","                    \"RG9jdW1lbnQ6SC16ZjVwQ18tVWZlUjRhMl9Wc0J6\"","                  ],","                  \"pattern\": \"^(.*)$\"","                }","              }","            }","          }","        }","      }","    };","    var jsonData = pm.response.json();","    pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});"],"type":"text/javascript"}}],"id":"bcb5e5e3-eeb9-4bf4-94cc-dfdccd7fce69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Replace a **product** entity's relations."},"response":[],"_postman_id":"bcb5e5e3-eeb9-4bf4-94cc-dfdccd7fce69"},{"name":"Product by ID","event":[{"listen":"test","script":{"id":"93204261-dccc-4669-914b-ef97592cbf18","exec":["pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});","","pm.test('Base Schema is valid', function() {","    var schema =  {   \"definitions\": {},   \"$schema\": \"http://json-schema.org/draft-07/schema#\",   \"$id\": \"http://example.com/root.json\",   \"type\": \"object\",   \"title\": \"The Root Schema\",   \"required\": [     \"data\"   ],","       \"properties\": {","         \"data\": {","           \"$id\": \"#/properties/data\",","           \"type\": \"object\",","           \"title\": \"The Data Schema\",","           \"required\": [","             \"documents\"","           ],","           \"properties\": {","             \"documents\": {","               \"$id\": \"#/properties/data/properties/documents\",","               \"type\": \"object\",","               \"title\": \"The Documents Schema\",","               \"required\": [","                 \"edges\"","               ],","               \"properties\": {","                 \"edges\": {","                   \"$id\": \"#/properties/data/properties/documents/properties/edges\",","                   \"type\": \"array\",","                   \"title\": \"The Edges Schema\",","                   \"items\": {","                     \"$id\": \"#/properties/data/properties/documents/properties/edges/items\",","                     \"type\": \"object\",","                     \"title\": \"The Items Schema\",","                     \"required\": [","                       \"node\"","                     ],","                     \"properties\": {","                       \"node\": {","                         \"$id\": \"#/properties/data/properties/documents/properties/edges/items/properties/node\",","                         \"type\": \"object\",","                         \"title\": \"The Node Schema\",","                         \"required\": [","                           \"content\",","                           \"id\",","                           \"type\",","                           \"parent\",","                           \"children\"","                         ],","                         \"properties\": {","                           \"id\": {","                             \"$id\": \"#/properties/data/properties/documents/properties/edges/items/properties/node/properties/id\",","                             \"type\": \"string\",","                             \"title\": \"The Id Schema\",","                             \"default\": \"\",","                             \"examples\": [","                               \"RG9jdW1lbnQ6LTRQVVBwZm04dFY3aXVxU2tJWFJz\"","                             ],","                             \"pattern\": \"^(.*)$\"","                           },","                           \"type\": {","                             \"$id\": \"#/properties/data/properties/documents/properties/edges/items/properties/node/properties/type\",","                             \"type\": \"string\",","                             \"title\": \"The Type Schema\",","                             \"default\": \"\",","                             \"examples\": [","                               \"product\"","                             ],","                             \"pattern\": \"^(.*)$\"","                           },","                            \"content\": {","                             \"$id\": \"#/properties/data/properties/documents/properties/edges/items/properties/node/properties/content\",","                             \"type\": \"object\",","                             \"title\": \"The Content Schema\"","                           },","                           \"parent\": {","                             \"$id\": \"#/properties/data/properties/documents/properties/edges/items/properties/node/properties/content\",","                             \"oneOf\": [","                                {\"type\": \"null\"},","                                {\"type\": \"object\"}","                             ],","                             \"title\": \"The Content Schema\"","                           },","                           \"children\": {","                             \"$id\": \"#/properties/data/properties/documents/properties/edges/items/properties/node/properties/content\",","                             \"type\": \"array\",","                             \"title\": \"The Content Schema\"","                           }","                         }","                       }","                     }","                   }","                 }","               }","             }","           }","         }","       }","     };","     ","    var jsonData = pm.response.json();","    pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","pm.test('Content struct is valid', function() {","    var schema = {","        \"definitions\": {","            \"defaultTranslation\": {","                \"$id\": \"#/properties/name/properties/translations\",","                \"type\": \"object\",","                \"title\": \"The Translations Schema\",","                \"properties\": {","                  \"ca\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/ca\",","                    \"type\": \"string\",","                    \"title\": \"The Ca Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Anell Smile de Plata Vermeil\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"de\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/de\",","                    \"type\": \"string\",","                    \"title\": \"The De Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Smile\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"el\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/el\",","                    \"type\": \"string\",","                    \"title\": \"The El Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Vermeil Silver Smile Ring with Enamel\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"en\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/en\",","                    \"type\": \"string\",","                    \"title\": \"The En Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Vermeil Silver Smile Ring with Enamel\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"es\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/es\",","                    \"type\": \"string\",","                    \"title\": \"The Es Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Anillo Smile de Plata Vermeil\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"es_CL\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/es_CL\",","                    \"type\": \"string\",","                    \"title\": \"The Es_cl Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Anillo Smile de Plata Vermeil\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"es_CO\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/es_CO\",","                    \"type\": \"string\",","                    \"title\": \"The Es_co Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Anillo Smile de Plata Vermeil\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"es_MX\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/es_MX\",","                    \"type\": \"string\",","                    \"title\": \"The Es_mx Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Anillo Smile de Plata Vermeil\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"fr\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/fr\",","                    \"type\": \"string\",","                    \"title\": \"The Fr Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Smile\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  },","                  \"pt\": {","                    \"$id\": \"#/properties/name/properties/translations/properties/pt\",","                    \"type\": \"string\",","                    \"title\": \"The Pt Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Smile\"","                    ],","                    \"pattern\": \"^(.{1,255})$\"","                  }","                }","              }","        },","        \"$schema\": \"http://json-schema.org/draft-07/schema#\",","        \"$id\": \"http://example.com/root.json\",","        \"type\": \"object\",","        \"title\": \"Product Schema\",","        \"required\": [","          \"code\",","          \"name\",","          \"description\",","          \"technicalDescription\",","          \"metaKeyword\",","          \"metaTitle\",","          \"metaDescription\",","          \"collection\",","          \"categories\",","          \"genders\",","        ],","        \"properties\": {","          \"code\": {","            \"$id\": \"#/properties/code\",","            \"type\": \"object\",","            \"title\": \"Product code\",","            \"required\": [","              \"text\"","            ],","            \"properties\": {","              \"text\": {","                \"$id\": \"#/properties/code/properties/text\",","                \"type\": \"string\",","                \"title\": \"The Text Schema\",","                \"default\": \"\",","                \"examples\": [","                  \"413335590\"","                ],","                \"pattern\": \"^(\\\\d+)$\"","              }","            }","          },","          \"name\": {","            \"$id\": \"#/properties/name\",","            \"type\": \"object\",","            \"title\": \"Product name\",","            \"required\": [","              \"text\",","              \"translations\"","            ],","            \"properties\": {","              \"text\": {","                \"$id\": \"#/properties/name/properties/text\",","                \"type\": \"string\",","                \"title\": \"The Text Schema\",","                \"default\": \"\",","                \"examples\": [","                  \"Anillo Smile de Plata Vermeil\"","                ],","                \"pattern\": \"^(.{1,255})$\"","              },","              \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","            }","          },","          \"description\": {","            \"$id\": \"#/properties/description\",","            \"type\": \"object\",","            \"title\": \"Product description\",","            \"required\": [","              \"text\",","              \"translations\"","            ],","            \"properties\": {","              \"text\": {","                \"$id\": \"#/properties/description/properties/text\",","                \"type\": \"string\",","                \"title\": \"The Text Schema\",","                \"default\": \"\",","                \"examples\": [","                  \"¡Nena, tú vales mucho! Así que como decía Bob Marley: *¡Don't Worry, be happy!* Acaba con tu mal día, regálate esta anillo en vermeil en clave *blue* y... ¡Sé feliz!\"","                ],","                \"pattern\": \"^(.{1,255})$\"","              },","              \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","            }","          },","          \"technicalDescription\": {","            \"$id\": \"#/properties/technicalDescription\",","            \"type\": \"object\",","            \"title\": \"Product technical description\",","            \"required\": [","              \"text\",","              \"translations\"","            ],","            \"properties\": {","              \"text\": {","                \"$id\": \"#/properties/technicalDescription/properties/text\",","                \"type\": \"string\",","                \"title\": \"The Text Schema\",","                \"default\": \"\",","                \"examples\": [","                  \"Anillo TOUS Smile de plata vermeil y esmalte. Vermeil: Plata de primera ley cubierta por un baño de oro de 18kt.\"","                ],","                \"pattern\": \"^(.{1,255})$\"","              },","              \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","            }","          },","          \"notifyMe\": {","            \"$id\": \"#/properties/notifyMe\",","            \"type\": \"object\",","            \"title\": \"Defines if product is noitfyMe\",","            \"required\": [","              \"number\"","            ],","            \"properties\": {","              \"number\": {","                \"$id\": \"#/properties/notifyMe/properties/number\",","                \"type\": \"integer\",","                \"enum\": [ 0, 1 ],","                \"title\": \"The Number Schema\",","                \"default\": 0,","                \"examples\": [","                  1","                ]","              }","            }","          },","          \"slugs\": {","            \"$id\": \"#/properties/slugs\",","            \"type\": \"array\",","            \"title\": \"The Slugs Schema\",","            \"items\": {","              \"$id\": \"#/properties/slugs/items\",","              \"type\": \"object\",","              \"title\": \"Product url slug\",","              \"required\": [","                \"number\",","                \"text\",","                \"translations\"","              ],","              \"properties\": {","                \"number\": {","                  \"$id\": \"#/properties/slugs/items/properties/number\",","                  \"type\": \"integer\",","                  \"enum\": [ 200, 301 ],","                  \"title\": \"Define the type of redirection\",","                  \"default\": 0,","                  \"examples\": [","                    200,","                    301","                  ]","                },","                \"text\": {","                  \"$id\": \"#/properties/slugs/items/properties/text\",","                  \"type\": \"string\",","                  \"title\": \"The Text Schema\",","                  \"default\": \"\",","                  \"examples\": [","                    \"anillo-minifiore-de-oro-vermeil-y-cristal-de-murano\"","                  ],","                  \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                },","                \"translations\": {","                  \"$id\": \"#/properties/slugs/items/properties/translations\",","                  \"type\": \"object\",","                  \"title\": \"The Translations Schema\",","                  \"required\": [","                    \"es\"","                  ],","                  \"properties\": {","                    \"ca\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/ca\",","                      \"type\": \"string\",","                      \"title\": \"The Ca Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"anellminifioredorvermeili-cristall-demurano\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"de\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/de\",","                      \"type\": \"string\",","                      \"title\": \"The De Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"Gold-Vermeil-und-Murano-Kristall-Miniring\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"el\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/el\",","                      \"type\": \"string\",","                      \"title\": \"The El Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"κίτρινο-vermeil-και-murano-crystal-minifiore δακτύλιο\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"en\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/en\",","                      \"type\": \"string\",","                      \"title\": \"The En Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"gold-vermeil-and-murano-crystal-minifiore-ring\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"es\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/es\",","                      \"type\": \"string\",","                      \"title\": \"The Es Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"anillo-minifiore-de-oro-vermeil-y-cristal-de-murano\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"es_CL\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/es_CL\",","                      \"type\": \"string\",","                      \"title\": \"The Es_cl Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"anillo-minifiore-de-oro-vermeil-y-cristal-de-murano\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"es_CO\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/es_CO\",","                      \"type\": \"string\",","                      \"title\": \"The Es_co Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"anillo-minifiore-de-oro-vermeil-y-cristal-de-murano\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"es_MX\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/es_MX\",","                      \"type\": \"string\",","                      \"title\": \"The Es_mx Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"anillo-minifiore-de-oro-vermeil-y-cristal-de-murano\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"fr\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/fr\",","                      \"type\": \"string\",","                      \"title\": \"The Fr Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"bague-minifiore-en-or-vermeil-et-murano\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    },","                    \"pt\": {","                      \"$id\": \"#/properties/slugs/items/properties/translations/properties/pt\",","                      \"type\": \"string\",","                      \"title\": \"The Pt Schema\",","                      \"default\": \"\",","                      \"examples\": [","                        \"anel de ouro-vermeil-e-murano-cristal-minifiore\"","                      ],","                      \"pattern\": \"^([^-][a-z-]{1,100}[^-])$\"","                    }","                  }","                }","              }","            }","          },","          \"metaKeyword\": {","            \"$id\": \"#/properties/metaKeyword\",","            \"type\": \"object\",","            \"title\": \"The Metakeyword Schema\",","            \"required\": [","              \"text\",","              \"translations\"","            ],","            \"properties\": {","              \"text\": {","                \"$id\": \"#/properties/metaKeyword/properties/text\",","                \"type\": \"string\",","                \"title\": \"The Text Schema\",","                \"default\": \"\",","              },","              \"translations\": {","                \"$id\": \"#/properties/metaKeyword/properties/translations\",","                \"type\": \"object\",","                \"title\": \"The Translations Schema\",","                \"properties\": {","                  \"ca\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/ca\",","                    \"type\": \"string\",","                    \"title\": \"The Ca Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Anell Smile de Plata Vermeil - Tous\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"de\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/de\",","                    \"type\": \"string\",","                    \"title\": \"The De Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Smile\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"el\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/el\",","                    \"type\": \"string\",","                    \"title\": \"The El Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Smile\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"en\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/en\",","                    \"type\": \"string\",","                    \"title\": \"The En Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Smile\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"es\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/es\",","                    \"type\": \"string\",","                    \"title\": \"The Es Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Anillo Smile de Plata Vermeil - Tous\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"es_CL\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/es_CL\",","                    \"type\": \"null\",","                    \"title\": \"The Es_cl Schema\",","                    \"default\": \"\",","                    \"examples\": [","                        \"Anillo Smile de Plata Vermeil - Tous\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"es_CO\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/es_CO\",","                    \"type\": \"null\",","                    \"title\": \"The Es_co Schema\",","                    \"default\": \"\",","                    \"examples\": [","                        \"Anillo Smile de Plata Vermeil - Tous\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"es_MX\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/es_MX\",","                    \"type\": \"null\",","                    \"title\": \"The Es_mx Schema\",","                    \"default\": \"\",","                    \"examples\": [","                        \"Anillo Smile de Plata Vermeil - Tous\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"fr\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/fr\",","                    \"type\": \"string\",","                    \"title\": \"The Fr Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Smile\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  },","                  \"pt\": {","                    \"$id\": \"#/properties/metaKeyword/properties/translations/properties/pt\",","                    \"type\": \"string\",","                    \"title\": \"The Pt Schema\",","                    \"default\": \"\",","                    \"examples\": [","                      \"Smile\"","                    ],","                    \"pattern\": \"^([^,][A-Za-z,]{1,255}[^,])$\"","                  }","                }","              }","            }","          },","          \"metaTitle\": {","            \"$id\": \"#/properties/metaTitle\",","            \"type\": \"object\",","            \"title\": \"The Metatitle Schema\",","            \"required\": [","              \"text\",","              \"translations\"","            ],","            \"properties\": {","              \"text\": {","                \"$id\": \"#/properties/metaTitle/properties/text\",","                \"type\": \"string\",","                \"title\": \"The Text Schema\",","                \"default\": \"\",","                \"examples\": [","                  \"Anillo Smile de Plata Vermeil - Tous\"","                ],","                \"pattern\": \"^(.{1,255})$\"","              },","              \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","            }","          },","          \"metaDescription\": {","            \"$id\": \"#/properties/metaDescription\",","            \"type\": \"object\",","            \"title\": \"The Metadescription Schema\",","            \"required\": [","              \"text\",","              \"translations\"","            ],","            \"properties\": {","              \"text\": {","                \"$id\": \"#/properties/metaDescription/properties/text\",","                \"type\": \"string\",","                \"title\": \"The Text Schema\",","                \"default\": \"\",","                \"examples\": [","                  \"En la tienda online de Tous puedes comprar el anillo Smile de Vermeil. Descubre lo fácil que es comprar anillos en Tous.\"","                ],","                \"pattern\": \"^(.{1,255})$\"","              },","              \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","            }","          },","          \"collection\": {","            \"$id\": \"#/properties/collection\",","            \"type\": \"object\",","            \"title\": \"Product Collection\",","            \"required\": [","              \"text\",","              \"translations\"","            ],","            \"properties\": {","              \"text\": {","                \"$id\": \"#/properties/collection/properties/text\",","                \"type\": \"string\",","                \"title\": \"The Text Schema\",","                \"default\": \"\",","                \"examples\": [","                  \"COL_463\"","                ],","                \"pattern\": \"^(COL_\\\\d+)$\"","              },","              \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","            }","          },","          \"categories\": {","            \"$id\": \"#/properties/categories\",","            \"type\": \"array\",","            \"title\": \"Product Categories\",","            \"items\": {","              \"$id\": \"#/properties/categories/items\",","              \"type\": \"object\",","              \"title\": \"The Items Schema\",","              \"required\": [","                \"number\",","                \"text\",","                \"translations\"","              ],","              \"properties\": {","                \"number\": {","                  \"$id\": \"#/properties/categories/items/properties/number\",","                  \"type\": \"string\",","                  \"title\": \"The position of the product in the category\",","                  \"default\": 0,","                  \"examples\": [","                    \"105400.00\"","                  ]","                },","                \"text\": {","                  \"$id\": \"#/properties/categories/items/properties/text\",","                  \"type\": \"string\",","                  \"title\": \"Category key\",","                  \"default\": \"\",","                  \"examples\": [","                    \"rings\"","                  ],","                  \"pattern\": \"^(.{1,50})$\"","                },","                \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","              }","            }","          },","          \"genders\": {","            \"$id\": \"#/properties/genders\",","            \"type\": \"array\",","            \"title\": \"Product genders\",","            \"items\": {","              \"$id\": \"#/properties/genders/items\",","              \"type\": \"object\",","              \"title\": \"The Items Schema\",","              \"required\": [","                \"text\",","                \"translations\"","              ],","              \"properties\": {","                \"text\": {","                  \"$id\": \"#/properties/genders/items/properties/text\",","                  \"type\": \"string\",","                  \"title\": \"The Text Schema\",","                  \"default\": \"\",","                  \"examples\": [","                    \"GEN_1\"","                  ],","                  \"pattern\": \"^(GEN_\\\\d+)$\"","                },","                \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","              }","            }","          },","          \"materials\": {","            \"$id\": \"#/properties/materials\",","            \"type\": \"array\",","            \"title\": \"The Materials Schema\",","            \"items\": {","              \"$id\": \"#/properties/materials/items\",","              \"type\": \"object\",","              \"title\": \"The Items Schema\",","              \"required\": [","                \"text\",","                \"translations\"","              ],","              \"properties\": {","                \"text\": {","                  \"$id\": \"#/properties/materials/items/properties/text\",","                  \"type\": \"string\",","                  \"title\": \"Product Materials Key\",","                  \"default\": \"\",","                  \"examples\": [","                    \"MAT_5\"","                  ],","                  \"pattern\": \"^(MAT_\\\\d+)$\"","                },","                \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","              }","            }","          },","          \"bullets\": {","            \"$id\": \"#/properties/bullets\",","            \"type\": \"array\",","            \"title\": \"Product bullets\",","            \"items\": {","              \"$id\": \"#/properties/bullets/items\",","              \"type\": \"object\",","              \"title\": \"The Items Schema\",","              \"required\": [","                \"text\",","                \"translations\"","              ],","              \"properties\": {","                \"text\": {","                  \"$id\": \"#/properties/bullets/items/properties/text\",","                  \"type\": \"string\",","                  \"title\": \"Bullet key\",","                  \"default\": \"\",","                  \"examples\": [","                    \"closure\"","                  ],","                  \"pattern\": \"^(\\\\w+)$\"","                },","                \"translations\" : { \"$ref\": \"#/definitions/defaultTranslation\" }","              }","            }","          }","        }","      }","    ;","","    var jsonData = pm.response.json();","    var content = jsonData.data.documents.edges[0].node.content;","    ","    console.log(content)","    ","    pm.expect(tv4.validate(content, schema)).to.be.true;","});"],"type":"text/javascript"}}],"id":"f3951cab-e633-4ca1-adfd-23cce8af97d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Queries a **product** by ID."},"response":[],"_postman_id":"f3951cab-e633-4ca1-adfd-23cce8af97d3"},{"name":"Delete Product","event":[{"listen":"test","script":{"id":"a15d0ccb-1389-46fe-b68b-6d056b6d7cce","exec":["let response = pm.response.json();","let new_product_test_id = pm.collectionVariables.get(\"new_product_test_id\");","let expected = {","    \"data\": {","        \"alias\": {","            \"id\": new_product_test_id,","        }","    }","};","","","pm.test(\"Succesful response query\", function () {","    pm.expect(expected).to.eql(response);","});","","","pm.test(\"Successful POST request\", function () {","    pm.expect(pm.response.code).to.be.oneOf([200]);","});","",""],"type":"text/javascript"}}],"id":"513d9c70-2627-4ad8-ba20-9f2edc5a9327","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{catalogue}}","description":"Delete a **product** by entity ID."},"response":[],"_postman_id":"513d9c70-2627-4ad8-ba20-9f2edc5a9327"}],"id":"124fddaa-2f8f-40ff-821a-dfadd74de7d7","description":"This section exposes requests specific to the management of entities.","event":[{"listen":"prerequest","script":{"id":"1e30c25f-23bd-4153-aabb-ae5882142b26","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b031f3c2-e905-46f7-9619-4b8d50561646","type":"text/javascript","exec":[""]}}],"_postman_id":"124fddaa-2f8f-40ff-821a-dfadd74de7d7"}],"id":"4b6f596c-a849-4400-9bb2-49f135572ba8","description":"The **Catalogue** service is responsible for serving product related information.\n\nThis information is stored as an\n[EAV](https://en.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value_model)\nmodel and then exported accordingly over \\\nto Couchbase for direct consumption as described in the **Public documentation**.\n\nThe following sections describe the model's most important structural components.\n\n## Types\n\nThe starting point to all the different possible types for an entity. \\\nThe following list exposes a complete list of fields types can have.\n\n| Name   | Type      | Description      |\n| ------ | --------- | ---------------- |\n| `name` | `String!` | name of the type |\n\n## Attributes\n\nThe possible properties an entity can have for a given type. \\\nThe following list exposes a complete list of fields.\n\n| Name         | Type      | Description                                 |\n| ------------ | --------- | ------------------------------------------- |\n| `typeId`     | `ID!`     | the type the attribute belongs to           |\n| `name`       | `String!` | name of the attribute                       |\n| `hasShop`    | `Boolean` | whether values can be specific to a shop    |\n| `hasText`    | `Boolean` | whether values must have a text             |\n| `hasNumber`  | `Boolean` | whether values must have a number           |\n| `isMultiple` | `Boolean` | whether values should be exported as a list |\n| `isShared`   | `Boolean` | whether values' text field is shared        |\n\n## Values\n\nThe properties for a given entity of a specific type. \\\nThe following list exposes a complete list of fields.\n\n| Name          | Type       | Description                                 |\n| ------------- | ---------- | ------------------------------------------- |\n| `entityId`    | `ID!`      | the entity the value belongs to             |\n| `attributeId` | `ID!`      | the attribute the value belongs to          |\n| `shopId`      | `ID`       | the shop the value applies to               |\n| `text`        | `String`   | used depending on the attribute's hasText   |\n| `number`      | `Float`    | used depending on the attribute's hasNumber |\n| `validFrom`   | `DateTime` | defines the start date of validity          |\n| `validTo`     | `DateTime` | defines the end date of validity            |\n\n## Cultures\n\nThe languages available for translation. \\\nThe following list exposes a complete list of fields.\n\n| Name   | Type      | Description              |\n| ------ | --------- | ------------------------ |\n| `code` | `String!` | ISO code of the language |\n\n## Translation Sets\n\nThe set of translations for a specific mnemonic. \\\nThe following list exposes a complete list of fields.\n\n| Name       | Type      | Description                                    |\n| ---------- | --------- | ---------------------------------------------- |\n| `mnemonic` | `String!` | unique identifier                              |\n| `valueId`  | `ID`      | present incase the set is exclusive to a value |\n\n## Translations\n\nThe actual translations for a specific translation set. \\\nThe following list exposes a complete list of fields.\n\n| Name        | Type      | Description                       |\n| ----------- | --------- | --------------------------------- |\n| `cultureId` | `ID!`     | the culture the entity belongs to |\n| `text`      | `String!` | the actual translation            |\n\n## Shops\n\nThe different e-commerce identities served by the platform. \\\nThe following list exposes a complete list of fields.\n\n| Name        | Type      | Description                             |\n| ----------- | --------- | --------------------------------------- |\n| `name`      | `String!` | name of the shop                        |\n| `reference` | `String!` | unique identifier to the Tous ecosystem |\n\n## Entities\n\nThe actual materialization of specific type instances. \\\nThe following list exposes a complete list of fields.\n\n| Name        | Type      | Description                             |\n| ----------- | --------- | --------------------------------------- |\n| `typeId`    | `ID!`     | the type the entity belongs to          |\n| `parentId`  | `ID!`     | the parent entity the entity belongs to |\n| `reference` | `String!` | unique identifier to the Tous ecosystem |\n\n## Relation Kinds\n\nThe possible special relationships between entities.\nThe following list exposes a complete list of fields.\n\n| Name   | Type      | Description          |\n| ------ | --------- | -------------------- |\n| `name` | `String!` | the name of the kind |\n\n## Relations\n\nFor special relationships between different entities. \\ \nThe following list exposes a complete list of fields.\n\n| Name       | Type  | Description              |\n| ---------- | ----- | ------------------------ |\n| `kindId`   | `ID!` | the kind of the relation |\n| `sourceId` | `ID!`  | the source entity       |\n| `targetId` | `ID!`  | the target entity       |\n| `index`    | `Int!` | sorting index           |","event":[{"listen":"prerequest","script":{"id":"f6f1d356-1e46-4fac-8742-0d302ccf62c3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e11d55a4-300b-4793-8bf0-98c81fdc57b5","type":"text/javascript","exec":[""]}}],"_postman_id":"4b6f596c-a849-4400-9bb2-49f135572ba8"},{"name":"Inventory","item":[{"name":"Register Regularization Full","id":"2e6d8484-676b-4593-91ac-008b35e99b2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{inventory}}","description":"Register a full stock regularization for the given warehouse and zone inside that warehouse. \"Full\" means that any remaining SKUs in the database for that {warehouse, zone} combination that are not present in the payload will be set to 0."},"response":[],"_postman_id":"2e6d8484-676b-4593-91ac-008b35e99b2a"},{"name":"Register Regularization in other warehouse and zone","id":"06eb8acf-0c1e-4471-978e-c288c3bdd3cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{inventory}}"},"response":[],"_postman_id":"06eb8acf-0c1e-4471-978e-c288c3bdd3cc"},{"name":"Register Regularization Delta","id":"ec173d8e-4979-4104-bf6f-ff42ee495c39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{inventory}}"},"response":[],"_postman_id":"ec173d8e-4979-4104-bf6f-ff42ee495c39"},{"name":"Regularize Massive","id":"9f6f9460-f4e2-41a3-aab3-bc17e4e2a88b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{inventory}}"},"response":[],"_postman_id":"9f6f9460-f4e2-41a3-aab3-bc17e4e2a88b"},{"name":"Retrieve Regularization feedback","id":"b62a93d7-1615-46d8-9c39-490327328231","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"graphql"},"url":"{{inventory}}","description":"Retrieve information on the regularization returned Registry ID."},"response":[],"_postman_id":"b62a93d7-1615-46d8-9c39-490327328231"}],"id":"374c748e-1abc-4466-8a79-7ad0ba7bd7ed","description":"The **Inventory** service is responsible for serving stock information.","_postman_id":"374c748e-1abc-4466-8a79-7ad0ba7bd7ed"}],"auth":{"type":"bearer","bearer":{"token":"{{employee_token}}"}},"event":[{"listen":"prerequest","script":{"id":"9b26129f-124e-4ea8-9bf6-e05e6428de9e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fbf2e2d8-917d-4606-b60f-64f97e87c2b1","type":"text/javascript","exec":[""]}}],"variable":[{"key":"type_product_id","value":"VHlwZTpwMWZEWndYcEE1MDZRT3d5amQtWFI="},{"key":"type_sku_id","value":"VHlwZTpEbXUwaVBQNm1LdFFldnB5bUtGeTk="},{"key":"new_product_test_id","value":"RW50aXR5Onl1SlR4V3lucXRpVzdaU2pISVJ1MA=="},{"key":"type_id","value":"VHlwZTpGcWlsRVlWQWgwRUFmNENPVDh0c0Y="},{"key":"attribute_id","value":"QXR0cmlidXRlOnR4WlJ4NHhZclF2RjREelJYeWpWSw=="},{"key":"value_number","value":"{{value_number}}"},{"key":"value_text","value":"{{value_text}}"},{"key":"shop_id","value":"U2hvcDphcWgzYWZsSHhzTWFkdTlYVG9JY2w="},{"key":"shop_name","value":"{{"},{"key":"shop_reference","value":"{{shop_reference}}"},{"key":"entity_id","value":"RW50aXR5OmI3QVp5SXV1UE9PSnZEMU1jOUdIRA=="},{"key":"entity_reference","value":"123456789"}]}