{"info":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","description":"<html><head></head><body><p>\n    Welcome to SalenGo’s Web API v2! This API is RESTful, fully featured, easy to integrate with.\n</p>\n\n<div>\n<h1 id=\"introduction\">Introduction</h1>\n\n<p>The SalenGo API is organized around <a href=\"http://en.wikipedia.org/wiki/Representational_State_Transfer\">REST</a>. Our API has predictable resource-oriented URLs, accepts <a href=\"https://en.wikipedia.org/wiki/POST_(HTTP)#Use_for_submitting_web_forms\">form-encoded</a> request bodies, returns <a href=\"http://www.json.org/\">JSON-encoded</a> responses, and uses standard HTTP response codes, authentication, and verbs.</p>\n<p>The SalenGo API differs for every account as we release new <a href=\"#versioning\">versions</a> and tailor functionality. Log in to see docs customized to your version of the API, with your test key and data.</p>\n<p>Subscribe to SalenGo's <a href=\"https://twitter.com/salengo_com\">API announce mailing list</a> for updates.</p>\n</div>\n\n<div>\n<h1 id=\"postman-collection\">Postman Collection</h1>\n<p>\n    To make integrating with the SalenGo API easier we've made a Postman collection that you can populate with your own application credentials and environment variables.\n</p>\n<p>The collection is publicly available at: <a href=\"https://api.salengo.com\">https://api.salengo.com</a></p>\n</div>\n\n<div>\n<h1 id=\"making-a-request\">Making a Request</h1>\n\n<h2>Base URLS</h2>\n<p>\n    The base URLs for the SalenGo API are\n    - <code>https://api.salengo.com.com/v2/</code> for live\n</p>\n\n<h2>Authentication</h2>\n<p>The SalenGo API uses <a href=\"/memberspages/myaccount/api.aspx\">API keys</a> to authenticate requests. You can view and manage your API keys in <a href=\"/memberspages/myaccount/api.aspx\"> SalenGo Account Settings</a>.</p>\n<p>You can use <a href=\"http://secure.salengo.com/memberspages/myaccount/staffs.aspx\">restricted API keys</a> for granular permissions.</p>\n<p>Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.</p>\n<p>All API requests must be made over <a href=\"http://en.wikipedia.org/wiki/HTTP_Secure\">HTTPS</a>. Calls made over plain HTTP will fail. API requests without authentication will also fail.</p>\n\n\n<h2>Required Headers</h2>\n<p>There are two required headers: </p>\n<ol>\n    <li><code>Content-Type: application/json</code></li>\n    <li><code>Authorization: Bearer</code> </li>\n</ol>\n\n<h2>Mine Types</h2>\n<p>\n    All requests and responses are JSON-formatted and UTF-8 encoded.\n    </p><pre><code>Accept: application/json</code></pre>\n<p></p>\n<p>A Content-Type and Content-Length header must be given when sending data to the API (using POST and PUT endpoints)</p>\n<pre><code> Content-Type: application/json\nContent-Length: 3495\n</code></pre>\n\n<h2>HTTP Verbs</h2>\n<section>\n    <table>\n        <thead>\n            <tr>\n                <th><strong>Verb</strong></th>\n                <th><strong>Description</strong></th>\n            </tr>\n        </thead>\n        <tbody>\n            <tr>\n                <td>GET</td>\n                <td>Retrieve a resource or group of resources</td>\n            </tr>\n            <tr>\n                <td>POST</td>\n                <td>Create a new resource</td>\n            </tr>\n            <tr>\n                <td>PUT</td>\n                <td>Update an existing resource</td>\n            </tr>\n            <tr>\n                <td>DELETE</td>\n                <td>Delete an existing resource</td>\n            </tr>\n            <tr>\n                <td>OPTIONS</td>\n                <td>View allowed verbs against a specific resource</td>\n            </tr>\n        </tbody>\n    </table>\n</section>\n\n<h2>Errors</h2>\nHTTP status code summary\n<section>\n    <table>\n        <tbody>\n            <tr><th>200 - OK</th><td>Everything worked as expected.</td></tr>\n            <tr><th>400 - Bad Request</th><td>The request was unacceptable, often due to missing a required parameter.</td></tr>\n            <tr><th>401 - Unauthorized</th><td>No valid API key provided.</td></tr>\n            <tr><th>402 - Request Failed</th><td>The parameters were valid but the request failed.</td></tr>\n            <tr><th>403 - Forbidden</th><td>The API key doesn't have permissions to perform the request.</td></tr>\n            <tr><th>404 - Not Found</th><td>The requested resource doesn't exist.</td></tr>\n            <tr><th>406 - Not Acceptable</th><td>Missing Accept header. For example: <code>Accept: application/json</code></td></tr>\n            <tr><th>409 - Conflict</th><td>The request conflicts with another request (perhaps due to using the same idempotent key).</td></tr>\n            <tr><th>429 - Too Many Requests</th><td>Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.</td></tr>\n            <tr><th>500, 502, 503, 504 - Server Errors</th><td>Something went wrong on SalenGo's end. (These are rare.)</td></tr>\n        </tbody>\n    </table>\n</section>\n\n\n<h2>Rate Limit Response Header</h2>\n<p>All calls within the Web API are allotted a specific number of requests per refresh period.</p>\n<p>Each Web API request returns the following header information regarding rate limits and number of requests left.</p>\n<p>Depending on the endpoint you are trying to reach, it will have a specific number of allowed requests per refresh period. Once this threshold has been reached, we will return a status code <code>429</code> response.</p>\n\n<pre>When You Reach a Rate Limit : You will no longer be able to make request against that endpoint for the duration of that refresh period.</pre>\n\n</div>\n\n<div>\n<h1 id=\"pagination\">Pagination</h1>\n\n<p>\n    All top-level API resources have support for bulk fetches via \"list\" API methods. For instance, you can <a href=\"#list_charges\">list charges</a>, <a href=\"#list_customers\">list customers</a>, and <a href=\"#list_documents\">list documents</a>.\n    These list API methods share a common structure, taking at least these two parameters: <code>perpage</code> and <code>page</code>.\n</p>\n<p>\n    SalenGo utilizes cursor-based pagination via the <code>perpage</code> and <code>page</code> parameters.\n    Both parameters take an existing object ID value (see below) and return objects in reverse chronological order.\n</p>\n</div>\n\n<div>\n<h1 id=\"versioning\">Versioning</h1>\n\n<p>\n    When we make backwards-incompatible changes to the API, we release new, numbered versions. \n        The current version is <strong>2</strong>.\n    \n    Read our <a href=\"\">API upgrades guide</a> to see our <a href=\"https://twitter.com/salengo_com\">API changelog</a> and to learn more about backwards compatibility.\n</p>\n\n<p>All requests will use your account API settings, unless you override the API version. The <a href=\"https://twitter.com/salengo_com\"> changelog</a> lists every available version. <em>Note that events generated by API requests will always be structured according to your account API version.</em></p>\n</div>\n\n<div>\n<h1 id=\"constant\">Constant</h1>\n\n<h2>Time zones / dates</h2>\n<p>All timestamps are formatted as ISO8601 with timezone information. For API calls that allow for a timestamp to be specified, we use that exact timestamp. These timestamps look something like 2014-02-27T15:05:06.123Z.</p>\n<ul>\n    <li>For endpoints that require date, we expect a date string of the format YYYY-MM-DD, where an example would look like 2014-02-27.</li>\n    <li>For endpoints that require time, we expect a time of the format of integer (number of minutes since midnight), where an example would look like 125.</li>\n</ul>\n\n<h2>Enum</h2>\n<h3>Rounding</h3>\n<p>Specifies a rounding behavior for numerical operations capable of discarding precision. Each rounding mode indicates how the least significant returned digit of a rounded result is to be calculated.</p>\n<ul>\n    <li>Automatic : Round value by default by the system, # of digits not specify ==&gt; <code>enum=0</code></li>\n    <li>Round : Round a number to a decimal at precision x ==&gt; <code>enum=3 with with precision x</code></li>\n    <li>Round Up : Round a fractional value to an integer that is greater than the fractional value at precision x. For example, round 3.12 to 3.2 ==&gt; <code>enum=1 with with precision x</code></li>\n    <li>Round Down : Round a fractional value to an integer that is less than the fractional value at precision x. For example, round 3.95 to 3.9 ==&gt; <code>enum=2 with with precision x</code></li>\n</ul>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"},{"content":"Postman Collection","slug":"postman-collection"},{"content":"Making a Request","slug":"making-a-request"},{"content":"Pagination","slug":"pagination"},{"content":"Versioning","slug":"versioning"},{"content":"Constant","slug":"constant"}],"owner":"747459","collectionId":"29a03add-b9ae-17bc-c411-c51d27d32327","publishedId":"6fWzQKn","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-12-01T07:48:39.000Z"},"item":[{"name":"Authorization Header","item":[],"id":"74e7d60b-22f3-646e-885e-5e32b66451e2","description":"<p>To authenticate, add an Authorization header to your API request that contains an API Key.</p>\n<h2>API Keys</h2>\nSalenGo’s Web API v2 supports the use of API Keys. API Keys allow you to use another method of authentication separate from your account username and password. API Keys add an additional layer of security for your account and can be assigned specific permissions to limit which areas of your account they may be used to access. API Keys can be generated in your account. \n\n<p>To use keys, you must set a plain text header named “apikey” with the contents of the apikey starting by \"SNG.\"</p>\n","event":[{"listen":"prerequest","script":{"id":"59a0eca4-78cc-45d6-8487-aff15504fc66","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4513593d-ff14-4739-858f-7acba26ea114","type":"text/javascript","exec":[""]}}],"_postman_id":"74e7d60b-22f3-646e-885e-5e32b66451e2","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"INIT","item":[{"name":"LOGIN","id":"4652a144-3ced-4ec9-b19c-53acc2222afd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"4652a144-3ced-4ec9-b19c-53acc2222afd"}],"id":"7d9bc3f6-6b94-43c9-a5e4-8b8e979b9558","_postman_id":"7d9bc3f6-6b94-43c9-a5e4-8b8e979b9558","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"CATALOG","item":[{"name":"[model]","event":[{"listen":"test","script":{"id":"1c9d85bd-0932-4af4-9e96-439803d872db","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"dc582074-b9d8-4a00-ba4d-3c92bdae7da2","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"folder\",\r","        \"is_pack\",\r","        \"item_id\",\r","        \"public\",\r","        \"state\",\r","        \"visibility\",\r","        \"information\",\r","        \"pack\",\r","        \"price\",\r","        \"delivery\",\r","        \"customfields\",\r","        \"traceability\"\r","    ],\r","    \"properties\": {\r","        \"folder\": {\r","            \"$id\": \"#/properties/folder\",\r","            \"type\": \"integer\",\r","            \"title\": \"The folder schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"is_pack\": {\r","            \"$id\": \"#/properties/is_pack\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The is_pack schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"item_id\": {\r","            \"$id\": \"#/properties/item_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The item_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"public\": {\r","            \"$id\": \"#/properties/public\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The public schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"state\": {\r","            \"$id\": \"#/properties/state\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The state schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"visibility\": {\r","            \"$id\": \"#/properties/visibility\",\r","            \"type\": \"integer\",\r","            \"title\": \"The visibility schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"information\": {\r","            \"$id\": \"#/properties/information\",\r","            \"type\": \"object\",\r","            \"title\": \"The information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"barcode\",\r","                \"category\",\r","                \"description\",\r","                \"family\",\r","                \"family_sub\",\r","                \"name\",\r","                \"quantity\",\r","                \"quantity_incremental\",\r","                \"quantity_minimum\",\r","                \"reference\",\r","                \"smarttags\",\r","                \"type\",\r","                \"unit\"\r","            ],\r","            \"properties\": {\r","                \"barcode\": {\r","                    \"$id\": \"#/properties/information/properties/barcode\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The barcode schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"format\",\r","                        \"value\"\r","                    ],\r","                    \"properties\": {\r","                        \"format\": {\r","                            \"$id\": \"#/properties/information/properties/barcode/properties/format\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The format schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"value\": {\r","                            \"$id\": \"#/properties/information/properties/barcode/properties/value\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The value schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"category\": {\r","                    \"$id\": \"#/properties/information/properties/category\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The category schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"description\": {\r","                    \"$id\": \"#/properties/information/properties/description\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The description schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"family\": {\r","                    \"$id\": \"#/properties/information/properties/family\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The family schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"family_sub\": {\r","                    \"$id\": \"#/properties/information/properties/family_sub\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The family_sub schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/information/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"quantity\": {\r","                    \"$id\": \"#/properties/information/properties/quantity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The quantity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"quantity_incremental\": {\r","                    \"$id\": \"#/properties/information/properties/quantity_incremental\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The quantity_incremental schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"quantity_minimum\": {\r","                    \"$id\": \"#/properties/information/properties/quantity_minimum\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The quantity_minimum schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"reference\": {\r","                    \"$id\": \"#/properties/information/properties/reference\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The reference schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"smarttags\": {\r","                    \"$id\": \"#/properties/information/properties/smarttags\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The smarttags schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/information/properties/smarttags/items\"\r","                    }\r","                },\r","                \"type\": {\r","                    \"$id\": \"#/properties/information/properties/type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"unit\": {\r","                    \"$id\": \"#/properties/information/properties/unit\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The unit schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"pack\": {\r","            \"$id\": \"#/properties/pack\",\r","            \"type\": \"object\",\r","            \"title\": \"The pack schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"calcul\",\r","                \"currency\",\r","                \"items\",\r","                \"rules\",\r","                \"value\",\r","                \"vat1\",\r","                \"vat2\"\r","            ],\r","            \"properties\": {\r","                \"calcul\": {\r","                    \"$id\": \"#/properties/pack/properties/calcul\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The calcul schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"currency\": {\r","                    \"$id\": \"#/properties/pack/properties/currency\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The currency schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"fixed\",\r","                        \"gsep\",\r","                        \"iso\",\r","                        \"position\",\r","                        \"sep\"\r","                    ],\r","                    \"properties\": {\r","                        \"fixed\": {\r","                            \"$id\": \"#/properties/pack/properties/currency/properties/fixed\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The fixed schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"gsep\": {\r","                            \"$id\": \"#/properties/pack/properties/currency/properties/gsep\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The gsep schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"iso\": {\r","                            \"$id\": \"#/properties/pack/properties/currency/properties/iso\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The iso schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"position\": {\r","                            \"$id\": \"#/properties/pack/properties/currency/properties/position\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The position schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"sep\": {\r","                            \"$id\": \"#/properties/pack/properties/currency/properties/sep\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The sep schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"items\": {\r","                    \"$id\": \"#/properties/pack/properties/items\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The items schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/pack/properties/items/items\"\r","                    }\r","                },\r","                \"rules\": {\r","                    \"$id\": \"#/properties/pack/properties/rules\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The rules schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"value\": {\r","                    \"$id\": \"#/properties/pack/properties/value\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The value schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"vat1\": {\r","                    \"$id\": \"#/properties/pack/properties/vat1\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The vat1 schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"vat2\": {\r","                    \"$id\": \"#/properties/pack/properties/vat2\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The vat2 schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"price\": {\r","            \"$id\": \"#/properties/price\",\r","            \"type\": \"object\",\r","            \"title\": \"The price schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"currency\",\r","                \"ecotax\",\r","                \"ecotax_amount\",\r","                \"price\",\r","                \"vat1\",\r","                \"vat2\"\r","            ],\r","            \"properties\": {\r","                \"currency\": {\r","                    \"$id\": \"#/properties/price/properties/currency\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The currency schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"fixed\",\r","                        \"gsep\",\r","                        \"iso\",\r","                        \"position\",\r","                        \"sep\"\r","                    ],\r","                    \"properties\": {\r","                        \"fixed\": {\r","                            \"$id\": \"#/properties/price/properties/currency/properties/fixed\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The fixed schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"gsep\": {\r","                            \"$id\": \"#/properties/price/properties/currency/properties/gsep\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The gsep schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"iso\": {\r","                            \"$id\": \"#/properties/price/properties/currency/properties/iso\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The iso schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"position\": {\r","                            \"$id\": \"#/properties/price/properties/currency/properties/position\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The position schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"sep\": {\r","                            \"$id\": \"#/properties/price/properties/currency/properties/sep\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The sep schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"ecotax\": {\r","                    \"$id\": \"#/properties/price/properties/ecotax\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The ecotax schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"ecotax_amount\": {\r","                    \"$id\": \"#/properties/price/properties/ecotax_amount\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The ecotax_amount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"price\": {\r","                    \"$id\": \"#/properties/price/properties/price\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The price schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"vat1\": {\r","                    \"$id\": \"#/properties/price/properties/vat1\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The vat1 schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"vat2\": {\r","                    \"$id\": \"#/properties/price/properties/vat2\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The vat2 schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"delivery\": {\r","            \"$id\": \"#/properties/delivery\",\r","            \"type\": \"object\",\r","            \"title\": \"The delivery schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"order\",\r","                \"packaging\",\r","                \"transportation\"\r","            ],\r","            \"properties\": {\r","                \"order\": {\r","                    \"$id\": \"#/properties/delivery/properties/order\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The order schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"delay\",\r","                        \"holidays\",\r","                        \"scheduler\",\r","                        \"scheduler_timetable\"\r","                    ],\r","                    \"properties\": {\r","                        \"delay\": {\r","                            \"$id\": \"#/properties/delivery/properties/order/properties/delay\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The delay schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"holidays\": {\r","                            \"$id\": \"#/properties/delivery/properties/order/properties/holidays\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The holidays schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"scheduler\": {\r","                            \"$id\": \"#/properties/delivery/properties/order/properties/scheduler\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The scheduler schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"scheduler_timetable\": {\r","                            \"$id\": \"#/properties/delivery/properties/order/properties/scheduler_timetable\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The scheduler_timetable schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/delivery/properties/order/properties/scheduler_timetable/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"packaging\": {\r","                    \"$id\": \"#/properties/delivery/properties/packaging\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The packaging schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"depth\",\r","                        \"height\",\r","                        \"meter_unit\",\r","                        \"weight\",\r","                        \"width\"\r","                    ],\r","                    \"properties\": {\r","                        \"depth\": {\r","                            \"$id\": \"#/properties/delivery/properties/packaging/properties/depth\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The depth schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"height\": {\r","                            \"$id\": \"#/properties/delivery/properties/packaging/properties/height\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The height schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"meter_unit\": {\r","                            \"$id\": \"#/properties/delivery/properties/packaging/properties/meter_unit\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The meter_unit schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"weight\": {\r","                            \"$id\": \"#/properties/delivery/properties/packaging/properties/weight\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The weight schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"width\": {\r","                            \"$id\": \"#/properties/delivery/properties/packaging/properties/width\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The width schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"transportation\": {\r","                    \"$id\": \"#/properties/delivery/properties/transportation\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The transportation schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"carriers\",\r","                        \"fees\"\r","                    ],\r","                    \"properties\": {\r","                        \"carriers\": {\r","                            \"$id\": \"#/properties/delivery/properties/transportation/properties/carriers\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The carriers schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/delivery/properties/transportation/properties/carriers/items\"\r","                            }\r","                        },\r","                        \"fees\": {\r","                            \"$id\": \"#/properties/delivery/properties/transportation/properties/fees\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The fees schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"customfields\": {\r","            \"$id\": \"#/properties/customfields\",\r","            \"type\": \"array\",\r","            \"title\": \"The customfields schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/customfields/items\"\r","            }\r","        },\r","        \"traceability\": {\r","            \"$id\": \"#/properties/traceability\",\r","            \"type\": \"object\",\r","            \"title\": \"The traceability schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"allergens\",\r","                \"conservation\"\r","            ],\r","            \"properties\": {\r","                \"allergens\": {\r","                    \"$id\": \"#/properties/traceability/properties/allergens\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The allergens schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"enabled\",\r","                        \"list\"\r","                    ],\r","                    \"properties\": {\r","                        \"enabled\": {\r","                            \"$id\": \"#/properties/traceability/properties/allergens/properties/enabled\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The enabled schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"list\": {\r","                            \"$id\": \"#/properties/traceability/properties/allergens/properties/list\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The list schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/traceability/properties/allergens/properties/list/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"conservation\": {\r","                    \"$id\": \"#/properties/traceability/properties/conservation\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The conservation schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"enabled\",\r","                        \"sell_by_days\",\r","                        \"temperature_high\",\r","                        \"temperature_low\",\r","                        \"use_by_days\"\r","                    ],\r","                    \"properties\": {\r","                        \"enabled\": {\r","                            \"$id\": \"#/properties/traceability/properties/conservation/properties/enabled\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The enabled schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"sell_by_days\": {\r","                            \"$id\": \"#/properties/traceability/properties/conservation/properties/sell_by_days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The sell_by_days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"temperature_high\": {\r","                            \"$id\": \"#/properties/traceability/properties/conservation/properties/temperature_high\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The temperature_high schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"temperature_low\": {\r","                            \"$id\": \"#/properties/traceability/properties/conservation/properties/temperature_low\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The temperature_low schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"use_by_days\": {\r","                            \"$id\": \"#/properties/traceability/properties/conservation/properties/use_by_days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The use_by_days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"64c6fa08-86bb-d001-8283-1ad2593abd12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/catalog.svc/","description":"<p>These are all the JSON-schemas for SalenGo API.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"64c6fa08-86bb-d001-8283-1ad2593abd12"},{"name":"download_item_document","id":"ae204710-5671-4c3e-bc63-711a8bb1f370","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8","type":"text"},{"key":"apikey","value":"{{APIKEY}}","type":"text"}],"url":"{{url}}/catalog.svc/download_item_document/91709f0a-871b-4ed9-a553-fe0ef49972f6","description":"<p>Download file attach to document.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","download_item_document","91709f0a-871b-4ed9-a553-fe0ef49972f6"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae204710-5671-4c3e-bc63-711a8bb1f370"},{"name":"list","event":[{"listen":"test","script":{"id":"c6541adc-8867-4ba6-8449-bf44d913a520","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"1f07de4b-ffe5-4f19-9c06-b06d343001b7","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_Result\": {\r","            \"$id\": \"#/properties/_LIST_Result\",\r","            \"type\": \"array\",\r","            \"title\": \"The _LIST_Result schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"catalog\",\r","                            \"catalog_id\",\r","                            \"category\",\r","                            \"currency\",\r","                            \"datasheet\",\r","                            \"extended\",\r","                            \"family\",\r","                            \"image\",\r","                            \"item_id\",\r","                            \"margin\",\r","                            \"name\",\r","                            \"price_buyer\",\r","                            \"price_net\",\r","                            \"price_sales\",\r","                            \"reference\",\r","                            \"smarttags\",\r","                            \"state\",\r","                            \"stock_management\",\r","                            \"stock_quantity\",\r","                            \"total_items\",\r","                            \"type\",\r","                            \"vat1\",\r","                            \"vat2\"\r","                        ],\r","                        \"properties\": {\r","                            \"catalog\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/catalog\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The catalog schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"catalog_id\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/catalog_id\",\r","                                \"type\": \"null\",\r","                                \"title\": \"The catalog_id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": null\r","                            },\r","                            \"category\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/category\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The category schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"currency\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The currency schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"fixed\",\r","                                    \"gsep\",\r","                                    \"iso\",\r","                                    \"position\",\r","                                    \"sep\"\r","                                ],\r","                                \"properties\": {\r","                                    \"fixed\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/fixed\",\r","                                        \"type\": \"integer\",\r","                                        \"title\": \"The fixed schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"gsep\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/gsep\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The gsep schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"iso\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/iso\",\r","                                        \"type\": \"integer\",\r","                                        \"title\": \"The iso schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"position\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/position\",\r","                                        \"type\": \"integer\",\r","                                        \"title\": \"The position schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"sep\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/sep\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The sep schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"datasheet\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/datasheet\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The datasheet schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"extended\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/extended\",\r","                                \"type\": \"null\",\r","                                \"title\": \"The extended schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": null\r","                            },\r","                            \"family\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/family\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The family schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"image\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/image\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The image schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"date\",\r","                                    \"description\",\r","                                    \"id\",\r","                                    \"name\",\r","                                    \"url\"\r","                                ],\r","                                \"properties\": {\r","                                    \"date\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/image/properties/date\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The date schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"description\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/image/properties/description\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The description schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/image/properties/id\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The id schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/image/properties/name\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The name schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"url\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/image/properties/url\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The url schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"item_id\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/item_id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The item_id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"margin\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/margin\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The margin schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"price_buyer\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/price_buyer\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The price_buyer schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"price_net\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/price_net\",\r","                                \"type\": \"number\",\r","                                \"title\": \"The price_net schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0.0\r","                            },\r","                            \"price_sales\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/price_sales\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The price_sales schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The reference schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"smarttags\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/smarttags\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The smarttags schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/state\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"stock_management\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/stock_management\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The stock_management schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"stock_quantity\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/stock_quantity\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The stock_quantity schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"total_items\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/total_items\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The total_items schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"type\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/type\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The type schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"vat1\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/vat1\",\r","                                \"type\": \"number\",\r","                                \"title\": \"The vat1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0.0\r","                            },\r","                            \"vat2\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/vat2\",\r","                                \"type\": \"number\",\r","                                \"title\": \"The vat2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0.0\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","}\r",");\r","\r",""],"type":"text/javascript"}}],"id":"d01e98af-35ea-bd99-9dc8-9d37b20ad3a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"show_pack\": true,\n    \"params\": {\n        \"catalog_id\": null,\n        \"client_id\": null,\n        \"folder\": 0,\n        \"pagination\": {\n            \"perpage\": 20,\n            \"page\": 1\n        }\n    }\n}"},"url":"{{url}}/catalog.svc/list","description":"<p>The \"list\" will list all products/services or packs that a merchant has within the merchant catalog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d01e98af-35ea-bd99-9dc8-9d37b20ad3a5"},{"name":"price-list","event":[{"listen":"test","script":{"id":"d9cc1505-3b9b-4b8b-b95e-6ceb81f14b79","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2e421a19-92e9-44ea-97f7-c4fe8a2a23ee","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_PRICE_LIST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_PRICE_LIST_Result\": {\r","            \"$id\": \"#/properties/_PRICE_LIST_Result\",\r","            \"type\": \"object\",\r","            \"title\": \"The _PRICE_LIST_Result schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"filename\",\r","                \"message\",\r","                \"unc\",\r","                \"unc_id\"\r","            ],\r","            \"properties\": {\r","                \"filename\": {\r","                    \"$id\": \"#/properties/_PRICE_LIST_Result/properties/filename\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The filename schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"message\": {\r","                    \"$id\": \"#/properties/_PRICE_LIST_Result/properties/message\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The message schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"unc\": {\r","                    \"$id\": \"#/properties/_PRICE_LIST_Result/properties/unc\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The unc schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"unc_id\": {\r","                    \"$id\": \"#/properties/_PRICE_LIST_Result/properties/unc_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The unc_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"3f93d1e0-df22-47bc-bf0c-7b9178773366","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"show_pack\": false,\n    \"params\": {\n        \"catalog_id\": null,\n        \"client_id\": null\n    }\n}"},"url":"{{url}}/catalog.svc/price-list","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","price-list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3f93d1e0-df22-47bc-bf0c-7b9178773366"},{"name":"list-ids","event":[{"listen":"test","script":{"id":"da06a936-978e-4c8a-b25a-431343193134","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c58c7a36-ef87-4a5b-8b98-fc55251ff415","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_ITEMS_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_ITEMS_Result\": {\r","            \"$id\": \"#/properties/_LIST_ITEMS_Result\",\r","            \"type\": \"array\",\r","            \"title\": \"The _LIST_ITEMS_Result schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_ITEMS_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_ITEMS_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"item_id\",\r","                            \"pack\",\r","                            \"updatedate\"\r","                        ],\r","                        \"properties\": {\r","                            \"item_id\": {\r","                                \"$id\": \"#/properties/_LIST_ITEMS_Result/items/anyOf/0/properties/item_id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The item_id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"pack\": {\r","                                \"$id\": \"#/properties/_LIST_ITEMS_Result/items/anyOf/0/properties/pack\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The pack schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"updatedate\": {\r","                                \"$id\": \"#/properties/_LIST_ITEMS_Result/items/anyOf/0/properties/updatedate\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The updatedate schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"05353b6a-556d-4a7c-aafc-b9b694b69d42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n\t\"catalog_id\" : \"{{catalog_id}}\",\n\t\"folder\": 0\n}"},"url":"{{url}}/catalog.svc/list-ids","description":"<p>Retrieve only full list of item_id and last change datetime based, filter by catalog</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","list-ids"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"05353b6a-556d-4a7c-aafc-b9b694b69d42"},{"name":"item (Product)","event":[{"listen":"test","script":{"id":"ba8ca54b-bce5-4d76-b2e0-4219c64383e3","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e3bddcf2-1b73-4d14-a452-c4d027f82fdd","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_Result\": {\r","            \"$id\": \"#/properties/_GET_Result\",\r","            \"type\": \"object\",\r","            \"title\": \"The _GET_Result schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"folder\",\r","                \"is_pack\",\r","                \"item_id\",\r","                \"public\",\r","                \"state\",\r","                \"visibility\",\r","                \"information\",\r","                \"pack\",\r","                \"price\",\r","                \"delivery\",\r","                \"customfields\",\r","                \"traceability\"\r","            ],\r","            \"properties\": {\r","                \"folder\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/folder\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The folder schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"is_pack\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/is_pack\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The is_pack schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"item_id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/item_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The item_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"public\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/public\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The public schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"state\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/state\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The state schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"visibility\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/visibility\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The visibility schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/information\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The information schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"barcode\",\r","                        \"category\",\r","                        \"description\",\r","                        \"family\",\r","                        \"family_sub\",\r","                        \"name\",\r","                        \"quantity\",\r","                        \"quantity_incremental\",\r","                        \"quantity_minimum\",\r","                        \"reference\",\r","                        \"smarttags\",\r","                        \"type\",\r","                        \"unit\"\r","                    ],\r","                    \"properties\": {\r","                        \"barcode\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/barcode\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The barcode schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"format\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"format\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/information/properties/barcode/properties/format\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The format schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/information/properties/barcode/properties/value\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The value schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"category\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/category\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The category schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"description\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/description\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The description schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"family\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/family\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The family schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"family_sub\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/family_sub\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The family_sub schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"name\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/name\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The name schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"quantity\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/quantity\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The quantity schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"quantity_incremental\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/quantity_incremental\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The quantity_incremental schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"quantity_minimum\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/quantity_minimum\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The quantity_minimum schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"reference\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/reference\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The reference schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"smarttags\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/smarttags\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The smarttags schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/_GET_Result/properties/information/properties/smarttags/items\"\r","                            }\r","                        },\r","                        \"type\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/type\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The type schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"unit\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/unit\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The unit schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"pack\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/pack\",\r","                    \"type\": \"null\",\r","                    \"title\": \"The pack schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": null\r","                },\r","                \"price\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/price\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The price schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"currency\",\r","                        \"ecotax\",\r","                        \"ecotax_amount\",\r","                        \"price\",\r","                        \"vat1\",\r","                        \"vat2\"\r","                    ],\r","                    \"properties\": {\r","                        \"currency\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The currency schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"fixed\",\r","                                \"gsep\",\r","                                \"iso\",\r","                                \"position\",\r","                                \"sep\"\r","                            ],\r","                            \"properties\": {\r","                                \"fixed\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/fixed\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The fixed schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"gsep\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/gsep\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The gsep schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"iso\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/iso\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The iso schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"position\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/position\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The position schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"sep\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/sep\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The sep schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"ecotax\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/ecotax\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The ecotax schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"ecotax_amount\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/ecotax_amount\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The ecotax_amount schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"price\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/price\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The price schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"vat1\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/vat1\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The vat1 schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"vat2\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/vat2\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The vat2 schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"delivery\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The delivery schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"order\",\r","                        \"packaging\",\r","                        \"transportation\"\r","                    ],\r","                    \"properties\": {\r","                        \"order\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The order schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"delay\",\r","                                \"holidays\",\r","                                \"scheduler\",\r","                                \"scheduler_timetable\"\r","                            ],\r","                            \"properties\": {\r","                                \"delay\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/delay\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The delay schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"holidays\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/holidays\",\r","                                    \"type\": \"boolean\",\r","                                    \"title\": \"The holidays schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": false\r","                                },\r","                                \"scheduler\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/scheduler\",\r","                                    \"type\": \"boolean\",\r","                                    \"title\": \"The scheduler schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": false\r","                                },\r","                                \"scheduler_timetable\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/scheduler_timetable\",\r","                                    \"type\": \"array\",\r","                                    \"title\": \"The scheduler_timetable schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": [],\r","                                    \"additionalItems\": true,\r","                                    \"items\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/scheduler_timetable/items\"\r","                                    }\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"packaging\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The packaging schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"depth\",\r","                                \"height\",\r","                                \"meter_unit\",\r","                                \"weight\",\r","                                \"width\"\r","                            ],\r","                            \"properties\": {\r","                                \"depth\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/depth\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The depth schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                },\r","                                \"height\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/height\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The height schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                },\r","                                \"meter_unit\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/meter_unit\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The meter_unit schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                },\r","                                \"weight\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/weight\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The weight schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                },\r","                                \"width\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/width\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The width schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"transportation\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/transportation\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The transportation schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"carriers\",\r","                                \"fees\"\r","                            ],\r","                            \"properties\": {\r","                                \"carriers\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/transportation/properties/carriers\",\r","                                    \"type\": \"array\",\r","                                    \"title\": \"The carriers schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": [],\r","                                    \"additionalItems\": true,\r","                                    \"items\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/transportation/properties/carriers/items\"\r","                                    }\r","                                },\r","                                \"fees\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/transportation/properties/fees\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The fees schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"customfields\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/customfields\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The customfields schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_Result/properties/customfields/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/_GET_Result/properties/customfields/items/anyOf/0\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The first anyOf schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"code\",\r","                                    \"description\",\r","                                    \"name\",\r","                                    \"type\",\r","                                    \"unit\",\r","                                    \"value\"\r","                                ],\r","                                \"properties\": {\r","                                    \"code\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/customfields/items/anyOf/0/properties/code\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The code schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"description\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/customfields/items/anyOf/0/properties/description\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The description schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"name\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/customfields/items/anyOf/0/properties/name\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The name schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"type\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/customfields/items/anyOf/0/properties/type\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The type schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"unit\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/customfields/items/anyOf/0/properties/unit\",\r","                                        \"type\": \"null\",\r","                                        \"title\": \"The unit schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": null\r","                                    },\r","                                    \"value\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/customfields/items/anyOf/0/properties/value\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The value schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            }\r","                        ]\r","                    }\r","                },\r","                \"traceability\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/traceability\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The traceability schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"allergens\",\r","                        \"conservation\"\r","                    ],\r","                    \"properties\": {\r","                        \"allergens\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/allergens\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The allergens schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"enabled\",\r","                                \"list\"\r","                            ],\r","                            \"properties\": {\r","                                \"enabled\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/allergens/properties/enabled\",\r","                                    \"type\": \"boolean\",\r","                                    \"title\": \"The enabled schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": false\r","                                },\r","                                \"list\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/allergens/properties/list\",\r","                                    \"type\": \"array\",\r","                                    \"title\": \"The list schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": [],\r","                                    \"additionalItems\": true,\r","                                    \"items\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/allergens/properties/list/items\"\r","                                    }\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"conservation\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The conservation schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"enabled\",\r","                                \"sell_by_days\",\r","                                \"temperature_high\",\r","                                \"temperature_low\",\r","                                \"use_by_days\"\r","                            ],\r","                            \"properties\": {\r","                                \"enabled\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/enabled\",\r","                                    \"type\": \"boolean\",\r","                                    \"title\": \"The enabled schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": false\r","                                },\r","                                \"sell_by_days\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/sell_by_days\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The sell_by_days schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"temperature_high\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/temperature_high\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The temperature_high schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"temperature_low\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/temperature_low\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The temperature_low schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"use_by_days\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/use_by_days\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The use_by_days schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"4c2ead44-6151-4e57-a786-ac53477b8984","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"params\": {\n        \"catalog_id\": null,\n        \"client_id\": null,\n        \"item_id\": \"{{product_id}}\"\n    }\n}"},"url":"{{url}}/catalog.svc/get","description":"<p>To get information on a specific product. \nSpecify catalog_id value to get proper price for a specific catalog (optional).\nSpecify client_id value to get proper price for a specific client (optional).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","get"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c2ead44-6151-4e57-a786-ac53477b8984"},{"name":"item (Bundle)","event":[{"listen":"test","script":{"id":"31d1db54-5493-4f7a-a06f-5c2911860d77","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"7b837e1a-3406-4b8d-ad8a-0821dde8b4c7","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_Result\": {\r","            \"$id\": \"#/properties/_GET_Result\",\r","            \"type\": \"object\",\r","            \"title\": \"The _GET_Result schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"folder\",\r","                \"is_pack\",\r","                \"item_id\",\r","                \"public\",\r","                \"state\",\r","                \"visibility\",\r","                \"information\",\r","                \"pack\",\r","                \"price\",\r","                \"delivery\",\r","                \"customfields\",\r","                \"traceability\"\r","            ],\r","            \"properties\": {\r","                \"folder\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/folder\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The folder schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"is_pack\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/is_pack\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The is_pack schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"item_id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/item_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The item_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"public\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/public\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The public schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"state\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/state\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The state schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"visibility\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/visibility\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The visibility schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/information\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The information schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"barcode\",\r","                        \"category\",\r","                        \"description\",\r","                        \"family\",\r","                        \"family_sub\",\r","                        \"name\",\r","                        \"quantity\",\r","                        \"quantity_incremental\",\r","                        \"quantity_minimum\",\r","                        \"reference\",\r","                        \"smarttags\",\r","                        \"type\",\r","                        \"unit\"\r","                    ],\r","                    \"properties\": {\r","                        \"barcode\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/barcode\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The barcode schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"format\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"format\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/information/properties/barcode/properties/format\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The format schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/information/properties/barcode/properties/value\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The value schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"category\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/category\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The category schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"description\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/description\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The description schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"family\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/family\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The family schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"family_sub\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/family_sub\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The family_sub schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"name\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/name\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The name schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"quantity\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/quantity\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The quantity schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"quantity_incremental\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/quantity_incremental\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The quantity_incremental schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"quantity_minimum\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/quantity_minimum\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The quantity_minimum schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"reference\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/reference\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The reference schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"smarttags\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/smarttags\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The smarttags schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/_GET_Result/properties/information/properties/smarttags/items\"\r","                            }\r","                        },\r","                        \"type\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/type\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The type schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"unit\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/unit\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The unit schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"pack\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/pack\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The pack schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"calcul\",\r","                        \"currency\",\r","                        \"items\",\r","                        \"rules\",\r","                        \"value\",\r","                        \"vat1\",\r","                        \"vat2\"\r","                    ],\r","                    \"properties\": {\r","                        \"calcul\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/pack/properties/calcul\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The calcul schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"currency\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/pack/properties/currency\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The currency schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"fixed\",\r","                                \"gsep\",\r","                                \"iso\",\r","                                \"position\",\r","                                \"sep\"\r","                            ],\r","                            \"properties\": {\r","                                \"fixed\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/pack/properties/currency/properties/fixed\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The fixed schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"gsep\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/pack/properties/currency/properties/gsep\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The gsep schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"iso\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/pack/properties/currency/properties/iso\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The iso schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"position\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/pack/properties/currency/properties/position\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The position schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"sep\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/pack/properties/currency/properties/sep\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The sep schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"items\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The items schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items\",\r","                                \"anyOf\": [\r","                                    {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0\",\r","                                        \"type\": \"object\",\r","                                        \"title\": \"The first anyOf schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": {},\r","                                        \"required\": [\r","                                            \"currency\",\r","                                            \"description\",\r","                                            \"discount\",\r","                                            \"enabled\",\r","                                            \"formula\",\r","                                            \"hide_document\",\r","                                            \"id\",\r","                                            \"image\",\r","                                            \"name\",\r","                                            \"pack\",\r","                                            \"pack_calcul\",\r","                                            \"pack_list\",\r","                                            \"position\",\r","                                            \"price\",\r","                                            \"price_gross\",\r","                                            \"price_supplier\",\r","                                            \"quantity\",\r","                                            \"reference\",\r","                                            \"stock\",\r","                                            \"supplier\",\r","                                            \"unit\",\r","                                            \"vat1\",\r","                                            \"vat2\",\r","                                            \"weight\",\r","                                            \"weight_unit\"\r","                                        ],\r","                                        \"properties\": {\r","                                            \"currency\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/currency\",\r","                                                \"type\": \"object\",\r","                                                \"title\": \"The currency schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": {},\r","                                                \"required\": [\r","                                                    \"fixed\",\r","                                                    \"gsep\",\r","                                                    \"iso\",\r","                                                    \"position\",\r","                                                    \"sep\"\r","                                                ],\r","                                                \"properties\": {\r","                                                    \"fixed\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/currency/properties/fixed\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The fixed schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"gsep\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/currency/properties/gsep\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The gsep schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"iso\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/currency/properties/iso\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The iso schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"position\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/currency/properties/position\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The position schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"sep\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/currency/properties/sep\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The sep schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    }\r","                                                },\r","                                                \"additionalProperties\": true\r","                                            },\r","                                            \"description\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/description\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The description schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"discount\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/discount\",\r","                                                \"type\": \"object\",\r","                                                \"title\": \"The discount schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": {},\r","                                                \"required\": [\r","                                                    \"amount\",\r","                                                    \"destination\"\r","                                                ],\r","                                                \"properties\": {\r","                                                    \"amount\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/discount/properties/amount\",\r","                                                        \"type\": \"number\",\r","                                                        \"title\": \"The amount schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0.0\r","                                                    },\r","                                                    \"destination\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/discount/properties/destination\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The destination schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    }\r","                                                },\r","                                                \"additionalProperties\": true\r","                                            },\r","                                            \"enabled\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/enabled\",\r","                                                \"type\": \"boolean\",\r","                                                \"title\": \"The enabled schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": false\r","                                            },\r","                                            \"formula\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/formula\",\r","                                                \"type\": \"object\",\r","                                                \"title\": \"The formula schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": {},\r","                                                \"required\": [\r","                                                    \"precision\",\r","                                                    \"rounding\",\r","                                                    \"value\"\r","                                                ],\r","                                                \"properties\": {\r","                                                    \"precision\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/formula/properties/precision\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The precision schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"rounding\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/formula/properties/rounding\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The rounding schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"value\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/formula/properties/value\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The value schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    }\r","                                                },\r","                                                \"additionalProperties\": true\r","                                            },\r","                                            \"hide_document\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/hide_document\",\r","                                                \"type\": \"boolean\",\r","                                                \"title\": \"The hide_document schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": false\r","                                            },\r","                                            \"id\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/id\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The id schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"image\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image\",\r","                                                \"type\": \"object\",\r","                                                \"title\": \"The image schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": {},\r","                                                \"required\": [\r","                                                    \"deleteType\",\r","                                                    \"deleteUrl\",\r","                                                    \"description\",\r","                                                    \"destination\",\r","                                                    \"extension\",\r","                                                    \"name\",\r","                                                    \"org_name\",\r","                                                    \"s1\",\r","                                                    \"size\",\r","                                                    \"thumbnail\",\r","                                                    \"type\",\r","                                                    \"url\"\r","                                                ],\r","                                                \"properties\": {\r","                                                    \"deleteType\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/deleteType\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The deleteType schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"deleteUrl\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/deleteUrl\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The deleteUrl schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"description\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/description\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The description schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"destination\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/destination\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The destination schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"extension\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/extension\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The extension schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"name\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/name\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The name schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"org_name\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/org_name\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The org_name schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"s1\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/s1\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The s1 schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"size\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/size\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The size schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"thumbnail\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/thumbnail\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The thumbnail schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"type\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/type\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The type schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    },\r","                                                    \"url\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/image/properties/url\",\r","                                                        \"type\": \"string\",\r","                                                        \"title\": \"The url schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": \"\"\r","                                                    }\r","                                                },\r","                                                \"additionalProperties\": true\r","                                            },\r","                                            \"name\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/name\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The name schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"pack\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/pack\",\r","                                                \"type\": \"boolean\",\r","                                                \"title\": \"The pack schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": false\r","                                            },\r","                                            \"pack_calcul\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/pack_calcul\",\r","                                                \"type\": \"integer\",\r","                                                \"title\": \"The pack_calcul schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0\r","                                            },\r","                                            \"pack_list\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/pack_list\",\r","                                                \"type\": \"array\",\r","                                                \"title\": \"The pack_list schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": [],\r","                                                \"additionalItems\": true,\r","                                                \"items\": {\r","                                                    \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/pack_list/items\"\r","                                                }\r","                                            },\r","                                            \"position\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/position\",\r","                                                \"type\": \"integer\",\r","                                                \"title\": \"The position schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0\r","                                            },\r","                                            \"price\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/price\",\r","                                                \"type\": \"number\",\r","                                                \"title\": \"The price schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0.0\r","                                            },\r","                                            \"price_gross\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/price_gross\",\r","                                                \"type\": \"integer\",\r","                                                \"title\": \"The price_gross schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0\r","                                            },\r","                                            \"price_supplier\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/price_supplier\",\r","                                                \"type\": \"number\",\r","                                                \"title\": \"The price_supplier schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0.0\r","                                            },\r","                                            \"quantity\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/quantity\",\r","                                                \"type\": \"number\",\r","                                                \"title\": \"The quantity schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0.0\r","                                            },\r","                                            \"reference\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/reference\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The reference schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"stock\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock\",\r","                                                \"type\": \"object\",\r","                                                \"title\": \"The stock schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": {},\r","                                                \"required\": [\r","                                                    \"enabled\",\r","                                                    \"maximum_stock\",\r","                                                    \"method\",\r","                                                    \"minimum_stock\",\r","                                                    \"optimum_stock\",\r","                                                    \"product\",\r","                                                    \"stock_level\"\r","                                                ],\r","                                                \"properties\": {\r","                                                    \"enabled\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/enabled\",\r","                                                        \"type\": \"boolean\",\r","                                                        \"title\": \"The enabled schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": false\r","                                                    },\r","                                                    \"maximum_stock\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/maximum_stock\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The maximum_stock schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"method\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/method\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The method schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"minimum_stock\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/minimum_stock\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The minimum_stock schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"optimum_stock\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/optimum_stock\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The optimum_stock schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    },\r","                                                    \"product\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/product\",\r","                                                        \"type\": \"object\",\r","                                                        \"title\": \"The product schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": {},\r","                                                        \"required\": [\r","                                                            \"warehouse\"\r","                                                        ],\r","                                                        \"properties\": {\r","                                                            \"warehouse\": {\r","                                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/product/properties/warehouse\",\r","                                                                \"type\": \"array\",\r","                                                                \"title\": \"The warehouse schema\",\r","                                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                                \"default\": [],\r","                                                                \"additionalItems\": true,\r","                                                                \"items\": {\r","                                                                    \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/product/properties/warehouse/items\"\r","                                                                }\r","                                                            }\r","                                                        },\r","                                                        \"additionalProperties\": true\r","                                                    },\r","                                                    \"stock_level\": {\r","                                                        \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/stock/properties/stock_level\",\r","                                                        \"type\": \"integer\",\r","                                                        \"title\": \"The stock_level schema\",\r","                                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                                        \"default\": 0\r","                                                    }\r","                                                },\r","                                                \"additionalProperties\": true\r","                                            },\r","                                            \"supplier\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/supplier\",\r","                                                \"type\": \"boolean\",\r","                                                \"title\": \"The supplier schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": false\r","                                            },\r","                                            \"unit\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/unit\",\r","                                                \"type\": \"integer\",\r","                                                \"title\": \"The unit schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0\r","                                            },\r","                                            \"vat1\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/vat1\",\r","                                                \"type\": \"number\",\r","                                                \"title\": \"The vat1 schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0.0\r","                                            },\r","                                            \"vat2\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/vat2\",\r","                                                \"type\": \"number\",\r","                                                \"title\": \"The vat2 schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0.0\r","                                            },\r","                                            \"weight\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/weight\",\r","                                                \"type\": \"number\",\r","                                                \"title\": \"The weight schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0.0\r","                                            },\r","                                            \"weight_unit\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/pack/properties/items/items/anyOf/0/properties/weight_unit\",\r","                                                \"type\": \"integer\",\r","                                                \"title\": \"The weight_unit schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": 0\r","                                            }\r","                                        },\r","                                        \"additionalProperties\": true\r","                                    }\r","                                ]\r","                            }\r","                        },\r","                        \"rules\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/pack/properties/rules\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The rules schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"value\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/pack/properties/value\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The value schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"vat1\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/pack/properties/vat1\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The vat1 schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        },\r","                        \"vat2\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/pack/properties/vat2\",\r","                            \"type\": \"number\",\r","                            \"title\": \"The vat2 schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0.0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"price\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/price\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The price schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"currency\",\r","                        \"ecotax\",\r","                        \"ecotax_amount\",\r","                        \"price\",\r","                        \"vat1\",\r","                        \"vat2\"\r","                    ],\r","                    \"properties\": {\r","                        \"currency\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The currency schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"fixed\",\r","                                \"gsep\",\r","                                \"iso\",\r","                                \"position\",\r","                                \"sep\"\r","                            ],\r","                            \"properties\": {\r","                                \"fixed\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/fixed\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The fixed schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"gsep\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/gsep\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The gsep schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"iso\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/iso\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The iso schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"position\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/position\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The position schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"sep\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/price/properties/currency/properties/sep\",\r","                                    \"type\": \"string\",\r","                                    \"title\": \"The sep schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"ecotax\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/ecotax\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The ecotax schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"ecotax_amount\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/ecotax_amount\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The ecotax_amount schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"price\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/price\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The price schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"vat1\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/vat1\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The vat1 schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"vat2\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/price/properties/vat2\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The vat2 schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"delivery\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The delivery schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"order\",\r","                        \"packaging\",\r","                        \"transportation\"\r","                    ],\r","                    \"properties\": {\r","                        \"order\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The order schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"delay\",\r","                                \"holidays\",\r","                                \"scheduler\",\r","                                \"scheduler_timetable\"\r","                            ],\r","                            \"properties\": {\r","                                \"delay\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/delay\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The delay schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"holidays\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/holidays\",\r","                                    \"type\": \"boolean\",\r","                                    \"title\": \"The holidays schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": false\r","                                },\r","                                \"scheduler\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/scheduler\",\r","                                    \"type\": \"boolean\",\r","                                    \"title\": \"The scheduler schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": false\r","                                },\r","                                \"scheduler_timetable\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/scheduler_timetable\",\r","                                    \"type\": \"array\",\r","                                    \"title\": \"The scheduler_timetable schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": [],\r","                                    \"additionalItems\": true,\r","                                    \"items\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/order/properties/scheduler_timetable/items\"\r","                                    }\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"packaging\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The packaging schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"depth\",\r","                                \"height\",\r","                                \"meter_unit\",\r","                                \"weight\",\r","                                \"width\"\r","                            ],\r","                            \"properties\": {\r","                                \"depth\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/depth\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The depth schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                },\r","                                \"height\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/height\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The height schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                },\r","                                \"meter_unit\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/meter_unit\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The meter_unit schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                },\r","                                \"weight\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/weight\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The weight schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                },\r","                                \"width\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/packaging/properties/width\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The width schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"transportation\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/transportation\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The transportation schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"carriers\",\r","                                \"fees\"\r","                            ],\r","                            \"properties\": {\r","                                \"carriers\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/transportation/properties/carriers\",\r","                                    \"type\": \"array\",\r","                                    \"title\": \"The carriers schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": [],\r","                                    \"additionalItems\": true,\r","                                    \"items\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/transportation/properties/carriers/items\"\r","                                    }\r","                                },\r","                                \"fees\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/transportation/properties/fees\",\r","                                    \"type\": \"number\",\r","                                    \"title\": \"The fees schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0.0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"customfields\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/customfields\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The customfields schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_Result/properties/customfields/items\"\r","                    }\r","                },\r","                \"traceability\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/traceability\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The traceability schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"allergens\",\r","                        \"conservation\"\r","                    ],\r","                    \"properties\": {\r","                        \"allergens\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/allergens\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The allergens schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"enabled\",\r","                                \"list\"\r","                            ],\r","                            \"properties\": {\r","                                \"enabled\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/allergens/properties/enabled\",\r","                                    \"type\": \"boolean\",\r","                                    \"title\": \"The enabled schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": false\r","                                },\r","                                \"list\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/allergens/properties/list\",\r","                                    \"type\": \"array\",\r","                                    \"title\": \"The list schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": [],\r","                                    \"additionalItems\": true,\r","                                    \"items\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/allergens/properties/list/items\"\r","                                    }\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"conservation\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation\",\r","                            \"type\": \"object\",\r","                            \"title\": \"The conservation schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"enabled\",\r","                                \"sell_by_days\",\r","                                \"temperature_high\",\r","                                \"temperature_low\",\r","                                \"use_by_days\"\r","                            ],\r","                            \"properties\": {\r","                                \"enabled\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/enabled\",\r","                                    \"type\": \"boolean\",\r","                                    \"title\": \"The enabled schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": false\r","                                },\r","                                \"sell_by_days\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/sell_by_days\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The sell_by_days schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"temperature_high\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/temperature_high\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The temperature_high schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"temperature_low\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/temperature_low\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The temperature_low schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                },\r","                                \"use_by_days\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/traceability/properties/conservation/properties/use_by_days\",\r","                                    \"type\": \"integer\",\r","                                    \"title\": \"The use_by_days schema\",\r","                                    \"description\": \"An explanation about the purpose of this instance.\",\r","                                    \"default\": 0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"b78ee9cc-ee68-4103-b30b-92a6226a6261","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"params\": {\n        \"catalog_id\": null,\n        \"client_id\": null,\n        \"item_id\": \"{{product_bundle_id}}\"\n    }\n}"},"url":"{{url}}/catalog.svc/get","description":"<p>To get information on a specific product. \nSpecify catalog_id value to get proper price for a specific catalog (optional).\nSpecify client_id value to get proper price for a specific client (optional).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","get"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b78ee9cc-ee68-4103-b30b-92a6226a6261"},{"name":"get_item_documents","event":[{"listen":"test","script":{"id":"dcdf16af-9e4b-48dd-9f30-049e0848d6b9","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"3088b494-71b9-4a0b-b2f9-4cdb52768743","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_ITEM_DOCUMENTS_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_ITEM_DOCUMENTS_Result\": {\r","            \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"data\"\r","            ],\r","            \"properties\": {\r","                \"data\": {\r","                    \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"enabled\",\r","                                    \"file\",\r","                                    \"position\"\r","                                ],\r","                                \"properties\": {\r","                                    \"enabled\": {\r","                                        \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0/properties/enabled\",\r","                                        \"type\": \"boolean\",\r","                                        \"default\": false\r","                                    },\r","                                    \"file\": {\r","                                        \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0/properties/file\",\r","                                        \"type\": \"object\",\r","                                        \"default\": {},\r","                                        \"required\": [\r","                                            \"date\",\r","                                            \"description\",\r","                                            \"id\",\r","                                            \"name\",\r","                                            \"url\"\r","                                        ],\r","                                        \"properties\": {\r","                                            \"date\": {\r","                                                \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0/properties/file/properties/date\",\r","                                                \"type\": \"string\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"description\": {\r","                                                \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0/properties/file/properties/description\",\r","                                                \"type\": \"string\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"id\": {\r","                                                \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0/properties/file/properties/id\",\r","                                                \"type\": \"string\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"name\": {\r","                                                \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0/properties/file/properties/name\",\r","                                                \"type\": \"string\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"url\": {\r","                                                \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0/properties/file/properties/url\",\r","                                                \"type\": \"string\",\r","                                                \"default\": \"\"\r","                                            }\r","                                        },\r","                                        \"additionalProperties\": true\r","                                    },\r","                                    \"position\": {\r","                                        \"$id\": \"#/properties/_GET_ITEM_DOCUMENTS_Result/properties/data/items/anyOf/0/properties/position\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            }\r","                        ]\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"eebd0799-da2f-4535-a31a-0bdf39ab4749","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"images\",\n    \"item_id\": \"{{product_id}}\"\n}"},"url":"{{url}}/catalog.svc/get_item_documents","description":"<p>Retrieve list of documents for a defined type &amp; product ID</p>\n<p><code>type could be : images, documents or videos.</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","get_item_documents"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eebd0799-da2f-4535-a31a-0bdf39ab4749"},{"name":"catalogs","event":[{"listen":"test","script":{"id":"b2a83c83-5497-40e1-b622-3501945d5370","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"1e84ef74-aed3-49af-891c-f951abc3eeed","exec":["pm.variables.set(\"schema\", {\r","    \"type\": \"array\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\":  [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"disabled\",\r","                    \"id\",\r","                    \"name\",\r","                    \"primary\"\r","                ],\r","                \"properties\": {\r","                    \"disabled\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/disabled\",\r","                        \"type\": \"boolean\",\r","                        \"default\": false\r","                    },\r","                    \"id\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/id\",\r","                        \"type\": [\"string\", \"null\"],\r","                        \"default\": null\r","                    },\r","                    \"name\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/name\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"primary\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/primary\",\r","                        \"type\": \"boolean\",\r","                        \"default\": false\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","});"],"type":"text/javascript"}}],"id":"8836a7a9-2f71-a6df-e66c-ecd68a9e83be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/catalog.svc/catalogs","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","catalogs"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8836a7a9-2f71-a6df-e66c-ecd68a9e83be"},{"name":"categories","event":[{"listen":"test","script":{"id":"86085fc0-4fe2-4b3c-af14-f646db0ad3a1","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"bd8f1c87-6b27-4d50-9f57-22a8b1a9fe05","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"title\": \"The first anyOf schema\",\r","                \"description\": \"An explanation about the purpose of this instance.\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"category_id\",\r","                    \"category_name\"\r","                ],\r","                \"properties\": {\r","                    \"category_id\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/category_id\",\r","                        \"type\": \"string\",\r","                        \"title\": \"The category_id schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": \"\"\r","                    },\r","                    \"category_name\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/category_name\",\r","                        \"type\": \"string\",\r","                        \"title\": \"The category_name schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": \"\"\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"6360feca-34c4-4ca7-89eb-5ef33089f1ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/catalog.svc/categories","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","categories"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6360feca-34c4-4ca7-89eb-5ef33089f1ab"},{"name":"families","event":[{"listen":"test","script":{"id":"9b132266-fa13-4fef-a3c7-78252f1d0ba2","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e0233373-3d9e-4e47-ad7b-64b6938da790","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"title\": \"The first anyOf schema\",\r","                \"description\": \"An explanation about the purpose of this instance.\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"family_id\",\r","                    \"family_name\",\r","                    \"family_sub_id\",\r","                    \"family_sub_name\"\r","                ],\r","                \"properties\": {\r","                    \"family_id\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/family_id\",\r","                        \"type\": \"string\",\r","                        \"title\": \"The family_id schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": \"\"\r","                    },\r","                    \"family_name\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/family_name\",\r","                        \"type\": \"string\",\r","                        \"title\": \"The family_name schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": \"\"\r","                    },\r","                    \"family_sub_id\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/family_sub_id\",\r","                        \"type\": \"string\",\r","                        \"title\": \"The family_sub_id schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": \"\"\r","                    },\r","                    \"family_sub_name\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/family_sub_name\",\r","                        \"type\": \"string\",\r","                        \"title\": \"The family_sub_name schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": \"\"\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"4e46bb23-c9c8-4079-8d87-df05681d0771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/catalog.svc/families","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","families"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e46bb23-c9c8-4079-8d87-df05681d0771"},{"name":"units","event":[{"listen":"test","script":{"id":"dc328669-1d69-4568-be5d-644f3f380d7f","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c418f80f-4d0f-4f16-9bb9-87441da61994","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_units_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_units_Result\": {\r","            \"$id\": \"#/properties/_GET_units_Result\",\r","            \"type\": \"array\",\r","            \"title\": \"The _GET_units_Result schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_GET_units_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_GET_units_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"abbreviation\",\r","                            \"detailed\",\r","                            \"id\",\r","                            \"name\",\r","                            \"round\"\r","                        ],\r","                        \"properties\": {\r","                            \"abbreviation\": {\r","                                \"$id\": \"#/properties/_GET_units_Result/items/anyOf/0/properties/abbreviation\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The abbreviation schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"detailed\": {\r","                                \"$id\": \"#/properties/_GET_units_Result/items/anyOf/0/properties/detailed\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The detailed schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/_GET_units_Result/items/anyOf/0/properties/id\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/_GET_units_Result/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"round\": {\r","                                \"$id\": \"#/properties/_GET_units_Result/items/anyOf/0/properties/round\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The round schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"d73e9ed1-3b63-4179-bb46-41a5b235c5c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/catalog.svc/units","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","units"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d73e9ed1-3b63-4179-bb46-41a5b235c5c6"},{"name":"allergens","event":[{"listen":"test","script":{"id":"dde0eb42-5351-4736-886c-b7f740d8063d","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"6f05aebf-98e9-4101-a16e-6a749757f983","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LOAD_allergens_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LOAD_allergens_Result\": {\r","            \"$id\": \"#/properties/_LOAD_allergens_Result\",\r","            \"type\": \"array\",\r","            \"title\": \"The _LOAD_allergens_Result schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LOAD_allergens_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LOAD_allergens_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"description\",\r","                            \"exclusion\",\r","                            \"id\",\r","                            \"name\",\r","                            \"original_name\",\r","                            \"reference\"\r","                        ],\r","                        \"properties\": {\r","                            \"description\": {\r","                                \"$id\": \"#/properties/_LOAD_allergens_Result/items/anyOf/0/properties/description\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The description schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"exclusion\": {\r","                                \"$id\": \"#/properties/_LOAD_allergens_Result/items/anyOf/0/properties/exclusion\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The exclusion schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/_LOAD_allergens_Result/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/_LOAD_allergens_Result/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"original_name\": {\r","                                \"$id\": \"#/properties/_LOAD_allergens_Result/items/anyOf/0/properties/original_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The original_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/_LOAD_allergens_Result/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The reference schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"00e627aa-051d-486e-8faf-d58386a0dc16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/catalog.svc/allergens","description":"<p>(with Caterer module only)</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["catalog.svc","allergens"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"00e627aa-051d-486e-8faf-d58386a0dc16"}],"id":"593f2fe6-03b7-b575-59f2-5f88d8871fd2","_postman_id":"593f2fe6-03b7-b575-59f2-5f88d8871fd2","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"CONTACT","item":[{"name":"[model] CLIENT","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"addresses\",\r","        \"communication\",\r","        \"contacts\",\r","        \"currency\",\r","        \"folder\",\r","        \"id\",\r","        \"language\",\r","        \"list_id\",\r","        \"notes\",\r","        \"organisation\",\r","        \"organisation_information\",\r","        \"particular\",\r","        \"preference\",\r","        \"reference\",\r","        \"send_by_email\",\r","        \"send_by_post\",\r","        \"smarttags\"\r","    ],\r","    \"properties\": {\r","        \"addresses\": {\r","            \"$id\": \"#/properties/addresses\",\r","            \"type\": \"array\",\r","            \"title\": \"The addresses schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/addresses/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/addresses/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"city\",\r","                            \"country\",\r","                            \"id\",\r","                            \"name\",\r","                            \"principal\",\r","                            \"state\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"target_delivery\",\r","                            \"target_invoice\",\r","                            \"tradename\",\r","                            \"zipcode\"\r","                        ],\r","                        \"properties\": {\r","                            \"city\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The city schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The country schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"target_delivery\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_delivery\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_delivery schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"target_invoice\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_invoice\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_invoice schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The tradename schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The zipcode schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"communication\": {\r","            \"$id\": \"#/properties/communication\",\r","            \"type\": \"null\",\r","            \"title\": \"The communication schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": null\r","        },\r","        \"contacts\": {\r","            \"$id\": \"#/properties/contacts\",\r","            \"type\": \"array\",\r","            \"title\": \"The contacts schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/contacts/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/contacts/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"email\",\r","                            \"fax\",\r","                            \"first_name\",\r","                            \"id\",\r","                            \"jobtitle\",\r","                            \"last_name\",\r","                            \"middle_name\",\r","                            \"mobile\",\r","                            \"phone\",\r","                            \"principal\",\r","                            \"suffix\",\r","                            \"title\"\r","                        ],\r","                        \"properties\": {\r","                            \"email\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"fax\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/fax\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The fax schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"first_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/first_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The first_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"jobtitle\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/jobtitle\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The jobtitle schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"last_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/last_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The last_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"middle_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/middle_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The middle_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"mobile\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/mobile\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The mobile schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"phone\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/phone\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The phone schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"suffix\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/suffix\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The suffix schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"title\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/title\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The title schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"currency\": {\r","            \"$id\": \"#/properties/currency\",\r","            \"type\": \"integer\",\r","            \"title\": \"The currency schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"folder\": {\r","            \"$id\": \"#/properties/folder\",\r","            \"type\": \"integer\",\r","            \"title\": \"The folder schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"language\": {\r","            \"$id\": \"#/properties/language\",\r","            \"type\": \"string\",\r","            \"title\": \"The language schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"list_id\": {\r","            \"$id\": \"#/properties/list_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The list_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"notes\": {\r","            \"$id\": \"#/properties/notes\",\r","            \"type\": \"string\",\r","            \"title\": \"The notes schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"organisation\": {\r","            \"$id\": \"#/properties/organisation\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"currency\",\r","                \"information\",\r","                \"interneturl\",\r","                \"name\",\r","                \"phone_business\",\r","                \"phone_fax\",\r","                \"phone_mobile\",\r","                \"vattaxname\",\r","                \"vattaxnumber\"\r","            ],\r","            \"properties\": {\r","                \"currency\": {\r","                    \"$id\": \"#/properties/organisation/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The currency schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/organisation/properties/information\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The information schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"country\",\r","                        \"data\"\r","                    ],\r","                    \"properties\": {\r","                        \"country\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/country\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The country schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"data\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/data\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The data schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/organisation/properties/information/properties/data/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"interneturl\": {\r","                    \"$id\": \"#/properties/organisation/properties/interneturl\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The interneturl schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/organisation/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_business\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_business\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_business schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_fax\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_fax\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_fax schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_mobile\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_mobile\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_mobile schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxname\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxname\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxname schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxnumber\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxnumber\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxnumber schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"organisation_information\": {\r","            \"$id\": \"#/properties/organisation_information\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation_information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"country\",\r","                \"data\"\r","            ],\r","            \"properties\": {\r","                \"country\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/country\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The country schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/data\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The data schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/organisation_information/properties/data/items\"\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"particular\": {\r","            \"$id\": \"#/properties/particular\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The particular schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"preference\": {\r","            \"$id\": \"#/properties/preference\",\r","            \"type\": \"object\",\r","            \"title\": \"The preference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"billing_eom_only\",\r","                \"catalog_id\",\r","                \"discount\",\r","                \"discount_type\",\r","                \"document_template\",\r","                \"duedate\",\r","                \"validity\"\r","            ],\r","            \"properties\": {\r","                \"billing_eom_only\": {\r","                    \"$id\": \"#/properties/preference/properties/billing_eom_only\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The billing_eom_only schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"catalog_id\": {\r","                    \"$id\": \"#/properties/preference/properties/catalog_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The catalog_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/preference/properties/discount\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"discount_type\": {\r","                    \"$id\": \"#/properties/preference/properties/discount_type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount_type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"document_template\": {\r","                    \"$id\": \"#/properties/preference/properties/document_template\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The document_template schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/preference/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The duedate schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"days\",\r","                        \"decade\",\r","                        \"eom\",\r","                        \"installment\",\r","                        \"xdate\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The choice schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The decade schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The eom schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The installment schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The xdate schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/preference/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The validity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"reference\": {\r","            \"$id\": \"#/properties/reference\",\r","            \"type\": \"string\",\r","            \"title\": \"The reference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"send_by_email\": {\r","            \"$id\": \"#/properties/send_by_email\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"send_by_post\": {\r","            \"$id\": \"#/properties/send_by_post\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_post schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"smarttags\": {\r","            \"$id\": \"#/properties/smarttags\",\r","            \"type\": \"array\",\r","            \"title\": \"The smarttags schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/smarttags/items\"\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"3d182d0a-82ac-4173-a658-f30b3d992239","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/contact.svc/model/client","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","model","client"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d182d0a-82ac-4173-a658-f30b3d992239"},{"name":"[model] COMPANY","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"addresses\",\r","        \"communication\",\r","        \"contacts\",\r","        \"currency\",\r","        \"folder\",\r","        \"id\",\r","        \"language\",\r","        \"list_id\",\r","        \"notes\",\r","        \"organisation\",\r","        \"organisation_information\",\r","        \"particular\",\r","        \"preference\",\r","        \"reference\",\r","        \"send_by_email\",\r","        \"send_by_post\",\r","        \"smarttags\"\r","    ],\r","    \"properties\": {\r","        \"addresses\": {\r","            \"$id\": \"#/properties/addresses\",\r","            \"type\": \"array\",\r","            \"title\": \"The addresses schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/addresses/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/addresses/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"city\",\r","                            \"country\",\r","                            \"id\",\r","                            \"name\",\r","                            \"principal\",\r","                            \"state\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"target_delivery\",\r","                            \"target_invoice\",\r","                            \"tradename\",\r","                            \"zipcode\"\r","                        ],\r","                        \"properties\": {\r","                            \"city\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The city schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The country schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"target_delivery\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_delivery\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_delivery schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"target_invoice\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_invoice\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_invoice schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The tradename schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The zipcode schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"communication\": {\r","            \"$id\": \"#/properties/communication\",\r","            \"type\": \"null\",\r","            \"title\": \"The communication schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": null\r","        },\r","        \"contacts\": {\r","            \"$id\": \"#/properties/contacts\",\r","            \"type\": \"array\",\r","            \"title\": \"The contacts schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/contacts/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/contacts/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"email\",\r","                            \"fax\",\r","                            \"first_name\",\r","                            \"id\",\r","                            \"jobtitle\",\r","                            \"last_name\",\r","                            \"middle_name\",\r","                            \"mobile\",\r","                            \"phone\",\r","                            \"principal\",\r","                            \"suffix\",\r","                            \"title\"\r","                        ],\r","                        \"properties\": {\r","                            \"email\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"fax\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/fax\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The fax schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"first_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/first_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The first_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"jobtitle\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/jobtitle\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The jobtitle schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"last_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/last_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The last_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"middle_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/middle_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The middle_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"mobile\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/mobile\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The mobile schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"phone\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/phone\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The phone schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"suffix\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/suffix\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The suffix schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"title\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/title\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The title schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"currency\": {\r","            \"$id\": \"#/properties/currency\",\r","            \"type\": \"integer\",\r","            \"title\": \"The currency schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"folder\": {\r","            \"$id\": \"#/properties/folder\",\r","            \"type\": \"integer\",\r","            \"title\": \"The folder schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"language\": {\r","            \"$id\": \"#/properties/language\",\r","            \"type\": \"string\",\r","            \"title\": \"The language schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"list_id\": {\r","            \"$id\": \"#/properties/list_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The list_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"notes\": {\r","            \"$id\": \"#/properties/notes\",\r","            \"type\": \"string\",\r","            \"title\": \"The notes schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"organisation\": {\r","            \"$id\": \"#/properties/organisation\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"currency\",\r","                \"information\",\r","                \"interneturl\",\r","                \"name\",\r","                \"phone_business\",\r","                \"phone_fax\",\r","                \"phone_mobile\",\r","                \"vattaxname\",\r","                \"vattaxnumber\"\r","            ],\r","            \"properties\": {\r","                \"currency\": {\r","                    \"$id\": \"#/properties/organisation/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The currency schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/organisation/properties/information\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The information schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"country\",\r","                        \"data\"\r","                    ],\r","                    \"properties\": {\r","                        \"country\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/country\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The country schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"data\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/data\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The data schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/organisation/properties/information/properties/data/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"interneturl\": {\r","                    \"$id\": \"#/properties/organisation/properties/interneturl\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The interneturl schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/organisation/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_business\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_business\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_business schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_fax\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_fax\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_fax schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_mobile\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_mobile\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_mobile schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxname\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxname\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxname schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxnumber\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxnumber\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxnumber schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"organisation_information\": {\r","            \"$id\": \"#/properties/organisation_information\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation_information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"country\",\r","                \"data\"\r","            ],\r","            \"properties\": {\r","                \"country\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/country\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The country schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/data\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The data schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/organisation_information/properties/data/items\"\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"particular\": {\r","            \"$id\": \"#/properties/particular\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The particular schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"preference\": {\r","            \"$id\": \"#/properties/preference\",\r","            \"type\": \"object\",\r","            \"title\": \"The preference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"billing_eom_only\",\r","                \"catalog_id\",\r","                \"discount\",\r","                \"discount_type\",\r","                \"document_template\",\r","                \"duedate\",\r","                \"validity\"\r","            ],\r","            \"properties\": {\r","                \"billing_eom_only\": {\r","                    \"$id\": \"#/properties/preference/properties/billing_eom_only\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The billing_eom_only schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"catalog_id\": {\r","                    \"$id\": \"#/properties/preference/properties/catalog_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The catalog_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/preference/properties/discount\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"discount_type\": {\r","                    \"$id\": \"#/properties/preference/properties/discount_type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount_type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"document_template\": {\r","                    \"$id\": \"#/properties/preference/properties/document_template\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The document_template schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/preference/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The duedate schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"days\",\r","                        \"decade\",\r","                        \"eom\",\r","                        \"installment\",\r","                        \"xdate\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The choice schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The decade schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The eom schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The installment schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The xdate schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/preference/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The validity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"reference\": {\r","            \"$id\": \"#/properties/reference\",\r","            \"type\": \"string\",\r","            \"title\": \"The reference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"send_by_email\": {\r","            \"$id\": \"#/properties/send_by_email\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"send_by_post\": {\r","            \"$id\": \"#/properties/send_by_post\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_post schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"smarttags\": {\r","            \"$id\": \"#/properties/smarttags\",\r","            \"type\": \"array\",\r","            \"title\": \"The smarttags schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/smarttags/items\"\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"16b464ed-4b69-4498-9245-9ee60005d214","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/contact.svc/model/company","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","model","company"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"16b464ed-4b69-4498-9245-9ee60005d214"},{"name":"[model] ADDRESS","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"addresses\",\r","        \"communication\",\r","        \"contacts\",\r","        \"currency\",\r","        \"folder\",\r","        \"id\",\r","        \"language\",\r","        \"list_id\",\r","        \"notes\",\r","        \"organisation\",\r","        \"organisation_information\",\r","        \"particular\",\r","        \"preference\",\r","        \"reference\",\r","        \"send_by_email\",\r","        \"send_by_post\",\r","        \"smarttags\"\r","    ],\r","    \"properties\": {\r","        \"addresses\": {\r","            \"$id\": \"#/properties/addresses\",\r","            \"type\": \"array\",\r","            \"title\": \"The addresses schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/addresses/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/addresses/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"city\",\r","                            \"country\",\r","                            \"id\",\r","                            \"name\",\r","                            \"principal\",\r","                            \"state\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"target_delivery\",\r","                            \"target_invoice\",\r","                            \"tradename\",\r","                            \"zipcode\"\r","                        ],\r","                        \"properties\": {\r","                            \"city\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The city schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The country schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"target_delivery\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_delivery\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_delivery schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"target_invoice\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_invoice\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_invoice schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The tradename schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The zipcode schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"communication\": {\r","            \"$id\": \"#/properties/communication\",\r","            \"type\": \"null\",\r","            \"title\": \"The communication schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": null\r","        },\r","        \"contacts\": {\r","            \"$id\": \"#/properties/contacts\",\r","            \"type\": \"array\",\r","            \"title\": \"The contacts schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/contacts/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/contacts/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"email\",\r","                            \"fax\",\r","                            \"first_name\",\r","                            \"id\",\r","                            \"jobtitle\",\r","                            \"last_name\",\r","                            \"middle_name\",\r","                            \"mobile\",\r","                            \"phone\",\r","                            \"principal\",\r","                            \"suffix\",\r","                            \"title\"\r","                        ],\r","                        \"properties\": {\r","                            \"email\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"fax\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/fax\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The fax schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"first_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/first_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The first_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"jobtitle\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/jobtitle\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The jobtitle schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"last_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/last_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The last_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"middle_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/middle_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The middle_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"mobile\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/mobile\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The mobile schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"phone\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/phone\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The phone schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"suffix\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/suffix\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The suffix schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"title\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/title\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The title schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"currency\": {\r","            \"$id\": \"#/properties/currency\",\r","            \"type\": \"integer\",\r","            \"title\": \"The currency schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"folder\": {\r","            \"$id\": \"#/properties/folder\",\r","            \"type\": \"integer\",\r","            \"title\": \"The folder schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"language\": {\r","            \"$id\": \"#/properties/language\",\r","            \"type\": \"string\",\r","            \"title\": \"The language schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"list_id\": {\r","            \"$id\": \"#/properties/list_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The list_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"notes\": {\r","            \"$id\": \"#/properties/notes\",\r","            \"type\": \"string\",\r","            \"title\": \"The notes schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"organisation\": {\r","            \"$id\": \"#/properties/organisation\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"currency\",\r","                \"information\",\r","                \"interneturl\",\r","                \"name\",\r","                \"phone_business\",\r","                \"phone_fax\",\r","                \"phone_mobile\",\r","                \"vattaxname\",\r","                \"vattaxnumber\"\r","            ],\r","            \"properties\": {\r","                \"currency\": {\r","                    \"$id\": \"#/properties/organisation/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The currency schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/organisation/properties/information\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The information schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"country\",\r","                        \"data\"\r","                    ],\r","                    \"properties\": {\r","                        \"country\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/country\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The country schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"data\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/data\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The data schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/organisation/properties/information/properties/data/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"interneturl\": {\r","                    \"$id\": \"#/properties/organisation/properties/interneturl\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The interneturl schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/organisation/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_business\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_business\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_business schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_fax\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_fax\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_fax schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_mobile\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_mobile\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_mobile schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxname\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxname\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxname schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxnumber\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxnumber\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxnumber schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"organisation_information\": {\r","            \"$id\": \"#/properties/organisation_information\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation_information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"country\",\r","                \"data\"\r","            ],\r","            \"properties\": {\r","                \"country\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/country\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The country schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/data\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The data schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/organisation_information/properties/data/items\"\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"particular\": {\r","            \"$id\": \"#/properties/particular\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The particular schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"preference\": {\r","            \"$id\": \"#/properties/preference\",\r","            \"type\": \"object\",\r","            \"title\": \"The preference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"billing_eom_only\",\r","                \"catalog_id\",\r","                \"discount\",\r","                \"discount_type\",\r","                \"document_template\",\r","                \"duedate\",\r","                \"validity\"\r","            ],\r","            \"properties\": {\r","                \"billing_eom_only\": {\r","                    \"$id\": \"#/properties/preference/properties/billing_eom_only\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The billing_eom_only schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"catalog_id\": {\r","                    \"$id\": \"#/properties/preference/properties/catalog_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The catalog_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/preference/properties/discount\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"discount_type\": {\r","                    \"$id\": \"#/properties/preference/properties/discount_type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount_type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"document_template\": {\r","                    \"$id\": \"#/properties/preference/properties/document_template\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The document_template schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/preference/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The duedate schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"days\",\r","                        \"decade\",\r","                        \"eom\",\r","                        \"installment\",\r","                        \"xdate\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The choice schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The decade schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The eom schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The installment schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The xdate schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/preference/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The validity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"reference\": {\r","            \"$id\": \"#/properties/reference\",\r","            \"type\": \"string\",\r","            \"title\": \"The reference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"send_by_email\": {\r","            \"$id\": \"#/properties/send_by_email\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"send_by_post\": {\r","            \"$id\": \"#/properties/send_by_post\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_post schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"smarttags\": {\r","            \"$id\": \"#/properties/smarttags\",\r","            \"type\": \"array\",\r","            \"title\": \"The smarttags schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/smarttags/items\"\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"15bbbaf1-2bda-453b-bcbe-bcaa51887f4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/contact.svc/model/address","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","model","address"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15bbbaf1-2bda-453b-bcbe-bcaa51887f4e"},{"name":"[model] CONTACT","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"addresses\",\r","        \"communication\",\r","        \"contacts\",\r","        \"currency\",\r","        \"folder\",\r","        \"id\",\r","        \"language\",\r","        \"list_id\",\r","        \"notes\",\r","        \"organisation\",\r","        \"organisation_information\",\r","        \"particular\",\r","        \"preference\",\r","        \"reference\",\r","        \"send_by_email\",\r","        \"send_by_post\",\r","        \"smarttags\"\r","    ],\r","    \"properties\": {\r","        \"addresses\": {\r","            \"$id\": \"#/properties/addresses\",\r","            \"type\": \"array\",\r","            \"title\": \"The addresses schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/addresses/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/addresses/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"city\",\r","                            \"country\",\r","                            \"id\",\r","                            \"name\",\r","                            \"principal\",\r","                            \"state\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"target_delivery\",\r","                            \"target_invoice\",\r","                            \"tradename\",\r","                            \"zipcode\"\r","                        ],\r","                        \"properties\": {\r","                            \"city\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The city schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The country schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"target_delivery\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_delivery\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_delivery schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"target_invoice\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_invoice\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_invoice schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The tradename schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The zipcode schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"communication\": {\r","            \"$id\": \"#/properties/communication\",\r","            \"type\": \"null\",\r","            \"title\": \"The communication schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": null\r","        },\r","        \"contacts\": {\r","            \"$id\": \"#/properties/contacts\",\r","            \"type\": \"array\",\r","            \"title\": \"The contacts schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/contacts/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/contacts/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"email\",\r","                            \"fax\",\r","                            \"first_name\",\r","                            \"id\",\r","                            \"jobtitle\",\r","                            \"last_name\",\r","                            \"middle_name\",\r","                            \"mobile\",\r","                            \"phone\",\r","                            \"principal\",\r","                            \"suffix\",\r","                            \"title\"\r","                        ],\r","                        \"properties\": {\r","                            \"email\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"fax\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/fax\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The fax schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"first_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/first_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The first_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"jobtitle\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/jobtitle\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The jobtitle schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"last_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/last_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The last_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"middle_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/middle_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The middle_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"mobile\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/mobile\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The mobile schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"phone\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/phone\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The phone schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"suffix\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/suffix\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The suffix schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"title\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/title\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The title schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"currency\": {\r","            \"$id\": \"#/properties/currency\",\r","            \"type\": \"integer\",\r","            \"title\": \"The currency schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"folder\": {\r","            \"$id\": \"#/properties/folder\",\r","            \"type\": \"integer\",\r","            \"title\": \"The folder schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"language\": {\r","            \"$id\": \"#/properties/language\",\r","            \"type\": \"string\",\r","            \"title\": \"The language schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"list_id\": {\r","            \"$id\": \"#/properties/list_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The list_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"notes\": {\r","            \"$id\": \"#/properties/notes\",\r","            \"type\": \"string\",\r","            \"title\": \"The notes schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"organisation\": {\r","            \"$id\": \"#/properties/organisation\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"currency\",\r","                \"information\",\r","                \"interneturl\",\r","                \"name\",\r","                \"phone_business\",\r","                \"phone_fax\",\r","                \"phone_mobile\",\r","                \"vattaxname\",\r","                \"vattaxnumber\"\r","            ],\r","            \"properties\": {\r","                \"currency\": {\r","                    \"$id\": \"#/properties/organisation/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The currency schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/organisation/properties/information\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The information schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"country\",\r","                        \"data\"\r","                    ],\r","                    \"properties\": {\r","                        \"country\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/country\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The country schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"data\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/data\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The data schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/organisation/properties/information/properties/data/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"interneturl\": {\r","                    \"$id\": \"#/properties/organisation/properties/interneturl\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The interneturl schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/organisation/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_business\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_business\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_business schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_fax\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_fax\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_fax schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_mobile\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_mobile\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_mobile schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxname\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxname\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxname schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxnumber\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxnumber\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxnumber schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"organisation_information\": {\r","            \"$id\": \"#/properties/organisation_information\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation_information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"country\",\r","                \"data\"\r","            ],\r","            \"properties\": {\r","                \"country\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/country\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The country schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/data\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The data schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/organisation_information/properties/data/items\"\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"particular\": {\r","            \"$id\": \"#/properties/particular\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The particular schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"preference\": {\r","            \"$id\": \"#/properties/preference\",\r","            \"type\": \"object\",\r","            \"title\": \"The preference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"billing_eom_only\",\r","                \"catalog_id\",\r","                \"discount\",\r","                \"discount_type\",\r","                \"document_template\",\r","                \"duedate\",\r","                \"validity\"\r","            ],\r","            \"properties\": {\r","                \"billing_eom_only\": {\r","                    \"$id\": \"#/properties/preference/properties/billing_eom_only\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The billing_eom_only schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"catalog_id\": {\r","                    \"$id\": \"#/properties/preference/properties/catalog_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The catalog_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/preference/properties/discount\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"discount_type\": {\r","                    \"$id\": \"#/properties/preference/properties/discount_type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount_type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"document_template\": {\r","                    \"$id\": \"#/properties/preference/properties/document_template\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The document_template schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/preference/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The duedate schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"days\",\r","                        \"decade\",\r","                        \"eom\",\r","                        \"installment\",\r","                        \"xdate\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The choice schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The decade schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The eom schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The installment schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The xdate schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/preference/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The validity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"reference\": {\r","            \"$id\": \"#/properties/reference\",\r","            \"type\": \"string\",\r","            \"title\": \"The reference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"send_by_email\": {\r","            \"$id\": \"#/properties/send_by_email\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"send_by_post\": {\r","            \"$id\": \"#/properties/send_by_post\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_post schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"smarttags\": {\r","            \"$id\": \"#/properties/smarttags\",\r","            \"type\": \"array\",\r","            \"title\": \"The smarttags schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/smarttags/items\"\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"89b6a03a-baeb-4f01-a68e-d82b995edc36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/contact.svc/model/contact","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","model","contact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"89b6a03a-baeb-4f01-a68e-d82b995edc36"},{"name":"[enum] TYPE","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"addresses\",\r","        \"communication\",\r","        \"contacts\",\r","        \"currency\",\r","        \"folder\",\r","        \"id\",\r","        \"language\",\r","        \"list_id\",\r","        \"notes\",\r","        \"organisation\",\r","        \"organisation_information\",\r","        \"particular\",\r","        \"preference\",\r","        \"reference\",\r","        \"send_by_email\",\r","        \"send_by_post\",\r","        \"smarttags\"\r","    ],\r","    \"properties\": {\r","        \"addresses\": {\r","            \"$id\": \"#/properties/addresses\",\r","            \"type\": \"array\",\r","            \"title\": \"The addresses schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/addresses/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/addresses/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"city\",\r","                            \"country\",\r","                            \"id\",\r","                            \"name\",\r","                            \"principal\",\r","                            \"state\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"target_delivery\",\r","                            \"target_invoice\",\r","                            \"tradename\",\r","                            \"zipcode\"\r","                        ],\r","                        \"properties\": {\r","                            \"city\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The city schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The country schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"target_delivery\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_delivery\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_delivery schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"target_invoice\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_invoice\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_invoice schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The tradename schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The zipcode schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"communication\": {\r","            \"$id\": \"#/properties/communication\",\r","            \"type\": \"null\",\r","            \"title\": \"The communication schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": null\r","        },\r","        \"contacts\": {\r","            \"$id\": \"#/properties/contacts\",\r","            \"type\": \"array\",\r","            \"title\": \"The contacts schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/contacts/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/contacts/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"email\",\r","                            \"fax\",\r","                            \"first_name\",\r","                            \"id\",\r","                            \"jobtitle\",\r","                            \"last_name\",\r","                            \"middle_name\",\r","                            \"mobile\",\r","                            \"phone\",\r","                            \"principal\",\r","                            \"suffix\",\r","                            \"title\"\r","                        ],\r","                        \"properties\": {\r","                            \"email\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"fax\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/fax\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The fax schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"first_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/first_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The first_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"jobtitle\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/jobtitle\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The jobtitle schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"last_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/last_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The last_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"middle_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/middle_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The middle_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"mobile\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/mobile\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The mobile schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"phone\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/phone\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The phone schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"suffix\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/suffix\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The suffix schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"title\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/title\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The title schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"currency\": {\r","            \"$id\": \"#/properties/currency\",\r","            \"type\": \"integer\",\r","            \"title\": \"The currency schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"folder\": {\r","            \"$id\": \"#/properties/folder\",\r","            \"type\": \"integer\",\r","            \"title\": \"The folder schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"language\": {\r","            \"$id\": \"#/properties/language\",\r","            \"type\": \"string\",\r","            \"title\": \"The language schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"list_id\": {\r","            \"$id\": \"#/properties/list_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The list_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"notes\": {\r","            \"$id\": \"#/properties/notes\",\r","            \"type\": \"string\",\r","            \"title\": \"The notes schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"organisation\": {\r","            \"$id\": \"#/properties/organisation\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"currency\",\r","                \"information\",\r","                \"interneturl\",\r","                \"name\",\r","                \"phone_business\",\r","                \"phone_fax\",\r","                \"phone_mobile\",\r","                \"vattaxname\",\r","                \"vattaxnumber\"\r","            ],\r","            \"properties\": {\r","                \"currency\": {\r","                    \"$id\": \"#/properties/organisation/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The currency schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/organisation/properties/information\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The information schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"country\",\r","                        \"data\"\r","                    ],\r","                    \"properties\": {\r","                        \"country\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/country\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The country schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"data\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/data\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The data schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/organisation/properties/information/properties/data/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"interneturl\": {\r","                    \"$id\": \"#/properties/organisation/properties/interneturl\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The interneturl schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/organisation/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_business\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_business\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_business schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_fax\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_fax\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_fax schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_mobile\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_mobile\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_mobile schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxname\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxname\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxname schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxnumber\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxnumber\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxnumber schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"organisation_information\": {\r","            \"$id\": \"#/properties/organisation_information\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation_information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"country\",\r","                \"data\"\r","            ],\r","            \"properties\": {\r","                \"country\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/country\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The country schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/data\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The data schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/organisation_information/properties/data/items\"\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"particular\": {\r","            \"$id\": \"#/properties/particular\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The particular schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"preference\": {\r","            \"$id\": \"#/properties/preference\",\r","            \"type\": \"object\",\r","            \"title\": \"The preference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"billing_eom_only\",\r","                \"catalog_id\",\r","                \"discount\",\r","                \"discount_type\",\r","                \"document_template\",\r","                \"duedate\",\r","                \"validity\"\r","            ],\r","            \"properties\": {\r","                \"billing_eom_only\": {\r","                    \"$id\": \"#/properties/preference/properties/billing_eom_only\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The billing_eom_only schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"catalog_id\": {\r","                    \"$id\": \"#/properties/preference/properties/catalog_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The catalog_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/preference/properties/discount\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"discount_type\": {\r","                    \"$id\": \"#/properties/preference/properties/discount_type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount_type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"document_template\": {\r","                    \"$id\": \"#/properties/preference/properties/document_template\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The document_template schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/preference/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The duedate schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"days\",\r","                        \"decade\",\r","                        \"eom\",\r","                        \"installment\",\r","                        \"xdate\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The choice schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The decade schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The eom schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The installment schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The xdate schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/preference/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The validity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"reference\": {\r","            \"$id\": \"#/properties/reference\",\r","            \"type\": \"string\",\r","            \"title\": \"The reference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"send_by_email\": {\r","            \"$id\": \"#/properties/send_by_email\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"send_by_post\": {\r","            \"$id\": \"#/properties/send_by_post\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_post schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"smarttags\": {\r","            \"$id\": \"#/properties/smarttags\",\r","            \"type\": \"array\",\r","            \"title\": \"The smarttags schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/smarttags/items\"\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"001f2379-f0e2-4369-b1f8-14b7b0a32969","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/contact.svc/enum/type","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","enum","type"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"001f2379-f0e2-4369-b1f8-14b7b0a32969"},{"name":"list companies","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":["let jsonData = JSON.parse(pm.response.json());\r","console.log(jsonData)"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", \"\"\r",");"],"type":"text/javascript"}}],"id":"88211dbc-4093-44c2-b3c1-68afd2d9aab1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{url}}/contact.svc/list/company","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","list","company"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"88211dbc-4093-44c2-b3c1-68afd2d9aab1"},{"name":"list contacts","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":["let jsonData = JSON.parse(pm.response.json());\r","console.log(jsonData)"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", \"\"\r",");"],"type":"text/javascript"}}],"id":"21591749-fae9-4afd-8f6a-cfebd7b408f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{url}}/contact.svc/list/contact","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","list","contact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21591749-fae9-4afd-8f6a-cfebd7b408f6"},{"name":"get_contact (COMPANY)","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", {\r","     \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"metadata\",\r","        \"type\",\r","        \"account_id\",\r","        \"parent_account\",\r","        \"reference\",\r","        \"owner\",\r","        \"account_name\",\r","        \"email\",\r","        \"deleted\",\r","        \"archive\",\r","        \"information\",\r","        \"clients\",\r","        \"addresses\",\r","        \"social\",\r","        \"preferences\",\r","        \"delivery\",\r","        \"customfields\",\r","        \"communication\",\r","        \"created_at\",\r","        \"updated_at\"\r","    ],\r","    \"properties\": {\r","        \"metadata\": {\r","            \"$id\": \"#/properties/metadata\",\r","            \"type\": \"string\",\r","            \"title\": \"The metadata schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"type\": {\r","            \"$id\": \"#/properties/type\",\r","            \"type\": \"integer\",\r","            \"title\": \"The type schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"account_id\": {\r","            \"$id\": \"#/properties/account_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The account_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"parent_account\": {\r","            \"$id\": \"#/properties/parent_account\",\r","            \"type\": \"object\",\r","            \"title\": \"The parent_account schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"id\",\r","                \"text\",\r","                \"reference\"\r","            ],\r","            \"properties\": {\r","                \"id\": {\r","                    \"$id\": \"#/properties/parent_account/properties/id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"text\": {\r","                    \"$id\": \"#/properties/parent_account/properties/text\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The text schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"reference\": {\r","                    \"$id\": \"#/properties/parent_account/properties/reference\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The reference schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"reference\": {\r","            \"$id\": \"#/properties/reference\",\r","            \"type\": \"string\",\r","            \"title\": \"The reference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"owner\": {\r","            \"$id\": \"#/properties/owner\",\r","            \"type\": \"object\",\r","            \"title\": \"The owner schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"id\",\r","                \"name\",\r","                \"initiale\"\r","            ],\r","            \"properties\": {\r","                \"id\": {\r","                    \"$id\": \"#/properties/owner/properties/id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/owner/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"initiale\": {\r","                    \"$id\": \"#/properties/owner/properties/initiale\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The initiale schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"account_name\": {\r","            \"$id\": \"#/properties/account_name\",\r","            \"type\": \"string\",\r","            \"title\": \"The account_name schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"email\": {\r","            \"$id\": \"#/properties/email\",\r","            \"type\": \"string\",\r","            \"title\": \"The email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"deleted\": {\r","            \"$id\": \"#/properties/deleted\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The deleted schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"archive\": {\r","            \"$id\": \"#/properties/archive\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The archive schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"information\": {\r","            \"$id\": \"#/properties/information\",\r","            \"type\": \"object\",\r","            \"title\": \"The information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [],\r","            \"additionalProperties\": true\r","        },\r","        \"clients\": {\r","            \"$id\": \"#/properties/clients\",\r","            \"type\": \"array\",\r","            \"title\": \"The clients schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/clients/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/clients/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"metadata\",\r","                            \"type\",\r","                            \"client_id\",\r","                            \"parent_account\",\r","                            \"reference\",\r","                            \"owner\",\r","                            \"primary\",\r","                            \"name\",\r","                            \"used_for_billing\",\r","                            \"used_for_mailing\",\r","                            \"used_for_shipping\",\r","                            \"used_for_other\",\r","                            \"email\",\r","                            \"deleted\",\r","                            \"archive\",\r","                            \"information\",\r","                            \"addresses\",\r","                            \"social\",\r","                            \"customfields\",\r","                            \"created_at\",\r","                            \"updated_at\"\r","                        ],\r","                        \"properties\": {\r","                            \"metadata\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/metadata\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The metadata schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"type\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/type\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The type schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"client_id\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/client_id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The client_id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"parent_account\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/parent_account\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The parent_account schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"id\",\r","                                    \"text\",\r","                                    \"reference\"\r","                                ],\r","                                \"properties\": {\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/parent_account/properties/id\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The id schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"text\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/parent_account/properties/text\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The text schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"reference\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/parent_account/properties/reference\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The reference schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The reference schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"owner\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/owner\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The owner schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"id\",\r","                                    \"name\",\r","                                    \"initiale\"\r","                                ],\r","                                \"properties\": {\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/owner/properties/id\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The id schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"name\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/owner/properties/name\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The name schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"initiale\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/owner/properties/initiale\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The initiale schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"primary\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/primary\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The primary schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/name\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"title\",\r","                                    \"firstname\",\r","                                    \"middlename\",\r","                                    \"lastname\",\r","                                    \"suffix\"\r","                                ],\r","                                \"properties\": {\r","                                    \"title\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/title\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The title schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"firstname\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/firstname\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The firstname schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"middlename\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/middlename\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The middlename schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"lastname\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/lastname\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The lastname schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"suffix\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/suffix\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The suffix schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"used_for_billing\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/used_for_billing\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_billing schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_mailing\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/used_for_mailing\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_mailing schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_shipping\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/used_for_shipping\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_shipping schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_other\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/used_for_other\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_other schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"email\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"deleted\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/deleted\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The deleted schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"archive\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/archive\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The archive schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"information\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/information\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The information schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"reporting_client\",\r","                                    \"job_title\",\r","                                    \"department\",\r","                                    \"website\",\r","                                    \"email02\",\r","                                    \"isemailbounced\",\r","                                    \"hasoptedoutofemail\",\r","                                    \"hasoptedoutoffax\",\r","                                    \"donotcall\",\r","                                    \"phone\",\r","                                    \"phone_mobile\",\r","                                    \"phone_fax\",\r","                                    \"skype_id\",\r","                                    \"birthdate\",\r","                                    \"anniversary\",\r","                                    \"assistant\",\r","                                    \"assistant_phone\",\r","                                    \"leadsource\",\r","                                    \"description\",\r","                                    \"smarttags\"\r","                                ],\r","                                \"properties\": {\r","                                    \"reporting_client\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/reporting_client\",\r","                                        \"type\": \"object\",\r","                                        \"title\": \"The reporting_client schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": {},\r","                                        \"required\": [\r","                                            \"id\",\r","                                            \"text\",\r","                                            \"reference\"\r","                                        ],\r","                                        \"properties\": {\r","                                            \"id\": {\r","                                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/reporting_client/properties/id\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The id schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"text\": {\r","                                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/reporting_client/properties/text\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The text schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"reference\": {\r","                                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/reporting_client/properties/reference\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The reference schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            }\r","                                        },\r","                                        \"additionalProperties\": true\r","                                    },\r","                                    \"job_title\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/job_title\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The job_title schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"department\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/department\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The department schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"website\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/website\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The website schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"email02\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/email02\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The email02 schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"isemailbounced\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/isemailbounced\",\r","                                        \"type\": \"boolean\",\r","                                        \"title\": \"The isemailbounced schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": false\r","                                    },\r","                                    \"hasoptedoutofemail\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/hasoptedoutofemail\",\r","                                        \"type\": \"boolean\",\r","                                        \"title\": \"The hasoptedoutofemail schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": false\r","                                    },\r","                                    \"hasoptedoutoffax\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/hasoptedoutoffax\",\r","                                        \"type\": \"boolean\",\r","                                        \"title\": \"The hasoptedoutoffax schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": false\r","                                    },\r","                                    \"donotcall\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/donotcall\",\r","                                        \"type\": \"boolean\",\r","                                        \"title\": \"The donotcall schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": false\r","                                    },\r","                                    \"phone\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/phone\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The phone schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"phone_mobile\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/phone_mobile\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The phone_mobile schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"phone_fax\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/phone_fax\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The phone_fax schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"skype_id\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/skype_id\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The skype_id schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"birthdate\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/birthdate\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The birthdate schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"anniversary\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/anniversary\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The anniversary schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"assistant\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/assistant\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The assistant schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"assistant_phone\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/assistant_phone\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The assistant_phone schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"leadsource\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/leadsource\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The leadsource schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"description\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/description\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The description schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"smarttags\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/smarttags\",\r","                                        \"type\": \"array\",\r","                                        \"title\": \"The smarttags schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": [],\r","                                        \"additionalItems\": true,\r","                                        \"items\": {\r","                                            \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/smarttags/items\"\r","                                        }\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"addresses\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/addresses\",\r","                                \"type\": \"array\",\r","                                \"title\": \"The addresses schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": [],\r","                                \"additionalItems\": true,\r","                                \"items\": {\r","                                    \"$id\": \"#/properties/clients/items/anyOf/0/properties/addresses/items\"\r","                                }\r","                            },\r","                            \"social\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/social\",\r","                                \"type\": \"array\",\r","                                \"title\": \"The social schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": [],\r","                                \"additionalItems\": true,\r","                                \"items\": {\r","                                    \"$id\": \"#/properties/clients/items/anyOf/0/properties/social/items\"\r","                                }\r","                            },\r","                            \"customfields\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/customfields\",\r","                                \"type\": \"array\",\r","                                \"title\": \"The customfields schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": [],\r","                                \"additionalItems\": true,\r","                                \"items\": {\r","                                    \"$id\": \"#/properties/clients/items/anyOf/0/properties/customfields/items\"\r","                                }\r","                            },\r","                            \"created_at\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/created_at\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The created_at schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"updated_at\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/updated_at\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The updated_at schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"addresses\": {\r","            \"$id\": \"#/properties/addresses\",\r","            \"type\": \"array\",\r","            \"title\": \"The addresses schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/addresses/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/addresses/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"type\",\r","                            \"id\",\r","                            \"principal\",\r","                            \"label\",\r","                            \"name\",\r","                            \"tradename\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"state\",\r","                            \"city\",\r","                            \"zipcode\",\r","                            \"country\",\r","                            \"used_for_billing\",\r","                            \"used_for_mailing\",\r","                            \"used_for_shipping\",\r","                            \"used_for_other\",\r","                            \"use_parent_address\",\r","                            \"created_at\",\r","                            \"updated_at\"\r","                        ],\r","                        \"properties\": {\r","                            \"type\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/type\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The type schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"label\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/label\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The label schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The tradename schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"city\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The city schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The zipcode schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The country schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"used_for_billing\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/used_for_billing\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_billing schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_mailing\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/used_for_mailing\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_mailing schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_shipping\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/used_for_shipping\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_shipping schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_other\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/used_for_other\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_other schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"use_parent_address\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/use_parent_address\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The use_parent_address schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"created_at\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/created_at\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The created_at schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"updated_at\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/updated_at\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The updated_at schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"social\": {\r","            \"$id\": \"#/properties/social\",\r","            \"type\": \"array\",\r","            \"title\": \"The social schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/social/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/social/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"code\",\r","                            \"name\",\r","                            \"url\",\r","                            \"value\"\r","                        ],\r","                        \"properties\": {\r","                            \"code\": {\r","                                \"$id\": \"#/properties/social/items/anyOf/0/properties/code\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The code schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/social/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"url\": {\r","                                \"$id\": \"#/properties/social/items/anyOf/0/properties/url\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The url schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"value\": {\r","                                \"$id\": \"#/properties/social/items/anyOf/0/properties/value\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The value schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"preferences\": {\r","            \"$id\": \"#/properties/preferences\",\r","            \"type\": \"object\",\r","            \"title\": \"The preferences schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"duedate\",\r","                \"validity\",\r","                \"discount\",\r","                \"discount_type\",\r","                \"document_template\",\r","                \"payment_inherited\",\r","                \"reminder_inherited\",\r","                \"send_by_email\",\r","                \"send_by_post\",\r","                \"reminder_email\",\r","                \"reminder_sms\",\r","                \"payment_method\",\r","                \"credit_hold\",\r","                \"credit_limit\",\r","                \"billing_eom_only\"\r","            ],\r","            \"properties\": {\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/preferences/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The duedate schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"xdate\",\r","                        \"days\",\r","                        \"eom\",\r","                        \"decade\",\r","                        \"installment\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The choice schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The xdate schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The eom schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The decade schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The installment schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/preferences/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The validity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/preferences/properties/discount\",\r","                    \"type\": \"number\",\r","                    \"title\": \"The discount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0.0\r","                },\r","                \"discount_type\": {\r","                    \"$id\": \"#/properties/preferences/properties/discount_type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount_type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"document_template\": {\r","                    \"$id\": \"#/properties/preferences/properties/document_template\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The document_template schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"payment_inherited\": {\r","                    \"$id\": \"#/properties/preferences/properties/payment_inherited\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The payment_inherited schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"reminder_inherited\": {\r","                    \"$id\": \"#/properties/preferences/properties/reminder_inherited\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The reminder_inherited schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"send_by_email\": {\r","                    \"$id\": \"#/properties/preferences/properties/send_by_email\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The send_by_email schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"send_by_post\": {\r","                    \"$id\": \"#/properties/preferences/properties/send_by_post\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The send_by_post schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"reminder_email\": {\r","                    \"$id\": \"#/properties/preferences/properties/reminder_email\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The reminder_email schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"reminder_sms\": {\r","                    \"$id\": \"#/properties/preferences/properties/reminder_sms\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The reminder_sms schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"payment_method\": {\r","                    \"$id\": \"#/properties/preferences/properties/payment_method\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The payment_method schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/preferences/properties/payment_method/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/preferences/properties/payment_method/items/anyOf/0\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The first anyOf schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        ]\r","                    }\r","                },\r","                \"credit_hold\": {\r","                    \"$id\": \"#/properties/preferences/properties/credit_hold\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The credit_hold schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"credit_limit\": {\r","                    \"$id\": \"#/properties/preferences/properties/credit_limit\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The credit_limit schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"billing_eom_only\": {\r","                    \"$id\": \"#/properties/preferences/properties/billing_eom_only\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The billing_eom_only schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"delivery\": {\r","            \"$id\": \"#/properties/delivery\",\r","            \"type\": \"object\",\r","            \"title\": \"The delivery schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [],\r","            \"additionalProperties\": true\r","        },\r","        \"customfields\": {\r","            \"$id\": \"#/properties/customfields\",\r","            \"type\": \"array\",\r","            \"title\": \"The customfields schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/customfields/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/customfields/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"name\",\r","                            \"description\",\r","                            \"type\",\r","                            \"code\",\r","                            \"value\"\r","                        ],\r","                        \"properties\": {\r","                            \"name\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"description\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/description\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The description schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"type\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/type\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The type schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"code\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/code\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The code schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"value\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/value\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The value schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"communication\": {\r","            \"$id\": \"#/properties/communication\",\r","            \"type\": \"object\",\r","            \"title\": \"The communication schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [],\r","            \"additionalProperties\": true\r","        },\r","        \"created_at\": {\r","            \"$id\": \"#/properties/created_at\",\r","            \"type\": \"string\",\r","            \"title\": \"The created_at schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"updated_at\": {\r","            \"$id\": \"#/properties/updated_at\",\r","            \"type\": \"string\",\r","            \"title\": \"The updated_at schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","}   \r","\r",");    "],"type":"text/javascript"}}],"id":"4549a514-c4c0-4e87-af68-7e63756aa795","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{url}}/contact.svc/contact/2ffc1478-d6f8-4e8a-a06c-56fd6630ce54","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","contact","2ffc1478-d6f8-4e8a-a06c-56fd6630ce54"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4549a514-c4c0-4e87-af68-7e63756aa795"},{"name":"get_contact (CLIENT)","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", {\r","     \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"metadata\",\r","        \"type\",\r","        \"account_id\",\r","        \"parent_account\",\r","        \"reference\",\r","        \"owner\",\r","        \"account_name\",\r","        \"email\",\r","        \"deleted\",\r","        \"archive\",\r","        \"information\",\r","        \"clients\",\r","        \"addresses\",\r","        \"social\",\r","        \"preferences\",\r","        \"delivery\",\r","        \"customfields\",\r","        \"communication\",\r","        \"created_at\",\r","        \"updated_at\"\r","    ],\r","    \"properties\": {\r","        \"metadata\": {\r","            \"$id\": \"#/properties/metadata\",\r","            \"type\": \"string\",\r","            \"title\": \"The metadata schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"type\": {\r","            \"$id\": \"#/properties/type\",\r","            \"type\": \"integer\",\r","            \"title\": \"The type schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"account_id\": {\r","            \"$id\": \"#/properties/account_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The account_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"parent_account\": {\r","            \"$id\": \"#/properties/parent_account\",\r","            \"type\": \"object\",\r","            \"title\": \"The parent_account schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"id\",\r","                \"text\",\r","                \"reference\"\r","            ],\r","            \"properties\": {\r","                \"id\": {\r","                    \"$id\": \"#/properties/parent_account/properties/id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"text\": {\r","                    \"$id\": \"#/properties/parent_account/properties/text\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The text schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"reference\": {\r","                    \"$id\": \"#/properties/parent_account/properties/reference\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The reference schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"reference\": {\r","            \"$id\": \"#/properties/reference\",\r","            \"type\": \"string\",\r","            \"title\": \"The reference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"owner\": {\r","            \"$id\": \"#/properties/owner\",\r","            \"type\": \"object\",\r","            \"title\": \"The owner schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"id\",\r","                \"name\",\r","                \"initiale\"\r","            ],\r","            \"properties\": {\r","                \"id\": {\r","                    \"$id\": \"#/properties/owner/properties/id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/owner/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"initiale\": {\r","                    \"$id\": \"#/properties/owner/properties/initiale\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The initiale schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"account_name\": {\r","            \"$id\": \"#/properties/account_name\",\r","            \"type\": \"string\",\r","            \"title\": \"The account_name schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"email\": {\r","            \"$id\": \"#/properties/email\",\r","            \"type\": \"string\",\r","            \"title\": \"The email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"deleted\": {\r","            \"$id\": \"#/properties/deleted\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The deleted schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"archive\": {\r","            \"$id\": \"#/properties/archive\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The archive schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"information\": {\r","            \"$id\": \"#/properties/information\",\r","            \"type\": \"object\",\r","            \"title\": \"The information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [],\r","            \"additionalProperties\": true\r","        },\r","        \"clients\": {\r","            \"$id\": \"#/properties/clients\",\r","            \"type\": \"array\",\r","            \"title\": \"The clients schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/clients/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/clients/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"metadata\",\r","                            \"type\",\r","                            \"client_id\",\r","                            \"parent_account\",\r","                            \"reference\",\r","                            \"owner\",\r","                            \"primary\",\r","                            \"name\",\r","                            \"used_for_billing\",\r","                            \"used_for_mailing\",\r","                            \"used_for_shipping\",\r","                            \"used_for_other\",\r","                            \"email\",\r","                            \"deleted\",\r","                            \"archive\",\r","                            \"information\",\r","                            \"addresses\",\r","                            \"social\",\r","                            \"customfields\",\r","                            \"created_at\",\r","                            \"updated_at\"\r","                        ],\r","                        \"properties\": {\r","                            \"metadata\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/metadata\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The metadata schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"type\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/type\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The type schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"client_id\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/client_id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The client_id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"parent_account\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/parent_account\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The parent_account schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"id\",\r","                                    \"text\",\r","                                    \"reference\"\r","                                ],\r","                                \"properties\": {\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/parent_account/properties/id\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The id schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"text\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/parent_account/properties/text\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The text schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"reference\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/parent_account/properties/reference\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The reference schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The reference schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"owner\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/owner\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The owner schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"id\",\r","                                    \"name\",\r","                                    \"initiale\"\r","                                ],\r","                                \"properties\": {\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/owner/properties/id\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The id schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"name\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/owner/properties/name\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The name schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"initiale\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/owner/properties/initiale\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The initiale schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"primary\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/primary\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The primary schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/name\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"title\",\r","                                    \"firstname\",\r","                                    \"middlename\",\r","                                    \"lastname\",\r","                                    \"suffix\"\r","                                ],\r","                                \"properties\": {\r","                                    \"title\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/title\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The title schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"firstname\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/firstname\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The firstname schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"middlename\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/middlename\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The middlename schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"lastname\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/lastname\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The lastname schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"suffix\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/name/properties/suffix\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The suffix schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"used_for_billing\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/used_for_billing\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_billing schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_mailing\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/used_for_mailing\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_mailing schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_shipping\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/used_for_shipping\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_shipping schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_other\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/used_for_other\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_other schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"email\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"deleted\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/deleted\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The deleted schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"archive\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/archive\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The archive schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"information\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/information\",\r","                                \"type\": \"object\",\r","                                \"title\": \"The information schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"reporting_client\",\r","                                    \"job_title\",\r","                                    \"department\",\r","                                    \"website\",\r","                                    \"email02\",\r","                                    \"isemailbounced\",\r","                                    \"hasoptedoutofemail\",\r","                                    \"hasoptedoutoffax\",\r","                                    \"donotcall\",\r","                                    \"phone\",\r","                                    \"phone_mobile\",\r","                                    \"phone_fax\",\r","                                    \"skype_id\",\r","                                    \"birthdate\",\r","                                    \"anniversary\",\r","                                    \"assistant\",\r","                                    \"assistant_phone\",\r","                                    \"leadsource\",\r","                                    \"description\",\r","                                    \"smarttags\"\r","                                ],\r","                                \"properties\": {\r","                                    \"reporting_client\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/reporting_client\",\r","                                        \"type\": \"object\",\r","                                        \"title\": \"The reporting_client schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": {},\r","                                        \"required\": [\r","                                            \"id\",\r","                                            \"text\",\r","                                            \"reference\"\r","                                        ],\r","                                        \"properties\": {\r","                                            \"id\": {\r","                                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/reporting_client/properties/id\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The id schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"text\": {\r","                                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/reporting_client/properties/text\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The text schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"reference\": {\r","                                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/reporting_client/properties/reference\",\r","                                                \"type\": \"string\",\r","                                                \"title\": \"The reference schema\",\r","                                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                                \"default\": \"\"\r","                                            }\r","                                        },\r","                                        \"additionalProperties\": true\r","                                    },\r","                                    \"job_title\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/job_title\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The job_title schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"department\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/department\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The department schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"website\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/website\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The website schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"email02\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/email02\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The email02 schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"isemailbounced\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/isemailbounced\",\r","                                        \"type\": \"boolean\",\r","                                        \"title\": \"The isemailbounced schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": false\r","                                    },\r","                                    \"hasoptedoutofemail\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/hasoptedoutofemail\",\r","                                        \"type\": \"boolean\",\r","                                        \"title\": \"The hasoptedoutofemail schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": false\r","                                    },\r","                                    \"hasoptedoutoffax\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/hasoptedoutoffax\",\r","                                        \"type\": \"boolean\",\r","                                        \"title\": \"The hasoptedoutoffax schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": false\r","                                    },\r","                                    \"donotcall\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/donotcall\",\r","                                        \"type\": \"boolean\",\r","                                        \"title\": \"The donotcall schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": false\r","                                    },\r","                                    \"phone\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/phone\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The phone schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"phone_mobile\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/phone_mobile\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The phone_mobile schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"phone_fax\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/phone_fax\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The phone_fax schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"skype_id\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/skype_id\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The skype_id schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"birthdate\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/birthdate\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The birthdate schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"anniversary\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/anniversary\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The anniversary schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"assistant\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/assistant\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The assistant schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"assistant_phone\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/assistant_phone\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The assistant_phone schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"leadsource\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/leadsource\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The leadsource schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"description\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/description\",\r","                                        \"type\": \"string\",\r","                                        \"title\": \"The description schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"smarttags\": {\r","                                        \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/smarttags\",\r","                                        \"type\": \"array\",\r","                                        \"title\": \"The smarttags schema\",\r","                                        \"description\": \"An explanation about the purpose of this instance.\",\r","                                        \"default\": [],\r","                                        \"additionalItems\": true,\r","                                        \"items\": {\r","                                            \"$id\": \"#/properties/clients/items/anyOf/0/properties/information/properties/smarttags/items\"\r","                                        }\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"addresses\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/addresses\",\r","                                \"type\": \"array\",\r","                                \"title\": \"The addresses schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": [],\r","                                \"additionalItems\": true,\r","                                \"items\": {\r","                                    \"$id\": \"#/properties/clients/items/anyOf/0/properties/addresses/items\"\r","                                }\r","                            },\r","                            \"social\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/social\",\r","                                \"type\": \"array\",\r","                                \"title\": \"The social schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": [],\r","                                \"additionalItems\": true,\r","                                \"items\": {\r","                                    \"$id\": \"#/properties/clients/items/anyOf/0/properties/social/items\"\r","                                }\r","                            },\r","                            \"customfields\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/customfields\",\r","                                \"type\": \"array\",\r","                                \"title\": \"The customfields schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": [],\r","                                \"additionalItems\": true,\r","                                \"items\": {\r","                                    \"$id\": \"#/properties/clients/items/anyOf/0/properties/customfields/items\"\r","                                }\r","                            },\r","                            \"created_at\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/created_at\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The created_at schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"updated_at\": {\r","                                \"$id\": \"#/properties/clients/items/anyOf/0/properties/updated_at\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The updated_at schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"addresses\": {\r","            \"$id\": \"#/properties/addresses\",\r","            \"type\": \"array\",\r","            \"title\": \"The addresses schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/addresses/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/addresses/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"type\",\r","                            \"id\",\r","                            \"principal\",\r","                            \"label\",\r","                            \"name\",\r","                            \"tradename\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"state\",\r","                            \"city\",\r","                            \"zipcode\",\r","                            \"country\",\r","                            \"used_for_billing\",\r","                            \"used_for_mailing\",\r","                            \"used_for_shipping\",\r","                            \"used_for_other\",\r","                            \"use_parent_address\",\r","                            \"created_at\",\r","                            \"updated_at\"\r","                        ],\r","                        \"properties\": {\r","                            \"type\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/type\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The type schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"label\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/label\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The label schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The tradename schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"city\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The city schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The zipcode schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The country schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"used_for_billing\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/used_for_billing\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_billing schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_mailing\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/used_for_mailing\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_mailing schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_shipping\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/used_for_shipping\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_shipping schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"used_for_other\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/used_for_other\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The used_for_other schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"use_parent_address\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/use_parent_address\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The use_parent_address schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"created_at\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/created_at\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The created_at schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"updated_at\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/updated_at\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The updated_at schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"social\": {\r","            \"$id\": \"#/properties/social\",\r","            \"type\": \"array\",\r","            \"title\": \"The social schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/social/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/social/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"code\",\r","                            \"name\",\r","                            \"url\",\r","                            \"value\"\r","                        ],\r","                        \"properties\": {\r","                            \"code\": {\r","                                \"$id\": \"#/properties/social/items/anyOf/0/properties/code\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The code schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/social/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"url\": {\r","                                \"$id\": \"#/properties/social/items/anyOf/0/properties/url\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The url schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"value\": {\r","                                \"$id\": \"#/properties/social/items/anyOf/0/properties/value\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The value schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"preferences\": {\r","            \"$id\": \"#/properties/preferences\",\r","            \"type\": \"object\",\r","            \"title\": \"The preferences schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"duedate\",\r","                \"validity\",\r","                \"discount\",\r","                \"discount_type\",\r","                \"document_template\",\r","                \"payment_inherited\",\r","                \"reminder_inherited\",\r","                \"send_by_email\",\r","                \"send_by_post\",\r","                \"reminder_email\",\r","                \"reminder_sms\",\r","                \"payment_method\",\r","                \"credit_hold\",\r","                \"credit_limit\",\r","                \"billing_eom_only\"\r","            ],\r","            \"properties\": {\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/preferences/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The duedate schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"xdate\",\r","                        \"days\",\r","                        \"eom\",\r","                        \"decade\",\r","                        \"installment\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The choice schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The xdate schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The eom schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The decade schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/preferences/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The installment schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/preferences/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The validity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/preferences/properties/discount\",\r","                    \"type\": \"number\",\r","                    \"title\": \"The discount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0.0\r","                },\r","                \"discount_type\": {\r","                    \"$id\": \"#/properties/preferences/properties/discount_type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount_type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"document_template\": {\r","                    \"$id\": \"#/properties/preferences/properties/document_template\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The document_template schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"payment_inherited\": {\r","                    \"$id\": \"#/properties/preferences/properties/payment_inherited\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The payment_inherited schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"reminder_inherited\": {\r","                    \"$id\": \"#/properties/preferences/properties/reminder_inherited\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The reminder_inherited schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"send_by_email\": {\r","                    \"$id\": \"#/properties/preferences/properties/send_by_email\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The send_by_email schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"send_by_post\": {\r","                    \"$id\": \"#/properties/preferences/properties/send_by_post\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The send_by_post schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"reminder_email\": {\r","                    \"$id\": \"#/properties/preferences/properties/reminder_email\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The reminder_email schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"reminder_sms\": {\r","                    \"$id\": \"#/properties/preferences/properties/reminder_sms\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The reminder_sms schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"payment_method\": {\r","                    \"$id\": \"#/properties/preferences/properties/payment_method\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The payment_method schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/preferences/properties/payment_method/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/preferences/properties/payment_method/items/anyOf/0\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The first anyOf schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        ]\r","                    }\r","                },\r","                \"credit_hold\": {\r","                    \"$id\": \"#/properties/preferences/properties/credit_hold\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The credit_hold schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"credit_limit\": {\r","                    \"$id\": \"#/properties/preferences/properties/credit_limit\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The credit_limit schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"billing_eom_only\": {\r","                    \"$id\": \"#/properties/preferences/properties/billing_eom_only\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The billing_eom_only schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"delivery\": {\r","            \"$id\": \"#/properties/delivery\",\r","            \"type\": \"object\",\r","            \"title\": \"The delivery schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [],\r","            \"additionalProperties\": true\r","        },\r","        \"customfields\": {\r","            \"$id\": \"#/properties/customfields\",\r","            \"type\": \"array\",\r","            \"title\": \"The customfields schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/customfields/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/customfields/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"name\",\r","                            \"description\",\r","                            \"type\",\r","                            \"code\",\r","                            \"value\"\r","                        ],\r","                        \"properties\": {\r","                            \"name\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"description\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/description\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The description schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"type\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/type\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The type schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"code\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/code\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The code schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"value\": {\r","                                \"$id\": \"#/properties/customfields/items/anyOf/0/properties/value\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The value schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"communication\": {\r","            \"$id\": \"#/properties/communication\",\r","            \"type\": \"object\",\r","            \"title\": \"The communication schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [],\r","            \"additionalProperties\": true\r","        },\r","        \"created_at\": {\r","            \"$id\": \"#/properties/created_at\",\r","            \"type\": \"string\",\r","            \"title\": \"The created_at schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"updated_at\": {\r","            \"$id\": \"#/properties/updated_at\",\r","            \"type\": \"string\",\r","            \"title\": \"The updated_at schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","}   \r","\r",");    "],"type":"text/javascript"}}],"id":"268c6067-0f8f-481d-a975-07a1f4fe44f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{url}}/contact.svc/contact/dbaa6595-d6e8-43da-9a8b-e3a4a96c11e9","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["contact.svc","contact","dbaa6595-d6e8-43da-9a8b-e3a4a96c11e9"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"268c6067-0f8f-481d-a975-07a1f4fe44f7"}],"id":"e8e4ba15-749a-4187-b59b-6f18ae90eb2d","_postman_id":"e8e4ba15-749a-4187-b59b-6f18ae90eb2d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"CLIENT","item":[{"name":"[model] CLIENT","event":[{"listen":"test","script":{"id":"884a427e-fb32-4cea-8aab-d555c74aede0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5921e621-25a7-4725-a9a2-ec34bce8a91b","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"addresses\",\r","        \"communication\",\r","        \"contacts\",\r","        \"currency\",\r","        \"folder\",\r","        \"id\",\r","        \"language\",\r","        \"list_id\",\r","        \"notes\",\r","        \"organisation\",\r","        \"organisation_information\",\r","        \"particular\",\r","        \"preference\",\r","        \"reference\",\r","        \"send_by_email\",\r","        \"send_by_post\",\r","        \"smarttags\"\r","    ],\r","    \"properties\": {\r","        \"addresses\": {\r","            \"$id\": \"#/properties/addresses\",\r","            \"type\": \"array\",\r","            \"title\": \"The addresses schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/addresses/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/addresses/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"city\",\r","                            \"country\",\r","                            \"id\",\r","                            \"name\",\r","                            \"principal\",\r","                            \"state\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"target_delivery\",\r","                            \"target_invoice\",\r","                            \"tradename\",\r","                            \"zipcode\"\r","                        ],\r","                        \"properties\": {\r","                            \"city\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The city schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The country schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The state schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street1 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The street2 schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"target_delivery\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_delivery\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_delivery schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"target_invoice\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/target_invoice\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The target_invoice schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The tradename schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The zipcode schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"communication\": {\r","            \"$id\": \"#/properties/communication\",\r","            \"type\": \"null\",\r","            \"title\": \"The communication schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": null\r","        },\r","        \"contacts\": {\r","            \"$id\": \"#/properties/contacts\",\r","            \"type\": \"array\",\r","            \"title\": \"The contacts schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/contacts/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/contacts/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"email\",\r","                            \"fax\",\r","                            \"first_name\",\r","                            \"id\",\r","                            \"jobtitle\",\r","                            \"last_name\",\r","                            \"middle_name\",\r","                            \"mobile\",\r","                            \"phone\",\r","                            \"principal\",\r","                            \"suffix\",\r","                            \"title\"\r","                        ],\r","                        \"properties\": {\r","                            \"email\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"fax\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/fax\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The fax schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"first_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/first_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The first_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"jobtitle\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/jobtitle\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The jobtitle schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"last_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/last_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The last_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"middle_name\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/middle_name\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The middle_name schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"mobile\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/mobile\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The mobile schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"phone\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/phone\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The phone schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The principal schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"suffix\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/suffix\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The suffix schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"title\": {\r","                                \"$id\": \"#/properties/contacts/items/anyOf/0/properties/title\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The title schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"currency\": {\r","            \"$id\": \"#/properties/currency\",\r","            \"type\": \"integer\",\r","            \"title\": \"The currency schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"folder\": {\r","            \"$id\": \"#/properties/folder\",\r","            \"type\": \"integer\",\r","            \"title\": \"The folder schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": 0\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"language\": {\r","            \"$id\": \"#/properties/language\",\r","            \"type\": \"string\",\r","            \"title\": \"The language schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"list_id\": {\r","            \"$id\": \"#/properties/list_id\",\r","            \"type\": \"string\",\r","            \"title\": \"The list_id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"notes\": {\r","            \"$id\": \"#/properties/notes\",\r","            \"type\": \"string\",\r","            \"title\": \"The notes schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"organisation\": {\r","            \"$id\": \"#/properties/organisation\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"currency\",\r","                \"information\",\r","                \"interneturl\",\r","                \"name\",\r","                \"phone_business\",\r","                \"phone_fax\",\r","                \"phone_mobile\",\r","                \"vattaxname\",\r","                \"vattaxnumber\"\r","            ],\r","            \"properties\": {\r","                \"currency\": {\r","                    \"$id\": \"#/properties/organisation/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The currency schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/organisation/properties/information\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The information schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"country\",\r","                        \"data\"\r","                    ],\r","                    \"properties\": {\r","                        \"country\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/country\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The country schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"data\": {\r","                            \"$id\": \"#/properties/organisation/properties/information/properties/data\",\r","                            \"type\": \"array\",\r","                            \"title\": \"The data schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/organisation/properties/information/properties/data/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"interneturl\": {\r","                    \"$id\": \"#/properties/organisation/properties/interneturl\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The interneturl schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/organisation/properties/name\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The name schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_business\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_business\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_business schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_fax\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_fax\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_fax schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"phone_mobile\": {\r","                    \"$id\": \"#/properties/organisation/properties/phone_mobile\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The phone_mobile schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxname\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxname\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxname schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"vattaxnumber\": {\r","                    \"$id\": \"#/properties/organisation/properties/vattaxnumber\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The vattaxnumber schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"organisation_information\": {\r","            \"$id\": \"#/properties/organisation_information\",\r","            \"type\": \"object\",\r","            \"title\": \"The organisation_information schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"country\",\r","                \"data\"\r","            ],\r","            \"properties\": {\r","                \"country\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/country\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The country schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/organisation_information/properties/data\",\r","                    \"type\": \"array\",\r","                    \"title\": \"The data schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/organisation_information/properties/data/items\"\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"particular\": {\r","            \"$id\": \"#/properties/particular\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The particular schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"preference\": {\r","            \"$id\": \"#/properties/preference\",\r","            \"type\": \"object\",\r","            \"title\": \"The preference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": {},\r","            \"required\": [\r","                \"billing_eom_only\",\r","                \"catalog_id\",\r","                \"discount\",\r","                \"discount_type\",\r","                \"document_template\",\r","                \"duedate\",\r","                \"validity\"\r","            ],\r","            \"properties\": {\r","                \"billing_eom_only\": {\r","                    \"$id\": \"#/properties/preference/properties/billing_eom_only\",\r","                    \"type\": \"boolean\",\r","                    \"title\": \"The billing_eom_only schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": false\r","                },\r","                \"catalog_id\": {\r","                    \"$id\": \"#/properties/preference/properties/catalog_id\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The catalog_id schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/preference/properties/discount\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"discount_type\": {\r","                    \"$id\": \"#/properties/preference/properties/discount_type\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The discount_type schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                },\r","                \"document_template\": {\r","                    \"$id\": \"#/properties/preference/properties/document_template\",\r","                    \"type\": \"string\",\r","                    \"title\": \"The document_template schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": \"\"\r","                },\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/preference/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"title\": \"The duedate schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"days\",\r","                        \"decade\",\r","                        \"eom\",\r","                        \"installment\",\r","                        \"xdate\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The choice schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"title\": \"The days schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": 0\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The decade schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"title\": \"The eom schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The installment schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/preference/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"title\": \"The xdate schema\",\r","                            \"description\": \"An explanation about the purpose of this instance.\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/preference/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"title\": \"The validity schema\",\r","                    \"description\": \"An explanation about the purpose of this instance.\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"reference\": {\r","            \"$id\": \"#/properties/reference\",\r","            \"type\": \"string\",\r","            \"title\": \"The reference schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"send_by_email\": {\r","            \"$id\": \"#/properties/send_by_email\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"send_by_post\": {\r","            \"$id\": \"#/properties/send_by_post\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The send_by_post schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"smarttags\": {\r","            \"$id\": \"#/properties/smarttags\",\r","            \"type\": \"array\",\r","            \"title\": \"The smarttags schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/smarttags/items\"\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"5def0a5c-4440-e306-7b98-c9b54b73727f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/client.svc/","description":"<p>These are all the JSON-schemas for SalenGo API.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9b450638-d68f-4b65-bd05-d53e5caa0fe6","name":"[model] CLIENT","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/client.svc/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Powered-By","value":"SalenGo"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Accept, Content-Type, Origin, APIKey, Authorization"},{"key":"Access-Control-Allow-Methods","value":"GET, PUT, POST, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 10 Jan 2021 08:23:30 GMT"},{"key":"Content-Length","value":"1227"}],"cookie":[],"responseTime":null,"body":"{\n    \"addresses\": [\n        {\n            \"city\": \"\",\n            \"country\": \"\",\n            \"id\": \"\",\n            \"name\": \"\",\n            \"principal\": false,\n            \"state\": \"\",\n            \"street1\": \"\",\n            \"street2\": \"\",\n            \"target_delivery\": true,\n            \"target_invoice\": true,\n            \"tradename\": \"\",\n            \"zipcode\": \"\",\n            \"created_at\": \"01/01/2000 00:00:00\",\n            \"updated_at\": \"01/01/2000 00:00:00\"\n        }\n    ],\n    \"communication\": null,\n    \"contacts\": [\n        {\n            \"email\": \"\",\n            \"fax\": \"\",\n            \"first_name\": \"\",\n            \"id\": \"\",\n            \"jobtitle\": \"\",\n            \"last_name\": \"\",\n            \"middle_name\": \"\",\n            \"mobile\": \"\",\n            \"phone\": \"\",\n            \"principal\": false,\n            \"suffix\": \"\",\n            \"title\": \"\",\n            \"created_at\": \"01/01/2000 00:00:00\",\n            \"updated_at\": \"01/01/2000 00:00:00\"\n        }\n    ],\n    \"currency\": 978,\n    \"folder\": 0,\n    \"id\": \"\",\n    \"language\": \"fr\",\n    \"list_id\": \"00000\",\n    \"notes\": \"\",\n    \"organisation\": {\n        \"currency\": 978,\n        \"information\": {\n            \"country\": \"\",\n            \"data\": []\n        },\n        \"interneturl\": \"\",\n        \"name\": \"\",\n        \"phone_business\": \"\",\n        \"phone_fax\": \"\",\n        \"phone_mobile\": \"\",\n        \"vattaxname\": \"\",\n        \"vattaxnumber\": \"\"\n    },\n    \"organisation_information\": {\n        \"country\": \"\",\n        \"data\": []\n    },\n    \"particular\": false,\n    \"preference\": {\n        \"billing_eom_only\": false,\n        \"catalog_id\": \"\",\n        \"discount\": 0,\n        \"discount_type\": 0,\n        \"document_template\": \"\",\n        \"duedate\": {\n            \"choice\": \"0\",\n            \"days\": 0,\n            \"decade\": false,\n            \"eom\": false,\n            \"installment\": \"\",\n            \"xdate\": \"2021-01-10\"\n        },\n        \"validity\": 0\n    },\n    \"reference\": \"\",\n    \"send_by_email\": true,\n    \"send_by_post\": false,\n    \"smarttags\": [],\n    \"created_at\": \"01/01/2000 00:00:00\",\n    \"updated_at\": \"01/01/2000 00:00:00\"\n}"}],"_postman_id":"5def0a5c-4440-e306-7b98-c9b54b73727f"},{"name":"[model] CONTACT","event":[{"listen":"test","script":{"id":"3a7d9387-ef69-4936-a79e-57526e6f21f1","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9506f8b8-23f5-467b-b782-cb645dad4abd","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"email\",\r","        \"fax\",\r","        \"first_name\",\r","        \"id\",\r","        \"jobtitle\",\r","        \"last_name\",\r","        \"middle_name\",\r","        \"mobile\",\r","        \"phone\",\r","        \"principal\",\r","        \"suffix\",\r","        \"title\"\r","    ],\r","    \"properties\": {\r","        \"email\": {\r","            \"$id\": \"#/properties/email\",\r","            \"type\": \"string\",\r","            \"title\": \"The email schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"fax\": {\r","            \"$id\": \"#/properties/fax\",\r","            \"type\": \"string\",\r","            \"title\": \"The fax schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"first_name\": {\r","            \"$id\": \"#/properties/first_name\",\r","            \"type\": \"string\",\r","            \"title\": \"The first_name schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"jobtitle\": {\r","            \"$id\": \"#/properties/jobtitle\",\r","            \"type\": \"string\",\r","            \"title\": \"The jobtitle schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"last_name\": {\r","            \"$id\": \"#/properties/last_name\",\r","            \"type\": \"string\",\r","            \"title\": \"The last_name schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"middle_name\": {\r","            \"$id\": \"#/properties/middle_name\",\r","            \"type\": \"string\",\r","            \"title\": \"The middle_name schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"mobile\": {\r","            \"$id\": \"#/properties/mobile\",\r","            \"type\": \"string\",\r","            \"title\": \"The mobile schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"phone\": {\r","            \"$id\": \"#/properties/phone\",\r","            \"type\": \"string\",\r","            \"title\": \"The phone schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"principal\": {\r","            \"$id\": \"#/properties/principal\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The principal schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"suffix\": {\r","            \"$id\": \"#/properties/suffix\",\r","            \"type\": \"string\",\r","            \"title\": \"The suffix schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"title\": {\r","            \"$id\": \"#/properties/title\",\r","            \"type\": \"string\",\r","            \"title\": \"The title schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"1e2ef184-bb87-45b9-98cb-f53f34351869","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/client.svc/contact","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","contact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"3c74ffc2-6972-47df-b484-6f6118d62e93","name":"[model] CONTACT","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/client.svc/contact"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Powered-By","value":"SalenGo"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Accept, Content-Type, Origin, APIKey, Authorization"},{"key":"Access-Control-Allow-Methods","value":"GET, PUT, POST, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 10 Jan 2021 08:31:18 GMT"},{"key":"Content-Length","value":"229"}],"cookie":[],"responseTime":null,"body":"{\n    \"email\": \"\",\n    \"fax\": \"\",\n    \"first_name\": \"\",\n    \"id\": \"\",\n    \"jobtitle\": \"\",\n    \"last_name\": \"\",\n    \"middle_name\": \"\",\n    \"mobile\": \"\",\n    \"phone\": \"\",\n    \"principal\": false,\n    \"suffix\": \"\",\n    \"title\": \"\",\n    \"created_at\": \"01/01/2000 00:00:00\",\n    \"updated_at\": \"01/01/2000 00:00:00\"\n}"}],"_postman_id":"1e2ef184-bb87-45b9-98cb-f53f34351869"},{"name":"[model] ADDRESS","event":[{"listen":"test","script":{"id":"c86d9d6c-f53c-4559-ae6b-8770b3bdbf41","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"7f016572-c3f0-4062-b8a3-94d04f9b1d3c","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"city\",\r","        \"country\",\r","        \"id\",\r","        \"name\",\r","        \"principal\",\r","        \"state\",\r","        \"street1\",\r","        \"street2\",\r","        \"target_delivery\",\r","        \"target_invoice\",\r","        \"tradename\",\r","        \"zipcode\"\r","    ],\r","    \"properties\": {\r","        \"city\": {\r","            \"$id\": \"#/properties/city\",\r","            \"type\": \"string\",\r","            \"title\": \"The city schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"country\": {\r","            \"$id\": \"#/properties/country\",\r","            \"type\": \"string\",\r","            \"title\": \"The country schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"name\": {\r","            \"$id\": \"#/properties/name\",\r","            \"type\": \"string\",\r","            \"title\": \"The name schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"principal\": {\r","            \"$id\": \"#/properties/principal\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The principal schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"state\": {\r","            \"$id\": \"#/properties/state\",\r","            \"type\": \"string\",\r","            \"title\": \"The state schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"street1\": {\r","            \"$id\": \"#/properties/street1\",\r","            \"type\": \"string\",\r","            \"title\": \"The street1 schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"street2\": {\r","            \"$id\": \"#/properties/street2\",\r","            \"type\": \"string\",\r","            \"title\": \"The street2 schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"target_delivery\": {\r","            \"$id\": \"#/properties/target_delivery\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The target_delivery schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"target_invoice\": {\r","            \"$id\": \"#/properties/target_invoice\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The target_invoice schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"tradename\": {\r","            \"$id\": \"#/properties/tradename\",\r","            \"type\": \"string\",\r","            \"title\": \"The tradename schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"zipcode\": {\r","            \"$id\": \"#/properties/zipcode\",\r","            \"type\": \"string\",\r","            \"title\": \"The zipcode schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"312b23cf-bae3-41e4-ab2a-ccdd389dd04a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/client.svc/address","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","address"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fe3bacfc-f223-4884-982e-e5d16853e27d","name":"[model] ADDRESS","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/client.svc/address"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"X-Powered-By","value":"SalenGo"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Accept, Content-Type, Origin, APIKey, Authorization"},{"key":"Access-Control-Allow-Methods","value":"GET, PUT, POST, DELETE, OPTIONS"},{"key":"Date","value":"Sun, 10 Jan 2021 08:32:26 GMT"},{"key":"Content-Length","value":"244"}],"cookie":[],"responseTime":null,"body":"{\n    \"city\": \"\",\n    \"country\": \"\",\n    \"id\": \"\",\n    \"name\": \"\",\n    \"principal\": false,\n    \"state\": \"\",\n    \"street1\": \"\",\n    \"street2\": \"\",\n    \"target_delivery\": true,\n    \"target_invoice\": true,\n    \"tradename\": \"\",\n    \"zipcode\": \"\",\n    \"created_at\": \"01/01/2000 00:00:00\",\n    \"updated_at\": \"01/01/2000 00:00:00\"\n}"}],"_postman_id":"312b23cf-bae3-41e4-ab2a-ccdd389dd04a"},{"name":"client (list)","event":[{"listen":"test","script":{"id":"bbaa4488-6eba-454f-8921-afe26f85eb0c","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"35bc271b-b63a-4070-a9f2-7419ac9ba330","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_Result\": {\r","            \"$id\": \"#/properties/_LIST_Result\",\r","            \"type\": \"array\",\r","            \"title\": \"The _LIST_Result schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"title\": \"The first anyOf schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"business_fax\",\r","                            \"business_phone\",\r","                            \"company\",\r","                            \"contact\",\r","                            \"email\",\r","                            \"folder\",\r","                            \"has_notes\",\r","                            \"id\",\r","                            \"mobile\",\r","                            \"phone\",\r","                            \"reference\",\r","                            \"smarttags\",\r","                            \"website\"\r","                        ],\r","                        \"properties\": {\r","                            \"business_fax\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/business_fax\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The business_fax schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"business_phone\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/business_phone\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The business_phone schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"company\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/company\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The company schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"contact\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/contact\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The contact schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"email\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The email schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"folder\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/folder\",\r","                                \"type\": \"integer\",\r","                                \"title\": \"The folder schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": 0\r","                            },\r","                            \"has_notes\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/has_notes\",\r","                                \"type\": \"boolean\",\r","                                \"title\": \"The has_notes schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": false\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The id schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"mobile\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/mobile\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The mobile schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"phone\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/phone\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The phone schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The reference schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"smarttags\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/smarttags\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The smarttags schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            },\r","                            \"website\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/website\",\r","                                \"type\": \"string\",\r","                                \"title\": \"The website schema\",\r","                                \"description\": \"An explanation about the purpose of this instance.\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"1604b925-0e60-7de2-787a-7666c92ce3ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"group_id\" : \"{{client_group_id}}\",\n    \"search\": {},\n\t\"params\": {\n\t\t\"folder\" : 0,\n\t\t\"pagination\" : {\n\t\t\t\"perpage\": 10,\n\t\t\t\"page\" :1\n\t\t}\n\t},\n\t\"lang\": \"fr\"\n}"},"url":"{{url}}/client.svc/list","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1604b925-0e60-7de2-787a-7666c92ce3ef"},{"name":"client (get)","event":[{"listen":"test","script":{"id":"cc3e6da1-36ce-4b15-a924-a1c59e4bf877","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e55ad14c-4b68-452b-9dcb-74e53755334d","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_Result\": {\r","            \"$id\": \"#/properties/_GET_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"addresses\",\r","                \"communication\",\r","                \"contacts\",\r","                \"currency\",\r","                \"folder\",\r","                \"id\",\r","                \"language\",\r","                \"list_id\",\r","                \"notes\",\r","                \"organisation\",\r","                \"organisation_information\",\r","                \"particular\",\r","                \"preference\",\r","                \"reference\",\r","                \"send_by_email\",\r","                \"send_by_post\",\r","                \"smarttags\"\r","            ],\r","            \"properties\": {\r","                \"addresses\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/addresses\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"city\",\r","                                    \"country\",\r","                                    \"id\",\r","                                    \"name\",\r","                                    \"principal\",\r","                                    \"state\",\r","                                    \"street1\",\r","                                    \"street2\",\r","                                    \"target_delivery\",\r","                                    \"target_invoice\",\r","                                    \"tradename\",\r","                                    \"zipcode\"\r","                                ],\r","                                \"properties\": {\r","                                    \"city\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/city\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"country\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/country\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/id\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"name\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/name\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"principal\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/principal\",\r","                                        \"type\": \"boolean\",\r","                                        \"default\": false\r","                                    },\r","                                    \"state\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/state\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"street1\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/street1\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"street2\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/street2\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"target_delivery\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/target_delivery\",\r","                                        \"type\": \"boolean\",\r","                                        \"default\": false\r","                                    },\r","                                    \"target_invoice\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/target_invoice\",\r","                                        \"type\": \"boolean\",\r","                                        \"default\": false\r","                                    },\r","                                    \"tradename\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/tradename\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"zipcode\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/addresses/items/anyOf/0/properties/zipcode\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            }\r","                        ]\r","                    }\r","                },\r","                \"communication\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/communication\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"billing_contact_id\"\r","                    ],\r","                    \"properties\": {\r","                        \"billing_contact_id\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/communication/properties/billing_contact_id\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"contacts\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/contacts\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"email\",\r","                                    \"fax\",\r","                                    \"first_name\",\r","                                    \"id\",\r","                                    \"jobtitle\",\r","                                    \"last_name\",\r","                                    \"middle_name\",\r","                                    \"mobile\",\r","                                    \"phone\",\r","                                    \"principal\",\r","                                    \"suffix\",\r","                                    \"title\"\r","                                ],\r","                                \"properties\": {\r","                                    \"email\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/email\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"fax\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/fax\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"first_name\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/first_name\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/id\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"jobtitle\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/jobtitle\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"last_name\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/last_name\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"middle_name\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/middle_name\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"mobile\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/mobile\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"phone\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/phone\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"principal\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/principal\",\r","                                        \"type\": \"boolean\",\r","                                        \"default\": false\r","                                    },\r","                                    \"suffix\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/suffix\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"title\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/contacts/items/anyOf/0/properties/title\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            }\r","                        ]\r","                    }\r","                },\r","                \"currency\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"folder\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/folder\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"language\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/language\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"list_id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/list_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"notes\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/notes\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"organisation\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/organisation\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"currency\",\r","                        \"information\",\r","                        \"interneturl\",\r","                        \"name\",\r","                        \"phone_business\",\r","                        \"phone_fax\",\r","                        \"phone_mobile\",\r","                        \"vattaxname\",\r","                        \"vattaxnumber\"\r","                    ],\r","                    \"properties\": {\r","                        \"currency\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/currency\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"information\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/information\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"country\",\r","                                \"data\"\r","                            ],\r","                            \"properties\": {\r","                                \"country\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/information/properties/country\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"data\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/information/properties/data\",\r","                                    \"type\": \"array\",\r","                                    \"default\": [],\r","                                    \"additionalItems\": true,\r","                                    \"items\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/information/properties/data/items\"\r","                                    }\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"interneturl\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/interneturl\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"name\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/name\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"phone_business\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/phone_business\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"phone_fax\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/phone_fax\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"phone_mobile\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/phone_mobile\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"vattaxname\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/vattaxname\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"vattaxnumber\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation/properties/vattaxnumber\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"organisation_information\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/organisation_information\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"country\",\r","                        \"data\"\r","                    ],\r","                    \"properties\": {\r","                        \"country\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation_information/properties/country\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"data\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/organisation_information/properties/data\",\r","                            \"type\": \"array\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/_GET_Result/properties/organisation_information/properties/data/items\",\r","                                \"anyOf\": [\r","                                    {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/organisation_information/properties/data/items/anyOf/0\",\r","                                        \"type\": \"object\",\r","                                        \"default\": {},\r","                                        \"required\": [\r","                                            \"data\",\r","                                            \"id\"\r","                                        ],\r","                                        \"properties\": {\r","                                            \"data\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/organisation_information/properties/data/items/anyOf/0/properties/data\",\r","                                                \"type\": \"string\",\r","                                                \"default\": \"\"\r","                                            },\r","                                            \"id\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/organisation_information/properties/data/items/anyOf/0/properties/id\",\r","                                                \"type\": \"string\",\r","                                                \"default\": \"\"\r","                                            }\r","                                        },\r","                                        \"additionalProperties\": true\r","                                    }\r","                                ]\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"particular\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/particular\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"preference\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/preference\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"billing_eom_only\",\r","                        \"catalog_id\",\r","                        \"discount\",\r","                        \"discount_type\",\r","                        \"document_template\",\r","                        \"duedate\",\r","                        \"validity\"\r","                    ],\r","                    \"properties\": {\r","                        \"billing_eom_only\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/preference/properties/billing_eom_only\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"catalog_id\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/preference/properties/catalog_id\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"discount\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/preference/properties/discount\",\r","                            \"type\": \"number\",\r","                            \"default\": 0.0\r","                        },\r","                        \"discount_type\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/preference/properties/discount_type\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"document_template\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/preference/properties/document_template\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"duedate\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/preference/properties/duedate\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"choice\",\r","                                \"days\",\r","                                \"decade\",\r","                                \"eom\",\r","                                \"installment\",\r","                                \"xdate\"\r","                            ],\r","                            \"properties\": {\r","                                \"choice\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/preference/properties/duedate/properties/choice\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"days\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/preference/properties/duedate/properties/days\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"decade\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/preference/properties/duedate/properties/decade\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"eom\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/preference/properties/duedate/properties/eom\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"installment\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/preference/properties/duedate/properties/installment\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"xdate\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/preference/properties/duedate/properties/xdate\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"validity\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/preference/properties/validity\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"reference\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/reference\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"send_by_email\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/send_by_email\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"send_by_post\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/send_by_post\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"smarttags\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/smarttags\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_Result/properties/smarttags/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/_GET_Result/properties/smarttags/items/anyOf/0\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            }\r","                        ]\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"dd09ea26-246f-4728-215d-e2159005bdd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n\t\"params\": {\n\t\t\"id\":  \"{{client_id}}\"\n\t}\n}"},"url":"{{url}}/client.svc/get","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","get"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd09ea26-246f-4728-215d-e2159005bdd5"},{"name":"client (post)","event":[{"listen":"test","script":{"id":"ae4f9c48-ea44-491a-be1f-15857a0cf13b","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"3ae9cde2-875d-4dd9-871f-6f6deca7d4ca","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"content\",\r","        \"data\",\r","        \"error\",\r","        \"i\",\r","        \"id\",\r","        \"r\",\r","        \"refresh\",\r","        \"title\",\r","        \"url\"\r","    ],\r","    \"properties\": {\r","        \"content\": {\r","            \"$id\": \"#/properties/content\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"data\": {\r","            \"$id\": \"#/properties/data\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"error\": {\r","            \"$id\": \"#/properties/error\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"i\": {\r","            \"$id\": \"#/properties/i\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"r\": {\r","            \"$id\": \"#/properties/r\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        },\r","        \"refresh\": {\r","            \"$id\": \"#/properties/refresh\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        },\r","        \"title\": {\r","            \"$id\": \"#/properties/title\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"url\": {\r","            \"$id\": \"#/properties/url\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"9c62dcab-9f8f-10a5-3e39-376fcd939537","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": null,\n    \"list_id\": \"00001\",\n    \"category\": 0,\n    \"language\": \"en\",\n    \"currency\": 978,\n    \"particular\": false,\n    \"notes\": \"\",\n    \"send_by_email\": true,\n    \"send_by_post\": false,\n    \"smarttags\": [],\n    \"preference\": {\n        \"catalog_id\": \"\",\n        \"discount\": 0,\n        \"discount_type\": 0, \n        \"document_template\": \"\",\n        \"validity\": 0\n    },\n    \"organisation\": {\n        \"interneturl\": \"\",\n        \"name\": \"Micro XXX\",\n        \"phone_business\": \"\",\n        \"phone_fax\": \"\",\n        \"phone_mobile\": \"\",\n        \"vattaxname\": \"\",\n        \"vattaxnumber\": \"\",\n        \"information\": {\n            \"country\": \"\",\n            \"data\": []\n        }\n    },\n    \"contacts\": [\n        {\n            \"principal\": false,\n            \"title\": \"Mr\",\n            \"first_name\": \"Sarah\",\n            \"last_name\": \"Movie\",\n            \"phone\": \"0102030405\",\n            \"mobile\": \"0607080910\"\n        }\n    ],\n    \"addresses\": [\n        {\n            \"principal\": false,\n            \"street1\": \"TEST PARIS IDF\",\n            \"city\": \"PARIS\",\n            \"zipcode\": \"75013\",\n            \"country\": \"France\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/client.svc/post","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","post"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c62dcab-9f8f-10a5-3e39-376fcd939537"},{"name":"client (delete)","event":[{"listen":"test","script":{"id":"b3ecd9a8-dc4a-43c4-adc5-b98e0529505e","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"b90be845-3d2e-4917-b313-e4477077cff3","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_DELETE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_DELETE_Result\": {\r","            \"$id\": \"#/properties/_DELETE_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"5410f5ea-0eee-6126-fead-219c811ba0dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"params\": {\n        \"id\": \"18f188d4-b2dc-4f61-ade0-5f9425087073\"\n    }\n}"},"url":"{{url}}/client.svc/delete","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","delete"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5410f5ea-0eee-6126-fead-219c811ba0dd"},{"name":"contact (list)","event":[{"listen":"test","script":{"id":"d558af69-85ae-43ae-b45f-491b322a6f80","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"042920d2-3095-4d7d-99cf-5c0615518414","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_CONTACTS_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_CONTACTS_Result\": {\r","            \"$id\": \"#/properties/_LIST_CONTACTS_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"email\",\r","                            \"fax\",\r","                            \"first_name\",\r","                            \"id\",\r","                            \"jobtitle\",\r","                            \"last_name\",\r","                            \"middle_name\",\r","                            \"mobile\",\r","                            \"phone\",\r","                            \"principal\",\r","                            \"suffix\",\r","                            \"title\"\r","                        ],\r","                        \"properties\": {\r","                            \"email\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/email\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"fax\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/fax\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"first_name\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/first_name\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"jobtitle\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/jobtitle\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"last_name\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/last_name\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"middle_name\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/middle_name\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"mobile\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/mobile\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"phone\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/phone\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"suffix\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/suffix\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"title\": {\r","                                \"$id\": \"#/properties/_LIST_CONTACTS_Result/items/anyOf/0/properties/title\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"48769b72-879d-4915-814b-1dee0ecf3c29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{client_id}}\"\n}"},"url":"{{url}}/client.svc/list-contacts","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","list-contacts"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"48769b72-879d-4915-814b-1dee0ecf3c29"},{"name":"contact (get)","event":[{"listen":"test","script":{"id":"0bc3e937-ab0b-4047-bedf-0618b695db3c","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e476bf72-1cf1-46b6-9236-24c90b0d93e7","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_CONTACT_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_CONTACT_Result\": {\r","            \"$id\": \"#/properties/_GET_CONTACT_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"email\",\r","                \"fax\",\r","                \"first_name\",\r","                \"id\",\r","                \"jobtitle\",\r","                \"last_name\",\r","                \"middle_name\",\r","                \"mobile\",\r","                \"phone\",\r","                \"principal\",\r","                \"suffix\",\r","                \"title\"\r","            ],\r","            \"properties\": {\r","                \"email\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/email\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"fax\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/fax\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"first_name\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/first_name\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"jobtitle\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/jobtitle\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"last_name\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/last_name\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"middle_name\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/middle_name\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"mobile\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/mobile\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"phone\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/phone\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"principal\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/principal\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"suffix\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/suffix\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_GET_CONTACT_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"242759e1-8da9-4a15-856b-e777729745a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"contact_id\": \"{{contact_id}}\"\n}"},"url":"{{url}}/client.svc/get-contact","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","get-contact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"242759e1-8da9-4a15-856b-e777729745a1"},{"name":"contact (post)","event":[{"listen":"test","script":{"id":"fd1f765e-d326-4e49-b97a-d01d9a1d6924","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ad28acb4-a1c9-41e4-b787-b32246362a77","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_POST_CONTACT_Result\"\r","    ],\r","    \"properties\": {\r","        \"_POST_CONTACT_Result\": {\r","            \"$id\": \"#/properties/_POST_CONTACT_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_POST_CONTACT_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"960e025e-b93e-4951-96d4-dfab93b525dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{client_id}}\",\n    \"data\": {\n        \"email\": \"fakeemail@salengo.com; fakeemail2@salengo.com\",\n        \"fax\": \"+339990011\",\n        \"first_name\": \"Bill\",\n        \"id\": \"{{contact_id}}\",\n        \"jobtitle\": \"CEO\",\n        \"last_name\": \"Gates\",\n        \"middle_name\": \"\",\n        \"mobile\": \"+3366677788\",\n        \"phone\": \"+3355522211\",\n        \"principal\": true,\n        \"suffix\": \"\",\n        \"title\": \"Mr\"\n    }\n}"},"url":"{{url}}/client.svc/post-contact","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","post-contact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"960e025e-b93e-4951-96d4-dfab93b525dc"},{"name":"contact (delete)","event":[{"listen":"test","script":{"id":"f5df8ab5-0ca4-45d7-a939-fc7dc061b41d","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"4a687204-31cf-465f-b373-d62303d03776","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_DELETE_CONTACT_Result\"\r","    ],\r","    \"properties\": {\r","        \"_DELETE_CONTACT_Result\": {\r","            \"$id\": \"#/properties/_DELETE_CONTACT_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_DELETE_CONTACT_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"6935fb8a-06b5-4dd9-9636-25533707e7da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\" : \"{{client_id}}\",\n    \"contact_id\": \"019f425f-b401-48c7-a2da-d8dc70169d6e\"\n}"},"url":"{{url}}/client.svc/delete-contact","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","delete-contact"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6935fb8a-06b5-4dd9-9636-25533707e7da"},{"name":"address (list)","event":[{"listen":"test","script":{"id":"26983d1b-fe90-4bab-a588-8e35b16d9b36","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"57f5a40e-7104-4a00-ab89-949f41eb9582","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_ADDRESSES_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_ADDRESSES_Result\": {\r","            \"$id\": \"#/properties/_LIST_ADDRESSES_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"city\",\r","                            \"country\",\r","                            \"id\",\r","                            \"name\",\r","                            \"principal\",\r","                            \"state\",\r","                            \"street1\",\r","                            \"street2\",\r","                            \"target_delivery\",\r","                            \"target_invoice\",\r","                            \"tradename\",\r","                            \"zipcode\"\r","                        ],\r","                        \"properties\": {\r","                            \"city\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/city\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"country\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/country\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"name\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/name\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"principal\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/principal\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"state\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/state\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street1\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/street1\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"street2\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/street2\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"target_delivery\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/target_delivery\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"target_invoice\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/target_invoice\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"tradename\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/tradename\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"zipcode\": {\r","                                \"$id\": \"#/properties/_LIST_ADDRESSES_Result/items/anyOf/0/properties/zipcode\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"f98e45a8-33e2-49fb-82f5-b709fba7889a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{client_id}}\"\n}"},"url":"{{url}}/client.svc/list-addresses","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","list-addresses"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f98e45a8-33e2-49fb-82f5-b709fba7889a"},{"name":"address (get)","event":[{"listen":"test","script":{"id":"b9f8dc71-a2c4-4c4a-b794-d9b3bdf3fff1","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9f56a896-f2a1-4a89-9f23-e8d8c310e0fd","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_ADDRESS_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_ADDRESS_Result\": {\r","            \"$id\": \"#/properties/_GET_ADDRESS_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"city\",\r","                \"country\",\r","                \"id\",\r","                \"name\",\r","                \"principal\",\r","                \"state\",\r","                \"street1\",\r","                \"street2\",\r","                \"target_delivery\",\r","                \"target_invoice\",\r","                \"tradename\",\r","                \"zipcode\"\r","            ],\r","            \"properties\": {\r","                \"city\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/city\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"country\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/country\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/name\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"principal\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/principal\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"state\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/state\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"street1\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/street1\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"street2\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/street2\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"target_delivery\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/target_delivery\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"target_invoice\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/target_invoice\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"tradename\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/tradename\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"zipcode\": {\r","                    \"$id\": \"#/properties/_GET_ADDRESS_Result/properties/zipcode\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"8d474243-ffde-4b6d-b22d-f31e6228a9e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"address_id\": \"{{address_id}}\"\n}"},"url":"{{url}}/client.svc/get-address","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","get-address"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d474243-ffde-4b6d-b22d-f31e6228a9e5"},{"name":"address (post)","event":[{"listen":"test","script":{"id":"f176e2c6-4377-495e-adf6-e6b45f34e2a0","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"96aacdd4-5134-42f6-9685-bc2bb7e6ac25","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_POST_ADDRESS_Result\"\r","    ],\r","    \"properties\": {\r","        \"_POST_ADDRESS_Result\": {\r","            \"$id\": \"#/properties/_POST_ADDRESS_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_POST_ADDRESS_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"7d3602e6-d163-41d0-90c3-86c05306b66f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{client_id}}\",\n    \"data\": {\n        \"city\": \"Le thon\",\n        \"country\": \"France\",\n        \"id\": \"{{address_id}}\",\n        \"name\": \"DEMO_F DEMO_L\",\n        \"principal\": true,\n        \"state\": \"IDF\",\n        \"street1\": \"1 rue de la moche\",\n        \"street2\": \"lieut dit\",\n        \"target_delivery\": true,\n        \"target_invoice\": true,\n        \"tradename\": \"DEMO_F DEMO_L\",\n        \"zipcode\": \"92000\"\n    }\n}"},"url":"{{url}}/client.svc/post-address","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","post-address"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d3602e6-d163-41d0-90c3-86c05306b66f"},{"name":"address (delete)","event":[{"listen":"test","script":{"id":"4c0bedf4-4794-4699-8a09-94497eb0ef39","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ab305146-7cab-4274-b170-c796fb30db03","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_DELETE_ADDRESS_Result\"\r","    ],\r","    \"properties\": {\r","        \"_DELETE_ADDRESS_Result\": {\r","            \"$id\": \"#/properties/_DELETE_ADDRESS_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_DELETE_ADDRESS_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"5cc5c390-52fe-4789-ad1b-f5ba50113b80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\" : \"{{client_id}}\",\n    \"address_id\": \"6bde0d90-ac13-4b7f-868f-1e27931a6a13\"\n}"},"url":"{{url}}/client.svc/delete-address","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","delete-address"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cc5c390-52fe-4789-ad1b-f5ba50113b80"},{"name":"lead-source (list)","event":[{"listen":"test","script":{"id":"0499388d-9c53-44a2-93ab-4b9a3266dbad","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ad93e64b-c147-4053-95b7-a9dc534075f5","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"title\": \"The first anyOf schema\",\r","                \"description\": \"An explanation about the purpose of this instance.\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"data\",\r","                    \"id\"\r","                ],\r","                \"properties\": {\r","                    \"data\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/data\",\r","                        \"type\": \"string\",\r","                        \"title\": \"The data schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": \"\"\r","                    },\r","                    \"id\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/id\",\r","                        \"type\": \"string\",\r","                        \"title\": \"The id schema\",\r","                        \"description\": \"An explanation about the purpose of this instance.\",\r","                        \"default\": \"\"\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"62316c87-34bf-4a9e-aa6c-2804602e2508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"{{client_id}}\"\n}"},"url":"{{url}}/client.svc/list-leadsource","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","list-leadsource"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"62316c87-34bf-4a9e-aa6c-2804602e2508"},{"name":"lead-source (get)","event":[{"listen":"test","script":{"id":"a88b51eb-fd67-4336-9166-0bb631de9c24","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2bcdffa4-61ed-4559-8e11-a88f4b2ad99d","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_LEAD_SOURCE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_LEAD_SOURCE_Result\": {\r","            \"$id\": \"#/properties/_GET_LEAD_SOURCE_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"data\",\r","                \"id\"\r","            ],\r","            \"properties\": {\r","                \"data\": {\r","                    \"$id\": \"#/properties/_GET_LEAD_SOURCE_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_GET_LEAD_SOURCE_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"4719b569-d29b-43bd-8af7-cca05fcd3ff8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"lead_source_id\": \"{{lead_source_id}}\"\n}"},"url":"{{url}}/client.svc/get-leadsource","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","get-leadsource"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4719b569-d29b-43bd-8af7-cca05fcd3ff8"},{"name":"leadsource (post)","event":[{"listen":"test","script":{"id":"bce2e9ec-5180-4484-8f17-9b503294ba96","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"b5b1d66f-19d9-412a-b520-7851d2511ef9","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_POST_LEAD_SOURCE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_POST_LEAD_SOURCE_Result\": {\r","            \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_POST_LEAD_SOURCE_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"44201162-1d87-4088-a8aa-ba2bc08f48f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"data\": \"Conference\",\n    \"lead-source-id\": \"{{lead_source_id}}\"\n}"},"url":"{{url}}/client.svc/post-leadsource","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","post-leadsource"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"44201162-1d87-4088-a8aa-ba2bc08f48f9"},{"name":"leadsource (delete)","event":[{"listen":"test","script":{"id":"e598dcd1-eda9-46f7-8bb6-fc73375c8ba4","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ed7e396b-3fe8-440b-a52e-6ff6327106e5","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_DELETE_LEAD_SOURCE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_DELETE_LEAD_SOURCE_Result\": {\r","            \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_DELETE_LEAD_SOURCE_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"4732beeb-d583-4d59-9214-1fb4a8f8c775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"lead_source_id\": \"4\"\n}"},"url":"{{url}}/client.svc/delete-leadsource","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","delete-leadsource"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4732beeb-d583-4d59-9214-1fb4a8f8c775"},{"name":"list-contacts-id","event":[{"listen":"test","script":{"id":"c8e3c1db-66c3-48d6-a86f-13065fcf0727","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"3874091f-8e56-4129-bea7-caf92a1cfc31","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"id\",\r","                    \"updatedate\"\r","                ],\r","                \"properties\": {\r","                    \"id\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/id\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"updatedate\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/updatedate\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"fa65b542-ff49-4a33-bcd9-184b57381ec3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n\t\"folder\": 0\n}"},"url":"{{url}}/client.svc/list-contacts-id","description":"<p>Retrieve only full list of contact_id and last change datetime based.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","list-contacts-id"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa65b542-ff49-4a33-bcd9-184b57381ec3"},{"name":"list-clients-id","event":[{"listen":"test","script":{"id":"f3538c83-5b0c-4fb6-9deb-e6f89317cf6b","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"8d921371-06fa-4532-8e18-c3dcacc01ea4","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"id\",\r","                    \"updatedate\"\r","                ],\r","                \"properties\": {\r","                    \"id\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/id\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"updatedate\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/updatedate\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"38448a82-b266-436f-afa9-ef0a3a0ba27c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n\t\"folder\": 0\n}"},"url":"{{url}}/client.svc/list-clients-id","description":"<p>Retrieve only full list of clients_id and last change datetime based.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["client.svc","list-clients-id"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"38448a82-b266-436f-afa9-ef0a3a0ba27c"}],"id":"806850af-4a0d-2cc9-3fa2-7c72d05a4dab","description":"<p><code>Clients</code> are all the customers that a SalenGo account has saved, for use on <code>invoices</code>, <code>estimates</code>, <code>deliveries</code>, etc.</p>\n\n<h3>Parameters <code>search</code></h3>\n<pre>\n {\n    \"reference\": \"\",\n    \"company\": \"\",\n    \"address\": \"\",\n    \"contact\": \"\",\n    \"email\": \"\",\n    \"smarttags\": \"\",\n }\n</pre>\n\n<h3>Parameters <code>params</code></h3>\n<pre>\n {\n    \"folder\" : 0,\n    \"pagination\" : {\n        \"perpage\": 10,\n        \"page\" :1\n        }\n }\n</pre>","event":[{"listen":"prerequest","script":{"id":"d93f197b-4b8f-42fb-81dc-d9e92dbf98ba","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"28fe0dd0-f136-4f75-8c39-3bf589ad272c","type":"text/javascript","exec":[""]}}],"_postman_id":"806850af-4a0d-2cc9-3fa2-7c72d05a4dab","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"DOCUMENT","item":[{"name":"[model]","event":[{"listen":"test","script":{"id":"e99de54c-6b94-405e-a681-af20bf99555e","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"668cde29-6c83-492d-8453-21b4610397e4","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"document_id\",\r","        \"document_type\",\r","        \"is_supplier\",\r","        \"general\",\r","        \"supplier\",\r","        \"template\",\r","        \"delivery\",\r","        \"grid\",\r","        \"information\",\r","        \"options\",\r","        \"payment\",\r","        \"show\"\r","    ],\r","    \"properties\": {\r","        \"document_id\": {\r","            \"$id\": \"#/properties/document_id\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"document_type\": {\r","            \"$id\": \"#/properties/document_type\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"is_supplier\": {\r","            \"$id\": \"#/properties/is_supplier\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        },\r","        \"general\": {\r","            \"$id\": \"#/properties/general\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"currency\",\r","                \"dateissue\",\r","                \"deposit\",\r","                \"number\",\r","                \"ponumber\",\r","                \"client\",\r","                \"contact\",\r","                \"address\",\r","                \"discount\",\r","                \"validity\",\r","                \"description\",\r","                \"customfields\",\r","                \"smarttags\"\r","            ],\r","            \"properties\": {\r","                \"currency\": {\r","                    \"$id\": \"#/properties/general/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"dateissue\": {\r","                    \"$id\": \"#/properties/general/properties/dateissue\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"deposit\": {\r","                    \"$id\": \"#/properties/general/properties/deposit\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"target\",\r","                        \"unit\",\r","                        \"value\"\r","                    ],\r","                    \"properties\": {\r","                        \"target\": {\r","                            \"$id\": \"#/properties/general/properties/deposit/properties/target\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"unit\": {\r","                            \"$id\": \"#/properties/general/properties/deposit/properties/unit\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"value\": {\r","                            \"$id\": \"#/properties/general/properties/deposit/properties/value\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"number\": {\r","                    \"$id\": \"#/properties/general/properties/number\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"ponumber\": {\r","                    \"$id\": \"#/properties/general/properties/ponumber\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"client\": {\r","                    \"$id\": \"#/properties/general/properties/client\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"id\"\r","                    ],\r","                    \"properties\": {\r","                        \"id\": {\r","                            \"$id\": \"#/properties/general/properties/client/properties/id\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"contact\": {\r","                    \"$id\": \"#/properties/general/properties/contact\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"id\"\r","                    ],\r","                    \"properties\": {\r","                        \"id\": {\r","                            \"$id\": \"#/properties/general/properties/contact/properties/id\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"address\": {\r","                    \"$id\": \"#/properties/general/properties/address\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"id\"\r","                    ],\r","                    \"properties\": {\r","                        \"id\": {\r","                            \"$id\": \"#/properties/general/properties/address/properties/id\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"discount\": {\r","                    \"$id\": \"#/properties/general/properties/discount\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"target\",\r","                        \"unit\",\r","                        \"value\"\r","                    ],\r","                    \"properties\": {\r","                        \"target\": {\r","                            \"$id\": \"#/properties/general/properties/discount/properties/target\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"unit\": {\r","                            \"$id\": \"#/properties/general/properties/discount/properties/unit\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"value\": {\r","                            \"$id\": \"#/properties/general/properties/discount/properties/value\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"validity\": {\r","                    \"$id\": \"#/properties/general/properties/validity\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"description\": {\r","                    \"$id\": \"#/properties/general/properties/description\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"customfields\": {\r","                    \"$id\": \"#/properties/general/properties/customfields\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/general/properties/customfields/items\"\r","                    }\r","                },\r","                \"smarttags\": {\r","                    \"$id\": \"#/properties/general/properties/smarttags\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/general/properties/smarttags/items\"\r","                    }\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"supplier\": {\r","            \"$id\": \"#/properties/supplier\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"number\",\r","                \"received\"\r","            ],\r","            \"properties\": {\r","                \"number\": {\r","                    \"$id\": \"#/properties/supplier/properties/number\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"received\": {\r","                    \"$id\": \"#/properties/supplier/properties/received\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"template\": {\r","            \"$id\": \"#/properties/template\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"catalog_id\",\r","                \"language\",\r","                \"model_id\"\r","            ],\r","            \"properties\": {\r","                \"catalog_id\": {\r","                    \"$id\": \"#/properties/template/properties/catalog_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"language\": {\r","                    \"$id\": \"#/properties/template/properties/language\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"model_id\": {\r","                    \"$id\": \"#/properties/template/properties/model_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"delivery\": {\r","            \"$id\": \"#/properties/delivery\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"delivery\",\r","                \"hide_delivery\",\r","                \"hide_pickup\",\r","                \"hide_price\",\r","                \"notes\",\r","                \"pickup\",\r","                \"return\",\r","                \"show_pickup_control\",\r","                \"show_receipt_control\"\r","            ],\r","            \"properties\": {\r","                \"delivery\": {\r","                    \"$id\": \"#/properties/delivery/properties/delivery\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"address\",\r","                        \"date\",\r","                        \"fullday\",\r","                        \"time1\",\r","                        \"time2\"\r","                    ],\r","                    \"properties\": {\r","                        \"address\": {\r","                            \"$id\": \"#/properties/delivery/properties/delivery/properties/address\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"id\",\r","                                \"name\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"id\": {\r","                                    \"$id\": \"#/properties/delivery/properties/delivery/properties/address/properties/id\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"name\": {\r","                                    \"$id\": \"#/properties/delivery/properties/delivery/properties/address/properties/name\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/delivery/properties/delivery/properties/address/properties/value\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"date\": {\r","                            \"$id\": \"#/properties/delivery/properties/delivery/properties/date\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"fullday\": {\r","                            \"$id\": \"#/properties/delivery/properties/delivery/properties/fullday\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"time1\": {\r","                            \"$id\": \"#/properties/delivery/properties/delivery/properties/time1\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"time2\": {\r","                            \"$id\": \"#/properties/delivery/properties/delivery/properties/time2\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"hide_delivery\": {\r","                    \"$id\": \"#/properties/delivery/properties/hide_delivery\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"hide_pickup\": {\r","                    \"$id\": \"#/properties/delivery/properties/hide_pickup\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"hide_price\": {\r","                    \"$id\": \"#/properties/delivery/properties/hide_price\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"notes\": {\r","                    \"$id\": \"#/properties/delivery/properties/notes\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"pickup\": {\r","                    \"$id\": \"#/properties/delivery/properties/pickup\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"address\",\r","                        \"date\",\r","                        \"fullday\",\r","                        \"time1\",\r","                        \"time2\"\r","                    ],\r","                    \"properties\": {\r","                        \"address\": {\r","                            \"$id\": \"#/properties/delivery/properties/pickup/properties/address\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"id\",\r","                                \"name\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"id\": {\r","                                    \"$id\": \"#/properties/delivery/properties/pickup/properties/address/properties/id\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"name\": {\r","                                    \"$id\": \"#/properties/delivery/properties/pickup/properties/address/properties/name\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/delivery/properties/pickup/properties/address/properties/value\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"date\": {\r","                            \"$id\": \"#/properties/delivery/properties/pickup/properties/date\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"fullday\": {\r","                            \"$id\": \"#/properties/delivery/properties/pickup/properties/fullday\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"time1\": {\r","                            \"$id\": \"#/properties/delivery/properties/pickup/properties/time1\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"time2\": {\r","                            \"$id\": \"#/properties/delivery/properties/pickup/properties/time2\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"return\": {\r","                    \"$id\": \"#/properties/delivery/properties/return\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"address\",\r","                        \"date\",\r","                        \"fullday\",\r","                        \"time1\",\r","                        \"time2\"\r","                    ],\r","                    \"properties\": {\r","                        \"address\": {\r","                            \"$id\": \"#/properties/delivery/properties/return/properties/address\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"id\",\r","                                \"name\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"id\": {\r","                                    \"$id\": \"#/properties/delivery/properties/return/properties/address/properties/id\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"name\": {\r","                                    \"$id\": \"#/properties/delivery/properties/return/properties/address/properties/name\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/delivery/properties/return/properties/address/properties/value\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"date\": {\r","                            \"$id\": \"#/properties/delivery/properties/return/properties/date\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"fullday\": {\r","                            \"$id\": \"#/properties/delivery/properties/return/properties/fullday\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"time1\": {\r","                            \"$id\": \"#/properties/delivery/properties/return/properties/time1\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"time2\": {\r","                            \"$id\": \"#/properties/delivery/properties/return/properties/time2\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"show_pickup_control\": {\r","                    \"$id\": \"#/properties/delivery/properties/show_pickup_control\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"show_receipt_control\": {\r","                    \"$id\": \"#/properties/delivery/properties/show_receipt_control\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"grid\": {\r","            \"$id\": \"#/properties/grid\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/grid/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/grid/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"catalog_id\",\r","                            \"description\",\r","                            \"discount\",\r","                            \"invisible\",\r","                            \"pack\",\r","                            \"pack_calcul\",\r","                            \"price\",\r","                            \"price_gross\",\r","                            \"product_id\",\r","                            \"products_pack_list\",\r","                            \"quantity\",\r","                            \"reference\",\r","                            \"row_type\",\r","                            \"unit\",\r","                            \"vat1\",\r","                            \"vat2\",\r","                            \"weight\"\r","                        ],\r","                        \"properties\": {\r","                            \"catalog_id\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/catalog_id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"description\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/description\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"discount\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/discount\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"target\",\r","                                    \"unit\",\r","                                    \"value\"\r","                                ],\r","                                \"properties\": {\r","                                    \"target\": {\r","                                        \"$id\": \"#/properties/grid/items/anyOf/0/properties/discount/properties/target\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"unit\": {\r","                                        \"$id\": \"#/properties/grid/items/anyOf/0/properties/discount/properties/unit\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"value\": {\r","                                        \"$id\": \"#/properties/grid/items/anyOf/0/properties/discount/properties/value\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"invisible\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/invisible\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"pack\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/pack\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"pack_calcul\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/pack_calcul\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"price\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/price\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"price_gross\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/price_gross\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"product_id\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/product_id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"products_pack_list\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/products_pack_list\",\r","                                \"type\": \"null\",\r","                                \"default\": null\r","                            },\r","                            \"quantity\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/quantity\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"row_type\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/row_type\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"unit\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/unit\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"vat1\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/vat1\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"vat2\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/vat2\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"weight\": {\r","                                \"$id\": \"#/properties/grid/items/anyOf/0/properties/weight\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"information\": {\r","            \"$id\": \"#/properties/information\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"notes\",\r","                \"terms\"\r","            ],\r","            \"properties\": {\r","                \"notes\": {\r","                    \"$id\": \"#/properties/information/properties/notes\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"terms\": {\r","                    \"$id\": \"#/properties/information/properties/terms\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"options\": {\r","            \"$id\": \"#/properties/options\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"caterer\"\r","            ],\r","            \"properties\": {\r","                \"caterer\": {\r","                    \"$id\": \"#/properties/options/properties/caterer\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"payment\": {\r","            \"$id\": \"#/properties/payment\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"duedate\",\r","                \"payments\",\r","                \"show_payment\"\r","            ],\r","            \"properties\": {\r","                \"duedate\": {\r","                    \"$id\": \"#/properties/payment/properties/duedate\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"choice\",\r","                        \"days\",\r","                        \"decade\",\r","                        \"eom\",\r","                        \"installment\",\r","                        \"xdate\"\r","                    ],\r","                    \"properties\": {\r","                        \"choice\": {\r","                            \"$id\": \"#/properties/payment/properties/duedate/properties/choice\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"days\": {\r","                            \"$id\": \"#/properties/payment/properties/duedate/properties/days\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"decade\": {\r","                            \"$id\": \"#/properties/payment/properties/duedate/properties/decade\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"eom\": {\r","                            \"$id\": \"#/properties/payment/properties/duedate/properties/eom\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"installment\": {\r","                            \"$id\": \"#/properties/payment/properties/duedate/properties/installment\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"xdate\": {\r","                            \"$id\": \"#/properties/payment/properties/duedate/properties/xdate\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"payments\": {\r","                    \"$id\": \"#/properties/payment/properties/payments\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"show_check\",\r","                        \"show_online\",\r","                        \"show_wire\"\r","                    ],\r","                    \"properties\": {\r","                        \"show_check\": {\r","                            \"$id\": \"#/properties/payment/properties/payments/properties/show_check\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"show_online\": {\r","                            \"$id\": \"#/properties/payment/properties/payments/properties/show_online\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"show_wire\": {\r","                            \"$id\": \"#/properties/payment/properties/payments/properties/show_wire\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"show_payment\": {\r","                    \"$id\": \"#/properties/payment/properties/show_payment\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"show\": {\r","            \"$id\": \"#/properties/show\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"show_pdf_pack\",\r","                \"signandagreement\",\r","                \"signandstamp\"\r","            ],\r","            \"properties\": {\r","                \"show_pdf_pack\": {\r","                    \"$id\": \"#/properties/show/properties/show_pdf_pack\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"signandagreement\": {\r","                    \"$id\": \"#/properties/show/properties/signandagreement\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"description\",\r","                        \"value\"\r","                    ],\r","                    \"properties\": {\r","                        \"description\": {\r","                            \"$id\": \"#/properties/show/properties/signandagreement/properties/description\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"value\": {\r","                            \"$id\": \"#/properties/show/properties/signandagreement/properties/value\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"signandstamp\": {\r","                    \"$id\": \"#/properties/show/properties/signandstamp\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"description\",\r","                        \"value\"\r","                    ],\r","                    \"properties\": {\r","                        \"description\": {\r","                            \"$id\": \"#/properties/show/properties/signandstamp/properties/description\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"value\": {\r","                            \"$id\": \"#/properties/show/properties/signandstamp/properties/value\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"9cfd26cf-3b98-9cb8-ff26-448ead708e81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/document.svc/","description":"<p>These are all the JSON-schemas for SalenGo API.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9cfd26cf-3b98-9cb8-ff26-448ead708e81"},{"name":"[enum] document type","event":[{"listen":"test","script":{"id":"a88469de-e095-44b8-89ae-caadbe6ebcd4","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ae5fc01d-dc89-47df-aa27-533459b34dc5","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"name\",\r","                    \"value\"\r","                ],\r","                \"properties\": {\r","                    \"name\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/name\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"value\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/value\",\r","                        \"type\": \"integer\",\r","                        \"default\": 0\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"b1fa0160-15f9-46bf-b845-557442b52578","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/document.svc/enum/type","description":"<p>GET list of defined type of documents</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","enum","type"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1fa0160-15f9-46bf-b845-557442b52578"},{"name":"[enum] document status","event":[{"listen":"test","script":{"id":"a88469de-e095-44b8-89ae-caadbe6ebcd4","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"0d8ed983-e2ac-4a17-b5fa-06e062616b54","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"group_name\",\r","                    \"list\"\r","                ],\r","                \"properties\": {\r","                    \"group_name\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/group_name\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"list\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/list\",\r","                        \"type\": \"array\",\r","                        \"default\": [],\r","                        \"additionalItems\": true,\r","                        \"items\": {\r","                            \"$id\": \"#/items/anyOf/0/properties/list/items\",\r","                            \"anyOf\": [\r","                                {\r","                                    \"$id\": \"#/items/anyOf/0/properties/list/items/anyOf/0\",\r","                                    \"type\": \"object\",\r","                                    \"default\": {},\r","                                    \"required\": [\r","                                        \"name\",\r","                                        \"value\"\r","                                    ],\r","                                    \"properties\": {\r","                                        \"name\": {\r","                                            \"$id\": \"#/items/anyOf/0/properties/list/items/anyOf/0/properties/name\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        },\r","                                        \"value\": {\r","                                            \"$id\": \"#/items/anyOf/0/properties/list/items/anyOf/0/properties/value\",\r","                                            \"type\": \"integer\",\r","                                            \"default\": 0\r","                                        }\r","                                    },\r","                                    \"additionalProperties\": true\r","                                }\r","                            ]\r","                        }\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"17ce1f44-df4a-4a22-b4f7-4013d1905cd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/document.svc/enum/status","description":"<p>GET list of defined status for documents and production documents</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","enum","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"17ce1f44-df4a-4a22-b4f7-4013d1905cd2"},{"name":"list","event":[{"listen":"test","script":{"id":"c27e0bf8-50d9-4446-be5a-5f83ccb2d65d","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"4cda569c-385e-4d16-8e1b-074a87441104","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_Result\": {\r","            \"$id\": \"#/properties/_LIST_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"client\",\r","                            \"client_reference\",\r","                            \"currency_code\",\r","                            \"date_accepted\",\r","                            \"date_due\",\r","                            \"date_issue\",\r","                            \"delivery\",\r","                            \"description\",\r","                            \"description_model\",\r","                            \"document_id\",\r","                            \"invoice\",\r","                            \"is_deposit\",\r","                            \"payments\",\r","                            \"recurring\",\r","                            \"reference\",\r","                            \"reminder\",\r","                            \"sent\",\r","                            \"shipping\",\r","                            \"smarttags\",\r","                            \"status\",\r","                            \"total_deposit\",\r","                            \"total_due\",\r","                            \"total_net\",\r","                            \"total_paid\",\r","                            \"total_sales\",\r","                            \"total_vat\"\r","                        ],\r","                        \"properties\": {\r","                            \"client\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/client\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"client_reference\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/client_reference\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"currency_code\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency_code\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"date_accepted\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/date_accepted\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"date_due\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/date_due\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"date_issue\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/date_issue\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"delivery\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/delivery\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"date\",\r","                                    \"time01\",\r","                                    \"time02\"\r","                                ],\r","                                \"properties\": {\r","                                    \"date\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/delivery/properties/date\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"time01\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/delivery/properties/time01\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"time02\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/delivery/properties/time02\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"description\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/description\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"description_model\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/description_model\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"document_id\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/document_id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"invoice\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/invoice\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"id\",\r","                                    \"number\"\r","                                ],\r","                                \"properties\": {\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/invoice/properties/id\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"number\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/invoice/properties/number\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"is_deposit\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/is_deposit\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"payments\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/payments\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"recurring\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/recurring\",\r","                                \"type\": \"null\",\r","                                \"default\": null\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"reminder\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/reminder\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"sent\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/sent\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"shipping\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/shipping\",\r","                                \"type\": \"null\",\r","                                \"default\": null\r","                            },\r","                            \"smarttags\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/smarttags\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"status\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/status\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"total_deposit\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/total_deposit\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"total_due\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/total_due\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"total_net\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/total_net\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"total_paid\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/total_paid\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"total_sales\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/total_sales\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"total_vat\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/total_vat\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"0b6da9e0-04d2-5c94-7bde-4028ca7ca81d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n\t\"type\" : 1,\n\t\"search\": { },\n\t\"params\": {\n\t\t\"folder\" : 0,\n\t\t\"pagination\" : {\n\t\t\t\"perpage\": 10,\n\t\t\t\"page\" :1\n\t\t}\n\t}\n}"},"url":"{{url}}/document.svc/list","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b6da9e0-04d2-5c94-7bde-4028ca7ca81d"},{"name":"create","event":[{"listen":"test","script":{"id":"0be2a737-ce89-47a9-aad8-e22f09febea5","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"14a52d18-5358-478b-b9bf-6c4a5d8ddef3","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_CREATE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_CREATE_Result\": {\r","            \"$id\": \"#/properties/_CREATE_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_CREATE_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"6963d866-f8dd-13f6-550e-26df0f8661a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"document_id\": \"{{document_id}}\",\n        \"document_type\": \"invoice\",\n        \"general\": {\n            \"currency\": 978,\n            \"dateissue\": \"2018-06-28\",\n            \"deposit\": {\n                \"target\": 1,\n                \"unit\": 0,\n                \"value\": 0\n            },\n            \"number\": \"F-001004\",\n            \"ponumber\": \"PO-1234\",\n            \"client\": {\n                \"id\": \"a907b1f5-ee68-420c-91b7-3c05065005c0\"\n            },\n            \"contact\": {\n                \"id\": \"744f5250-e4b3-4810-b789-0c876843d97e\"\n            },\n            \"address\": {\n                \"id\": \"c0c01f6d-33f4-4fdd-92e5-28773a9662f5\"\n            },\n            \"discount\": {\n                \"target\": 0,\n                \"unit\": 0,\n                \"value\": 0\n            },\n            \"validity\": 0,\n            \"description\": \"This is a generated API invoice !!!\",\n            \"customfields\": [\n                {\n                    \"code\": \"AZEZ\",\n                    \"description\": \"\",\n                    \"name\": \"\",\n                    \"type\": \"numeric\",\n                    \"unit\": null,\n                    \"value\": \"555\"\n                },\n                {\n                    \"code\": \"REF_COMMANDE\",\n                    \"description\": \"\",\n                    \"name\": \"\",\n                    \"type\": \"simpletext\",\n                    \"unit\": null,\n                    \"value\": \"\"\n                }\n            ],\n            \"smarttags\": []\n        },\n        \"template\": {\n            \"catalog_id\": null,\n            \"language\": \"fr\",\n            \"model_id\": \"D00002\"\n        },\n        \"delivery\": {\n            \"delivery\": {\n                \"address\": {\n                    \"id\": \"93c2635c-195b-4ede-aa1e-341180327df5\"\n                },\n                \"date\": \"2018-06-21\",\n                \"fullday\": false,\n                \"time1\": 0,\n                \"time2\": 0\n            },\n            \"hide_delivery\": false,\n            \"hide_pickup\": true,\n            \"hide_price\": true,\n            \"notes\": \"\",\n            \"pickup\": {\n                \"address\": {\n                    \"id\": \"\"\n                },\n                \"date\": \"0001-01-01\",\n                \"fullday\": false,\n                \"time1\": 0,\n                \"time2\": 0\n            },\n            \"return\": {\n                \"address\": {\n                    \"id\": \"\"\n                },\n                \"date\": \"0001-01-01\",\n                \"fullday\": false,\n                \"time1\": 0,\n                \"time2\": 0\n            },\n            \"show_pickup_control\": false,\n            \"show_receipt_control\": false\n        },\n        \"grid\": [\n            {\n                \"row_type\": 0,\n                \"product_id\": \"b8737523-4cab-4b85-a47f-f6c65a6ea300\",\n                \"catalog_id\": \"41f0d4ab-7c64-4b7a-98a3-5ac8a61f672a\",\n                \"description\": \"<p><b>Water «Source» 33 cL : Mission ECOLOGY XXA</b></p>\",\n                \"quantity\": 5,\n                \"vat1\": 20,\n                \"vat2\": 0\n            },\n            {\n            \t\"product_id\": \"388bf4dd-e402-4819-988d-847eb371fc21\",\n            \t\"reference\": \"PACK-METRO-C001\",\n                \"description\": \"<b>pack C001 in test mode</b>\",\n                \"catalog_id\": \"41f0d4ab-7c64-4b7a-98a3-5ac8a61f672a\",\n                \"pack\": true,\n                \"pack_calcul\": 1,\n                \"price\": 67.2,\n                \"quantity\": 7,\n                \"products_pack_list\": [\n                    {\n                        \"invisible\": false,\n                        \"pack_product_id\": \"00cb9e28-416b-4ca6-bb0e-6872583e4c2d\",\n                        \"quantity\": 5\n                    }\n                    \n                ]\n            }\n        ],\n        \"information\": {\n            \"notes\": \"\",\n            \"terms\": \"<p>P&eacute;nalit&eacute;s de retard: Conform&eacute;ment &agrave; la Loi n° 93-122 du 29 janvier 1993, les p&eacute;nalit&eacute;s de retard sont calcul&eacute;es ou taux d&#39;int&eacute;r&ecirc;t annuel &eacute;gal &agrave; trois fois le taux d&#39;int&eacute;r&ecirc;t l&eacute;gal de l&#39;ann&eacute;e en cours, et ce d&egrave;s le premier jour de retard.</p>\"\n        },\n        \"options\": {\n            \"caterer\": null\n        },\n        \"payment\": {\n            \"duedate\": {\n                \"choice\": \"0\",\n                \"days\": 0,\n                \"decade\": false,\n                \"eom\": false,\n                \"installment\": \"\",\n                \"xdate\": \"2018-06-21\"\n            },\n            \"payments\": {\n                \"info_check\": \"Lorem Ipsum\\r\\n1 rue Lorem Ipsum\\r\\n75000 Lorem\\r\\nFrance\\r\\nNotes: Lorem Ipsum\",\n                \"info_online\": [\n                    \"CMCIC,\"\n                ],\n                \"info_wire\": \"Lorem Ipsum\\r\\nRIB: 012345 012456789 012345678999 55\\r\\nIBAN: FR11 44426 5545454 846541354645\\r\\nSWIFT: CVBCXV\",\n                \"show_check\": true,\n                \"show_online\": true,\n                \"show_wire\": true\n            },\n            \"show_payment\": true\n        },\n        \"show\": {\n            \"show_pdf_pack\": true,\n            \"signandagreement\": {\n                \"description\": \"\",\n                \"value\": true\n            },\n            \"signandstamp\": {\n                \"description\": \"\",\n                \"value\": true\n            }\n        }\n    }\n}\n"},"url":"{{url}}/document.svc/create","description":"<p>To be decommissioned soon (please replace with POST)</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","create"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6963d866-f8dd-13f6-550e-26df0f8661a4"},{"name":"post","event":[{"listen":"test","script":{"id":"0be2a737-ce89-47a9-aad8-e22f09febea5","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"5e88fa38-9ea9-4aca-bf08-6a02fb96baa1","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_POST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_POST_Result\": {\r","            \"$id\": \"#/properties/_POST_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"d5eba8d2-4b78-4f62-a62b-b8c7f2da166a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"document_id\": \"\",\n        \"document_type\": \"invoice\",\n        \n        \"general\": {\n            \"currency\": 840,\n            \"dateissue\": \"2012-12-11\",\n            \"deposit\": {\n                \"target\": 1,\n                \"unit\": 0,\n                \"value\": 0\n            },\n            \"number\": \"\",\n            \"ponumber\": null,\n            \"client\": {\n                \"id\": \"a2a07f5c-4b09-45e2-ab6c-53245099fb2a\"\n            },\n            \"contact\": {\n                \"id\": \"\"\n            },\n            \"address\": {\n                \"id\": \"\"\n            },\n            \"discount\": {\n                \"target\": 0,\n                \"unit\": 0,\n                \"value\": 0\n            },\n            \"validity\": 0,\n            \"description\": \"Demo Invoice\",\n            \"customfields\": [],\n            \"smarttags\": []\n        },\n        \"template\": {\n            \"catalog_id\": \"\",\n            \"language\": \"fr\",\n            \"model_id\": \"D00002\"\n        },\n        \"delivery\": {\n            \"delivery\": {\n                \"address\": {\n                    \"id\": \"\",\n                    \"name\": \"\",\n                    \"value\": \"\"\n                },\n                \"date\": \"0001-01-01\",\n                \"fullday\": false,\n                \"time1\": 0,\n                \"time2\": 0\n            },\n            \"hide_delivery\": true,\n            \"hide_pickup\": true,\n            \"hide_price\": true,\n            \"notes\": \"\",\n            \"pickup\": {\n                \"address\": {\n                    \"id\": \"\",\n                    \"name\": \"\",\n                    \"value\": \"\"\n                },\n                \"date\": \"0001-01-01\",\n                \"fullday\": false,\n                \"time1\": 0,\n                \"time2\": 0\n            },\n            \"return\": {\n                \"address\": {\n                    \"id\": \"\",\n                    \"name\": \"\",\n                    \"value\": \"\"\n                },\n                \"date\": \"0001-01-01\",\n                \"fullday\": false,\n                \"time1\": 0,\n                \"time2\": 0\n            },\n            \"show_pickup_control\": false,\n            \"show_receipt_control\": false\n        },\n        \"grid\": [\n            {\n                \"catalog_id\": \"\",\n                \"description\": \"Apple iPod Touch 16 Go Blanc\",\n                \"discount\": {\n                    \"target\": 0,\n                    \"unit\": 0,\n                    \"value\": 0\n                },\n                \"invisible\": false,\n                \"pack\": false,\n                \"price\": 265.13,\n                \"price_gross\": 0,\n                \"product_id\": \"5af02cf2-8a6f-4f58-8290-495b037e2854\",\n                \"products_pack_list\": [],\n                \"quantity\": 1,\n                \"reference\": \"APPIPOD16B\",\n                \"row_type\": 0,\n                \"unit\": 1,\n                \"vat1\": 19.6,\n                \"vat2\": 0,\n                \"weight\": 0\n            },\n            {\n                \"catalog_id\": \"\",\n                \"description\": \"Fixing PC problems\",\n                \"discount\": {\n                    \"target\": 0,\n                    \"unit\": 0,\n                    \"value\": 0\n                },\n                \"invisible\": false,\n                \"pack\": false,\n                \"price\": 47.5,\n                \"price_gross\": 0,\n                \"product_id\": \"44e9b909-6c2f-4250-bc1d-c5a3c2d20aed\",\n                \"products_pack_list\": [],\n                \"quantity\": 1,\n                \"reference\": \"PCFix\",\n                \"row_type\": 0,\n                \"unit\": 1,\n                \"vat1\": 19.6,\n                \"vat2\": 0,\n                \"weight\": 0\n            },\n            {\n                \"description\": \"<b>pack 101 in test mode</b>\",\n                \"catalog_id\": \"41f0d4ab-7c64-4b7a-98a3-5ac8a61f672a\",\n                \"product_id\": \"388bf4dd-e402-4819-988d-847eb371fc21\",\n                \"pack\": true,\n                \"pack_calcul\": 1,\n                \"price\": 67.2,\n                \"quantity\": 7,\n                \"products_pack_list\": [\n                    {\n                        \"invisible\": true,\n                        \"pack_product_id\": \"00cb9e28-416b-4ca6-bb0e-6872583e4c2d\",\n                        \"quantity\": 5\n                    }\n                ]\n            }\n        ],\n        \"information\": {\n            \"notes\": null,\n            \"terms\": \"Pénalités de retord:\\nConformément à la Loi nO 93-122 du 29 janvier 1993, les pénalités de retord sont calculées ou taux d'intérêt annuel égal à trois fois le taux d'intérêt légal de l'année en cours, et ce dès le premier jour de retard.\"\n        },\n       \n        \"payment\": {\n            \"duedate\": {\n                \"choice\": \"0\",\n                \"days\": 0,\n                \"decade\": false,\n                \"eom\": false,\n                \"installment\": \"\",\n                \"xdate\": \"2019-06-23\"\n            },\n            \"payments\": {\n                \"show_check\": true,\n                \"show_online\": true,\n                \"show_wire\": true\n            },\n            \"show_payment\": true\n        },\n        \"show\": {\n            \"show_pdf_pack\": true,\n            \"signandagreement\": {\n                \"description\": \"\",\n                \"value\": true\n            },\n            \"signandstamp\": {\n                \"description\": \"\",\n                \"value\": true\n            }\n        }\n    }\n}"},"url":"{{url}}/document.svc/post","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","post"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5eba8d2-4b78-4f62-a62b-b8c7f2da166a"},{"name":"get","event":[{"listen":"test","script":{"id":"acf73bc3-c1d7-4ca8-a067-cd3d1966ffda","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"1c4e50e9-2629-40e2-9e0a-cb8eae00b22e","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_Result\": {\r","            \"$id\": \"#/properties/_GET_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"document_id\",\r","                \"document_type\",\r","                \"is_supplier\",\r","                \"general\",\r","                \"supplier\",\r","                \"template\",\r","                \"delivery\",\r","                \"grid\",\r","                \"information\",\r","                \"options\",\r","                \"payment\",\r","                \"show\"\r","            ],\r","            \"properties\": {\r","                \"document_id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/document_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"document_type\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/document_type\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"is_supplier\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/is_supplier\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"general\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/general\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"currency\",\r","                        \"dateissue\",\r","                        \"deposit\",\r","                        \"number\",\r","                        \"ponumber\",\r","                        \"client\",\r","                        \"contact\",\r","                        \"address\",\r","                        \"discount\",\r","                        \"validity\",\r","                        \"description\",\r","                        \"customfields\",\r","                        \"smarttags\"\r","                    ],\r","                    \"properties\": {\r","                        \"currency\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/currency\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"dateissue\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/dateissue\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"deposit\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/deposit\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"target\",\r","                                \"unit\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"target\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/deposit/properties/target\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"unit\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/deposit/properties/unit\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/deposit/properties/value\",\r","                                    \"type\": \"number\",\r","                                    \"default\": 0.0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"number\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/number\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"ponumber\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/ponumber\",\r","                            \"type\": \"null\",\r","                            \"default\": null\r","                        },\r","                        \"client\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/client\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"id\"\r","                            ],\r","                            \"properties\": {\r","                                \"id\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/client/properties/id\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"contact\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/contact\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"id\"\r","                            ],\r","                            \"properties\": {\r","                                \"id\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/contact/properties/id\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"address\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/address\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"id\"\r","                            ],\r","                            \"properties\": {\r","                                \"id\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/address/properties/id\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"discount\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/discount\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"target\",\r","                                \"unit\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"target\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/discount/properties/target\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"unit\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/discount/properties/unit\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/general/properties/discount/properties/value\",\r","                                    \"type\": \"number\",\r","                                    \"default\": 0.0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"validity\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/validity\",\r","                            \"type\": \"integer\",\r","                            \"default\": 0\r","                        },\r","                        \"description\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/description\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"customfields\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/customfields\",\r","                            \"type\": \"array\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/_GET_Result/properties/general/properties/customfields/items\"\r","                            }\r","                        },\r","                        \"smarttags\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/general/properties/smarttags\",\r","                            \"type\": \"array\",\r","                            \"default\": [],\r","                            \"additionalItems\": true,\r","                            \"items\": {\r","                                \"$id\": \"#/properties/_GET_Result/properties/general/properties/smarttags/items\"\r","                            }\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"supplier\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/supplier\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"number\",\r","                        \"received\"\r","                    ],\r","                    \"properties\": {\r","                        \"number\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/supplier/properties/number\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"received\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/supplier/properties/received\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"template\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/template\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"catalog_id\",\r","                        \"language\",\r","                        \"model_id\"\r","                    ],\r","                    \"properties\": {\r","                        \"catalog_id\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/template/properties/catalog_id\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"language\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/template/properties/language\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"model_id\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/template/properties/model_id\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"delivery\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"delivery\",\r","                        \"hide_delivery\",\r","                        \"hide_pickup\",\r","                        \"hide_price\",\r","                        \"notes\",\r","                        \"pickup\",\r","                        \"return\",\r","                        \"show_pickup_control\",\r","                        \"show_receipt_control\"\r","                    ],\r","                    \"properties\": {\r","                        \"delivery\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"address\",\r","                                \"date\",\r","                                \"fullday\",\r","                                \"time1\",\r","                                \"time2\"\r","                            ],\r","                            \"properties\": {\r","                                \"address\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery/properties/address\",\r","                                    \"type\": \"object\",\r","                                    \"default\": {},\r","                                    \"required\": [\r","                                        \"id\",\r","                                        \"name\",\r","                                        \"value\"\r","                                    ],\r","                                    \"properties\": {\r","                                        \"id\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery/properties/address/properties/id\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        },\r","                                        \"name\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery/properties/address/properties/name\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        },\r","                                        \"value\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery/properties/address/properties/value\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        }\r","                                    },\r","                                    \"additionalProperties\": true\r","                                },\r","                                \"date\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery/properties/date\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"fullday\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery/properties/fullday\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"time1\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery/properties/time1\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"time2\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/delivery/properties/time2\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"hide_delivery\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/hide_delivery\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"hide_pickup\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/hide_pickup\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"hide_price\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/hide_price\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"notes\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/notes\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        },\r","                        \"pickup\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"address\",\r","                                \"date\",\r","                                \"fullday\",\r","                                \"time1\",\r","                                \"time2\"\r","                            ],\r","                            \"properties\": {\r","                                \"address\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup/properties/address\",\r","                                    \"type\": \"object\",\r","                                    \"default\": {},\r","                                    \"required\": [\r","                                        \"id\",\r","                                        \"name\",\r","                                        \"value\"\r","                                    ],\r","                                    \"properties\": {\r","                                        \"id\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup/properties/address/properties/id\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        },\r","                                        \"name\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup/properties/address/properties/name\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        },\r","                                        \"value\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup/properties/address/properties/value\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        }\r","                                    },\r","                                    \"additionalProperties\": true\r","                                },\r","                                \"date\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup/properties/date\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"fullday\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup/properties/fullday\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"time1\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup/properties/time1\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"time2\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/pickup/properties/time2\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"return\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"address\",\r","                                \"date\",\r","                                \"fullday\",\r","                                \"time1\",\r","                                \"time2\"\r","                            ],\r","                            \"properties\": {\r","                                \"address\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return/properties/address\",\r","                                    \"type\": \"object\",\r","                                    \"default\": {},\r","                                    \"required\": [\r","                                        \"id\",\r","                                        \"name\",\r","                                        \"value\"\r","                                    ],\r","                                    \"properties\": {\r","                                        \"id\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return/properties/address/properties/id\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        },\r","                                        \"name\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return/properties/address/properties/name\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        },\r","                                        \"value\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return/properties/address/properties/value\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        }\r","                                    },\r","                                    \"additionalProperties\": true\r","                                },\r","                                \"date\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return/properties/date\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"fullday\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return/properties/fullday\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"time1\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return/properties/time1\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"time2\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/return/properties/time2\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"show_pickup_control\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/show_pickup_control\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"show_receipt_control\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/delivery/properties/show_receipt_control\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"grid\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/grid\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_Result/properties/grid/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"catalog_id\",\r","                                    \"description\",\r","                                    \"discount\",\r","                                    \"invisible\",\r","                                    \"pack\",\r","                                    \"pack_calcul\",\r","                                    \"price\",\r","                                    \"price_gross\",\r","                                    \"product_id\",\r","                                    \"products_pack_list\",\r","                                    \"quantity\",\r","                                    \"reference\",\r","                                    \"row_type\",\r","                                    \"unit\",\r","                                    \"vat1\",\r","                                    \"vat2\",\r","                                    \"weight\"\r","                                ],\r","                                \"properties\": {\r","                                    \"catalog_id\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/catalog_id\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"description\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/description\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"discount\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/discount\",\r","                                        \"type\": \"object\",\r","                                        \"default\": {},\r","                                        \"required\": [\r","                                            \"target\",\r","                                            \"unit\",\r","                                            \"value\"\r","                                        ],\r","                                        \"properties\": {\r","                                            \"target\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/discount/properties/target\",\r","                                                \"type\": \"integer\",\r","                                                \"default\": 0\r","                                            },\r","                                            \"unit\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/discount/properties/unit\",\r","                                                \"type\": \"integer\",\r","                                                \"default\": 0\r","                                            },\r","                                            \"value\": {\r","                                                \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/discount/properties/value\",\r","                                                \"type\": \"number\",\r","                                                \"default\": 0.0\r","                                            }\r","                                        },\r","                                        \"additionalProperties\": true\r","                                    },\r","                                    \"invisible\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/invisible\",\r","                                        \"type\": \"boolean\",\r","                                        \"default\": false\r","                                    },\r","                                    \"pack\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/pack\",\r","                                        \"type\": \"boolean\",\r","                                        \"default\": false\r","                                    },\r","                                    \"pack_calcul\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/pack_calcul\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"price\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/price\",\r","                                        \"type\": \"number\",\r","                                        \"default\": 0.0\r","                                    },\r","                                    \"price_gross\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/price_gross\",\r","                                        \"type\": \"number\",\r","                                        \"default\": 0.0\r","                                    },\r","                                    \"product_id\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/product_id\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"products_pack_list\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/products_pack_list\",\r","                                        \"type\": \"array\",\r","                                        \"default\": [],\r","                                        \"additionalItems\": true,\r","                                        \"items\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/products_pack_list/items\"\r","                                        }\r","                                    },\r","                                    \"quantity\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/quantity\",\r","                                        \"type\": \"number\",\r","                                        \"default\": 0.0\r","                                    },\r","                                    \"reference\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/reference\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"row_type\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/row_type\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"unit\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/unit\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"vat1\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/vat1\",\r","                                        \"type\": \"number\",\r","                                        \"default\": 0.0\r","                                    },\r","                                    \"vat2\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/vat2\",\r","                                        \"type\": \"number\",\r","                                        \"default\": 0.0\r","                                    },\r","                                    \"weight\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/grid/items/anyOf/0/properties/weight\",\r","                                        \"type\": \"number\",\r","                                        \"default\": 0.0\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            }\r","                        ]\r","                    }\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/information\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"notes\",\r","                        \"terms\"\r","                    ],\r","                    \"properties\": {\r","                        \"notes\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/notes\",\r","                            \"type\": \"null\",\r","                            \"default\": null\r","                        },\r","                        \"terms\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/information/properties/terms\",\r","                            \"type\": \"string\",\r","                            \"default\": \"\"\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"options\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/options\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"caterer\"\r","                    ],\r","                    \"properties\": {\r","                        \"caterer\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/options/properties/caterer\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"person\",\r","                                \"servicedate\"\r","                            ],\r","                            \"properties\": {\r","                                \"person\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/options/properties/caterer/properties/person\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"servicedate\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/options/properties/caterer/properties/servicedate\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"payment\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/payment\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"duedate\",\r","                        \"payments\",\r","                        \"show_payment\"\r","                    ],\r","                    \"properties\": {\r","                        \"duedate\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/payment/properties/duedate\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"choice\",\r","                                \"days\",\r","                                \"decade\",\r","                                \"eom\",\r","                                \"installment\",\r","                                \"xdate\"\r","                            ],\r","                            \"properties\": {\r","                                \"choice\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/duedate/properties/choice\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"days\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/duedate/properties/days\",\r","                                    \"type\": \"integer\",\r","                                    \"default\": 0\r","                                },\r","                                \"decade\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/duedate/properties/decade\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"eom\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/duedate/properties/eom\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"installment\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/duedate/properties/installment\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"xdate\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/duedate/properties/xdate\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"payments\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/payment/properties/payments\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"show_check\",\r","                                \"show_online\",\r","                                \"show_wire\"\r","                            ],\r","                            \"properties\": {\r","                                \"show_check\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/payments/properties/show_check\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"show_online\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/payments/properties/show_online\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                },\r","                                \"show_wire\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/payment/properties/payments/properties/show_wire\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"show_payment\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/payment/properties/show_payment\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"show\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/show\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"show_pdf_pack\",\r","                        \"signandagreement\",\r","                        \"signandstamp\"\r","                    ],\r","                    \"properties\": {\r","                        \"show_pdf_pack\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/show/properties/show_pdf_pack\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"signandagreement\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/show/properties/signandagreement\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"description\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"description\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/show/properties/signandagreement/properties/description\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/show/properties/signandagreement/properties/value\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        },\r","                        \"signandstamp\": {\r","                            \"$id\": \"#/properties/_GET_Result/properties/show/properties/signandstamp\",\r","                            \"type\": \"object\",\r","                            \"default\": {},\r","                            \"required\": [\r","                                \"description\",\r","                                \"value\"\r","                            ],\r","                            \"properties\": {\r","                                \"description\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/show/properties/signandstamp/properties/description\",\r","                                    \"type\": \"string\",\r","                                    \"default\": \"\"\r","                                },\r","                                \"value\": {\r","                                    \"$id\": \"#/properties/_GET_Result/properties/show/properties/signandstamp/properties/value\",\r","                                    \"type\": \"boolean\",\r","                                    \"default\": false\r","                                }\r","                            },\r","                            \"additionalProperties\": true\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"44ddfd74-0338-1453-6379-eeeb4ff48a15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_id\": \"{{document_id}}\"\n}"},"url":"{{url}}/document.svc/get","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","get"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"44ddfd74-0338-1453-6379-eeeb4ff48a15"},{"name":"delete","event":[{"listen":"test","script":{"id":"45c4e499-0a98-485a-88cd-e58488f35fef","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"613bd7bb-b104-48b2-95f6-961768f69dc8","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_DELETE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_DELETE_Result\": {\r","            \"$id\": \"#/properties/_DELETE_Result\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"aca10bc7-af06-454f-972d-069e7e22ecd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_id\": \"fb497a0a-daa2-45c0-a270-7aef6d200000\"\n}"},"url":"{{url}}/document.svc/delete","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","delete"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aca10bc7-af06-454f-972d-069e7e22ecd7"},{"name":"document PDF link","event":[{"listen":"prerequest","script":{"id":"9f1eb124-1fe3-4d06-bcf8-caf5270897a5","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_document_link_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_document_link_Result\": {\r","            \"$id\": \"#/properties/_GET_document_link_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"filename\",\r","                \"message\",\r","                \"unc\",\r","                \"unc_id\"\r","            ],\r","            \"properties\": {\r","                \"filename\": {\r","                    \"$id\": \"#/properties/_GET_document_link_Result/properties/filename\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"message\": {\r","                    \"$id\": \"#/properties/_GET_document_link_Result/properties/message\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"unc\": {\r","                    \"$id\": \"#/properties/_GET_document_link_Result/properties/unc\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"unc_id\": {\r","                    \"$id\": \"#/properties/_GET_document_link_Result/properties/unc_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"1342bd93-f36b-4e72-8135-585da1493b24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/document.svc/get-document-link?number={{invoice_number}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","get-document-link"],"host":["{{url}}"],"query":[{"disabled":true,"key":"id","value":"f712f8a9-c31f-49b7-87fe-2b8c3d501d9d"},{"key":"number","value":"{{invoice_number}}"}],"variable":[]}},"response":[],"_postman_id":"1342bd93-f36b-4e72-8135-585da1493b24"},{"name":"document next available number","event":[{"listen":"test","script":{"id":"02e692e7-15a6-486c-89ea-01e137c03f08","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"18cff447-9fdc-478e-8a97-4252ae77ad29","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"POST_document_next_available_number_Result\"\r","    ],\r","    \"properties\": {\r","        \"POST_document_next_available_number_Result\": {\r","            \"$id\": \"#/properties/POST_document_next_available_number_Result\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"3188ce8d-17c2-493b-85de-c4d802280637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_type\": 1\n}"},"url":"{{url}}/document.svc/next_available_number","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","next_available_number"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3188ce8d-17c2-493b-85de-c4d802280637"},{"name":"document reserved number","event":[{"listen":"test","script":{"id":"8c49e6b0-1beb-47fc-9729-e2f754742ad4","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"0f2dcf5b-7c5a-4f13-942c-be135dfd84d7","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"POST_document_reserved_number_Result\"\r","    ],\r","    \"properties\": {\r","        \"POST_document_reserved_number_Result\": {\r","            \"$id\": \"#/properties/POST_document_reserved_number_Result\",\r","            \"type\": \"null\",\r","            \"default\": null\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"47042d3e-43c0-4138-9502-b58827139760","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_id\": \"{{document_id}}\"\n}"},"url":"{{url}}/document.svc/reserved_number","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","reserved_number"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47042d3e-43c0-4138-9502-b58827139760"},{"name":"document validate","event":[{"listen":"test","script":{"id":"e2e5e930-8cf9-4177-b1e7-89524e55b21f","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"7043b760-b84f-4ee4-b592-5609076cdfd5","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"POST_validate_Result\"\r","    ],\r","    \"properties\": {\r","        \"POST_validate_Result\": {\r","            \"$id\": \"#/properties/POST_validate_Result\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"2f03388f-891f-48f8-93dc-3d4a4fcb41f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_id\": \"{{document_id}}\"\n}"},"url":"{{url}}/document.svc/validate","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","validate"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f03388f-891f-48f8-93dc-3d4a4fcb41f6"},{"name":"document payment link","event":[{"listen":"test","script":{"id":"d4dbe450-af58-431e-a8f8-9cebcdd3205a","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9ffa0fce-d9fe-4510-a974-65fde215132a","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_document_payment_link_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_document_payment_link_Result\": {\r","            \"$id\": \"#/properties/_GET_document_payment_link_Result\",\r","            \"type\": \"null\",\r","            \"default\": null\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"210d374f-97a2-435d-87bf-fa234c06a483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_id\": \"{{document_id}}\"\n}"},"url":"{{url}}/document.svc/get-document-payment-link","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","get-document-payment-link"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"210d374f-97a2-435d-87bf-fa234c06a483"},{"name":"document add row","event":[{"listen":"test","script":{"id":"0be2a737-ce89-47a9-aad8-e22f09febea5","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"49a3ec16-d993-4f16-b5e4-513ab868d771","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"POST_add_row_Result\"\r","    ],\r","    \"properties\": {\r","        \"POST_add_row_Result\": {\r","            \"$id\": \"#/properties/POST_add_row_Result\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"ec959604-835b-441b-8c0d-093cbfe67172","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_id\": \"{{document_id}}\",\n    \"data\": {\n        \"row_type\": 0,\n      \n        \"reference\":\"XXX-AA-1\",\n        \"description\": \"Water «Source» 33 cL : Mission ECOLOGY\",\n        \"price\": 151.25,\n        \"quantity\": 25,\n        \"vat1\": 20,\n        \"vat2\": 0\n    }\n}"},"url":"{{url}}/document.svc/document_add_row","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","document_add_row"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ec959604-835b-441b-8c0d-093cbfe67172"},{"name":"convert-to-production","event":[{"listen":"test","script":{"id":"0c59c439-0c80-4189-8d7b-bd7592f45092","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"4fe7ef67-47b7-478b-9757-a9857e05faf3","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"PUT_convert_to_productionResult\"\r","    ],\r","    \"properties\": {\r","        \"PUT_convert_to_productionResult\": {\r","            \"$id\": \"#/properties/PUT_convert_to_productionResult\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"newid\",\r","                \"newnb\",\r","                \"ok\",\r","                \"oldid\",\r","                \"oldnb\",\r","                \"title\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/PUT_convert_to_productionResult/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"newid\": {\r","                    \"$id\": \"#/properties/PUT_convert_to_productionResult/properties/newid\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"newnb\": {\r","                    \"$id\": \"#/properties/PUT_convert_to_productionResult/properties/newnb\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"ok\": {\r","                    \"$id\": \"#/properties/PUT_convert_to_productionResult/properties/ok\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"oldid\": {\r","                    \"$id\": \"#/properties/PUT_convert_to_productionResult/properties/oldid\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"oldnb\": {\r","                    \"$id\": \"#/properties/PUT_convert_to_productionResult/properties/oldnb\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/PUT_convert_to_productionResult/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"cf2efaa8-e9e2-4250-b1c3-3da199ff9262","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_id\": \"{{document_id}}\"\n}"},"url":"{{url}}/document.svc/convert-to-production","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","convert-to-production"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf2efaa8-e9e2-4250-b1c3-3da199ff9262"},{"name":"list document template","event":[{"listen":"test","script":{"id":"cfb9698a-f49e-4e96-aa54-3cc1d46f383d","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f6eab921-1f9b-40d5-a13b-15bcc58138c9","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_document_template_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_document_template_Result\": {\r","            \"$id\": \"#/properties/_LIST_document_template_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_document_template_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_document_template_Result/items/anyOf/0\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"41f35776-ffdb-439f-853e-1d0a040fbc35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/document.svc/list-document-template","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","list-document-template"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"41f35776-ffdb-439f-853e-1d0a040fbc35"},{"name":"list document predefined","event":[{"listen":"test","script":{"id":"c97b8f03-a256-4c93-a768-289a9f44f604","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"a5e9230f-df12-4013-8107-4381fa9b0f10","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_document_predefined_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_document_predefined_Result\": {\r","            \"$id\": \"#/properties/_LIST_document_predefined_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_document_predefined_Result/items\"\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"289dbbd6-a94a-4fdc-a603-b56972373d54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/document.svc/list-document-predefined","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","list-document-predefined"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"289dbbd6-a94a-4fdc-a603-b56972373d54"},{"name":"send-document-by-mail","event":[{"listen":"test","script":{"id":"841c0934-9f0b-4218-9b1b-318b5585ac9a","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"92552c13-1576-4d3b-84ab-dea4c66fe426","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"POST_send_document_by_email_Result\"\r","    ],\r","    \"properties\": {\r","        \"POST_send_document_by_email_Result\": {\r","            \"$id\": \"#/properties/POST_send_document_by_email_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"id\",\r","                \"ok\",\r","                \"rc\"\r","            ],\r","            \"properties\": {\r","                \"id\": {\r","                    \"$id\": \"#/properties/POST_send_document_by_email_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"ok\": {\r","                    \"$id\": \"#/properties/POST_send_document_by_email_Result/properties/ok\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"rc\": {\r","                    \"$id\": \"#/properties/POST_send_document_by_email_Result/properties/rc\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"0c906c55-89b8-4d88-ad8f-350c11e86e31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"document_id\": \"{{document_id}}\"\n}"},"url":"{{url}}/document.svc/send-document-by-mail","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","send-document-by-mail"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c906c55-89b8-4d88-ad8f-350c11e86e31"},{"name":"notes","event":[{"listen":"test","script":{"id":"0be2a737-ce89-47a9-aad8-e22f09febea5","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"0cc162de-3fe8-402b-9520-df933f6176c4","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"GET_notes_Result\"\r","    ],\r","    \"properties\": {\r","        \"GET_notes_Result\": {\r","            \"$id\": \"#/properties/GET_notes_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/GET_notes_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/GET_notes_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"id\",\r","                            \"date\",\r","                            \"text\",\r","                            \"destination\",\r","                            \"user\"\r","                        ],\r","                        \"properties\": {\r","                            \"id\": {\r","                                \"$id\": \"#/properties/GET_notes_Result/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"date\": {\r","                                \"$id\": \"#/properties/GET_notes_Result/items/anyOf/0/properties/date\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"text\": {\r","                                \"$id\": \"#/properties/GET_notes_Result/items/anyOf/0/properties/text\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"destination\": {\r","                                \"$id\": \"#/properties/GET_notes_Result/items/anyOf/0/properties/destination\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"user\": {\r","                                \"$id\": \"#/properties/GET_notes_Result/items/anyOf/0/properties/user\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"c0aba402-35fa-47e9-ab63-6f8c4d9661a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/document.svc/notes/{{document_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","notes","{{document_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0aba402-35fa-47e9-ab63-6f8c4d9661a5"},{"name":"notes","event":[{"listen":"test","script":{"id":"0be2a737-ce89-47a9-aad8-e22f09febea5","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"6494d331-3a09-4f76-a8fd-8b40ce05536f","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"POST_notes_Result\"\r","    ],\r","    \"properties\": {\r","        \"POST_notes_Result\": {\r","            \"$id\": \"#/properties/POST_notes_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/POST_notes_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"bf59f3ba-08ae-4a51-ae15-4d1f8c49c0e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Coucou les enfants\"\n}"},"url":"{{url}}/document.svc/notes/{{document_id}}","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","notes","{{document_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf59f3ba-08ae-4a51-ae15-4d1f8c49c0e6"},{"name":"status","event":[{"listen":"test","script":{"id":"a88469de-e095-44b8-89ae-caadbe6ebcd4","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ab5c3a13-5119-4859-80c0-0fccea3473f7","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_status_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_status_Result\": {\r","            \"$id\": \"#/properties/_GET_status_Result\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"73bb819f-7c48-499e-8f22-f59a26f2b272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/document.svc/status/{{document_id}}","description":"<p>Retrieve current document status</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","status","{{document_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"73bb819f-7c48-499e-8f22-f59a26f2b272"},{"name":"status","event":[{"listen":"test","script":{"id":"a88469de-e095-44b8-89ae-caadbe6ebcd4","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ccd30509-1542-4018-b7bc-ac4d7a7dda6d","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_UPDATE_status_Result\"\r","    ],\r","    \"properties\": {\r","        \"_UPDATE_status_Result\": {\r","            \"$id\": \"#/properties/_UPDATE_status_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_UPDATE_status_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"3cfba9ea-d6a5-4cff-b723-5a63e2302b5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"status\": \"draft\"\n}"},"url":"{{url}}/document.svc/status/{{document_id}}","description":"<p>UPDATE current status of the document.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["document.svc","status","{{document_id}}"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3cfba9ea-d6a5-4cff-b723-5a63e2302b5f"}],"id":"7e2531dc-2ee2-dc78-031d-fc8b0d2b6910","description":"<p>Documents in SalenGo are what gets sent to Clients, detailing specific goods or services, and the amount that Client owes to.</p>\n\n<h3>Document Type</h3>\n<table>\n <thead>\n    <tr><th>Code</th><th>Type</th><th>Description</th></tr>\n  </thead>\n  <tbody>\n<tr><td>0</td><td>Estimate</td><td></td></tr>\n<tr><td>1</td><td>Invoice</td><td></td></tr>  \n<tr><td>2</td><td>Proforma</td><td></td></tr>  \n<tr><td>3</td><td>Recurring Invoice</td><td></td></tr>  \n<tr><td>4</td><td>Deposit</td><td></td></tr>  \n<tr><td>5</td><td>Template</td><td></td></tr>  \n<tr><td>6</td><td>Credit</td><td></td></tr>  \n<tr><td>7</td><td>Delivery Order</td><td></td></tr>  \n<tr><td>8</td><td>Purchase Order</td><td></td></tr>  \n<tr><td>30</td><td>Return Order</td><td></td></tr>  \n </tbody>\n</table>\n\n\n<h3>Document Status</h3>\n<table>\n  <thead>\n    <tr><th>Code</th><th>Status</th><th>Description</th></tr>\n  </thead>\n  <tbody>\n<tr><td>0</td><td>draft</td><td>A document that has been created, but not yet sent.</td></tr>\n<tr><td>1</td><td>sent</td><td>A document that has been sent to a Client or marked as sent by the owner.</td></tr>\n<tr><td>2</td><td>read</td><td>A document that has been viewed by a Client.</td></tr>\n<tr><td>3</td><td>disputed</td><td>A document which has been disputed by a Client.</td></tr>\n<tr><td>4</td><td>paid</td><td>A fully paid Invoice.</td></tr>\n<tr><td>4</td><td>production</td><td></td></tr>\n<tr><td>5</td><td>partialpaid</td><td>An Invoice that has been partially paid.</td></tr>\n<tr><td>7</td><td>pending</td><td></td></tr>\n<tr><td>8</td><td>declined</td><td>A document (usually a quote) that has been rejected by a Client.</td></tr>\n<tr><td>12</td><td>sendbypostmail</td><td>A document that has been sent by POST to a Client or marked as sent by the owner.</td></tr>\n<tr><td>14</td><td>accepted</td><td>A document (usually a quote) that has been ACCEPTED  by a Client.</td></tr>\n<tr><td>15</td><td>invoiced</td><td>A document that has been invoiced to a Client.</td></tr>\n<tr><td>18</td><td>created</td><td>Usually, an open \"CREDIT NOTE\"</td></tr>\n<tr><td>21</td><td>canceled</td><td>The document has been CANCELED by the owner.</td></tr>\n<tr><td>24</td><td>toinvoice</td><td>A document that has been mark as 'TO INVOICE' by the owner.</td></tr>\n<tr><td>25</td><td>deposit</td><td></td></tr>\n<tr><td>31</td><td>processing</td><td></td></tr>\n<tr><td>32</td><td>delivered</td><td></td></tr>\n<tr><td>33</td><td>shipped</td><td></td></tr>\n<tr><td>40</td><td>open</td><td></td></tr>\n<tr><td>41</td><td>closed</td><td></td></tr>\n<tr><td>42</td><td>void</td><td>A \"Null\" document</td></tr>\n  </tbody>\n</table>\n\n<h3>Parameters <code>search</code></h3>\n<pre>\n {\n    \"reference\": \"\",\n    \"description\": \"\",\n    \"company\": \"\",\n    \"contact\": \"\",\n    \"status\" : 0,\n    \"date_release_from\": \"\",\n    \"date_release_to\": \"\",\n    \"total_from\": 0,\n    \"total_to\": 0,\n    \"date_issue_from\": \"\",\n    \"date_issue_to\": \"\",\n    \"delivery_date_from\": \"\",\n    \"delivery_date_to\": \"\",\n    \"smarttags\": \"\",\n }\n</pre>\n\n<h3>Parameters <code>params</code></h3>\n<pre>\n {\n    \"folder\" : 0,\n    \"pagination\" : {\n        \"perpage\": 10,\n        \"page\" :1\n        }\n }\n</pre>\n","event":[{"listen":"prerequest","script":{"id":"0a698348-c61e-405f-b331-b4d6d5941bb0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c2201c2b-c491-4a7e-a01e-bf0c00ac23d9","type":"text/javascript","exec":[""]}}],"_postman_id":"7e2531dc-2ee2-dc78-031d-fc8b0d2b6910","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"PAYMENT","item":[{"name":"[model]","event":[{"listen":"test","script":{"id":"bd4ea7f7-dbb2-45e5-915e-82890a5f8a8e","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"db5f81d4-98fc-4ef6-a08d-a54d4d4dd488","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"data\",\r","        \"notification_email\",\r","        \"notification_invoice\",\r","        \"notification_sms\"\r","    ],\r","    \"properties\": {\r","        \"data\": {\r","            \"$id\": \"#/properties/data\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/data/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/data/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"amount\",\r","                            \"bank_id\",\r","                            \"currency\",\r","                            \"document_id\",\r","                            \"method_id\",\r","                            \"note\",\r","                            \"payment_date\",\r","                            \"reference\",\r","                            \"type\"\r","                        ],\r","                        \"properties\": {\r","                            \"amount\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/amount\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"bank_id\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/bank_id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"currency\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/currency\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"document_id\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/document_id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"method_id\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/method_id\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"note\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/note\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"payment_date\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/payment_date\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"type\": {\r","                                \"$id\": \"#/properties/data/items/anyOf/0/properties/type\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"notification_email\": {\r","            \"$id\": \"#/properties/notification_email\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        },\r","        \"notification_invoice\": {\r","            \"$id\": \"#/properties/notification_invoice\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        },\r","        \"notification_sms\": {\r","            \"$id\": \"#/properties/notification_sms\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"97b5e04a-37a2-ea1a-7567-3230f838eb83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/payment.svc/","description":"<p>These are all the JSON-schemas for SalenGo API.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["payment.svc",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"97b5e04a-37a2-ea1a-7567-3230f838eb83"},{"name":"[enum] method id","event":[{"listen":"test","script":{"id":"20c9a179-29ae-49a2-8de1-cb3f6b036c9a","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"bae214a8-128a-463d-ab28-a1c4c9278d06","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"group\",\r","                    \"items\"\r","                ],\r","                \"properties\": {\r","                    \"group\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/group\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"items\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/items\",\r","                        \"type\": \"array\",\r","                        \"default\": [],\r","                        \"additionalItems\": true,\r","                        \"items\": {\r","                            \"$id\": \"#/items/anyOf/0/properties/items/items\",\r","                            \"anyOf\": [\r","                                {\r","                                    \"$id\": \"#/items/anyOf/0/properties/items/items/anyOf/0\",\r","                                    \"type\": \"object\",\r","                                    \"default\": {},\r","                                    \"required\": [\r","                                        \"id\",\r","                                        \"text\"\r","                                    ],\r","                                    \"properties\": {\r","                                        \"id\": {\r","                                            \"$id\": \"#/items/anyOf/0/properties/items/items/anyOf/0/properties/id\",\r","                                            \"type\": \"integer\",\r","                                            \"default\": 0\r","                                        },\r","                                        \"text\": {\r","                                            \"$id\": \"#/items/anyOf/0/properties/items/items/anyOf/0/properties/text\",\r","                                            \"type\": \"string\",\r","                                            \"default\": \"\"\r","                                        }\r","                                    },\r","                                    \"additionalProperties\": true\r","                                }\r","                            ]\r","                        }\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"0aeb57ec-9acd-4f0f-8502-f8530f9941cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/payment.svc/method_id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["payment.svc","method_id"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0aeb57ec-9acd-4f0f-8502-f8530f9941cb"},{"name":"list","event":[{"listen":"test","script":{"id":"80167092-2d33-4b14-ab8e-ac8f777d556e","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"32bf9031-40d6-41e8-af1d-09affa81d224","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_Result\": {\r","            \"$id\": \"#/properties/_LIST_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"amount\",\r","                            \"amount_remain\",\r","                            \"bank\",\r","                            \"bank_checked\",\r","                            \"bank_status\",\r","                            \"client\",\r","                            \"client_id\",\r","                            \"currency\",\r","                            \"date\",\r","                            \"method\",\r","                            \"notes\",\r","                            \"number\",\r","                            \"payment_id\",\r","                            \"reference\",\r","                            \"type\"\r","                        ],\r","                        \"properties\": {\r","                            \"amount\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/amount\",\r","                                \"type\": \"number\",\r","                                \"default\": 0.0\r","                            },\r","                            \"amount_remain\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/amount_remain\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"bank\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/bank\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"bank_checked\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/bank_checked\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"bank_status\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/bank_status\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"client\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/client\",\r","                                \"type\": \"null\",\r","                                \"default\": null\r","                            },\r","                            \"client_id\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/client_id\",\r","                                \"type\": \"null\",\r","                                \"default\": null\r","                            },\r","                            \"currency\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"fixed\",\r","                                    \"gsep\",\r","                                    \"iso\",\r","                                    \"position\",\r","                                    \"sep\"\r","                                ],\r","                                \"properties\": {\r","                                    \"fixed\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/fixed\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"gsep\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/gsep\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"iso\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/iso\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"position\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/position\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"sep\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency/properties/sep\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"date\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/date\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"method\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/method\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"id\"\r","                                ],\r","                                \"properties\": {\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/method/properties/id\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"notes\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/notes\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"number\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/number\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"payment_id\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/payment_id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"type\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/type\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"22ed5aa2-9aae-4b3c-85a7-61e83b51ea8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"search\": {},\n    \"params\": {\n        \"folder\": 0,\n        \"pagination\": {\n            \"perpage\": 10,\n            \"page\": 1\n        }\n    }\n}"},"url":"{{url}}/payment.svc/list","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["payment.svc","list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"22ed5aa2-9aae-4b3c-85a7-61e83b51ea8b"},{"name":"get","event":[{"listen":"test","script":{"id":"386780c5-638c-4087-a14f-4db9f9329a55","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"4e9bfc5b-1ca1-4858-94ff-cc590ff89c2f","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_Result\": {\r","            \"$id\": \"#/properties/_GET_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"amount\",\r","                \"client_id\",\r","                \"client_name\",\r","                \"currency\",\r","                \"date\",\r","                \"method_id\",\r","                \"notes\",\r","                \"number\",\r","                \"payment_id\",\r","                \"reference\",\r","                \"type\"\r","            ],\r","            \"properties\": {\r","                \"amount\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/amount\",\r","                    \"type\": \"number\",\r","                    \"default\": 0.0\r","                },\r","                \"client_id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/client_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"client_name\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/client_name\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"currency\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/currency\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"date\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/date\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"method_id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/method_id\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"notes\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/notes\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"number\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/number\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"payment_id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/payment_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"reference\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/reference\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"type\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/type\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"2f5839d6-7f26-4e50-a6d0-2ad5ed179f58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n\t\"payment_id\": \"{{payment_id}}\"\n}"},"url":"{{url}}/payment.svc/get","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["payment.svc","get"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f5839d6-7f26-4e50-a6d0-2ad5ed179f58"},{"name":"post","event":[{"listen":"test","script":{"id":"7637d131-23ca-44b4-be51-68d7e0e97358","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"be8fb65b-08d6-4666-a51e-67e2f99c7075","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_POST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_POST_Result\": {\r","            \"$id\": \"#/properties/_POST_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_POST_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"faef6dab-0aaa-4a1b-8b1e-2721543b09c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"params\": {\n        \"notification_email\": false,\n        \"notification_invoice\": false,\n        \"notification_sms\": false,\n        \"data\": [\n            {\n                \"type\": 0,\n                \"bank_id\": \"8031e4ee-4626-4972-bd52-3116feed2be8\",\n                \"document_id\": \"fb497a0a-daa2-45c0-a270-7aef6d200108\",\n                \"method_id\": 4,\n                \"amount\": 0.01,\n                \"currency\": 978,\n                \"payment_date\": \"2019-06-20\",\n                \"reference\": \"API Payment Sample\",\n                \"note\": \"Test API\"\n            }\n        ]\n    }\n}"},"url":"{{url}}/payment.svc/post","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["payment.svc","post"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"faef6dab-0aaa-4a1b-8b1e-2721543b09c5"},{"name":"list banks","event":[{"listen":"test","script":{"id":"caae4120-a2e0-4313-80be-c56699dd491c","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"477356e8-823f-4a38-9ac3-434fbe2dfdf5","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"bank_id\",\r","                    \"bankname\",\r","                    \"title\"\r","                ],\r","                \"properties\": {\r","                    \"bank_id\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/bank_id\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"bankname\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/bankname\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"title\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/title\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"0d383321-8a3a-4054-b2d5-87e3367c24d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/payment.svc/banks","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["payment.svc","banks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d383321-8a3a-4054-b2d5-87e3367c24d2"},{"name":"delete","event":[{"listen":"test","script":{"id":"bc3708b4-567f-4939-b83a-1be9c48e3fea","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"dc7c3345-cfb2-4e7d-9806-b44459866bc6","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_DELETE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_DELETE_Result\": {\r","            \"$id\": \"#/properties/_DELETE_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"content\",\r","                \"data\",\r","                \"error\",\r","                \"i\",\r","                \"id\",\r","                \"r\",\r","                \"refresh\",\r","                \"title\",\r","                \"url\"\r","            ],\r","            \"properties\": {\r","                \"content\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/content\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"data\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/data\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"error\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/error\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"i\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/i\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"id\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"r\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/r\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"refresh\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/refresh\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"title\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/title\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"url\": {\r","                    \"$id\": \"#/properties/_DELETE_Result/properties/url\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"8470d93f-75f3-4092-ac2e-414e5012280f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n\t\"payment_id\": \"f0200fe8-b468-45fd-87d2-a39d7e614f52\"\n}"},"url":"{{url}}/payment.svc/delete","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["payment.svc","delete"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8470d93f-75f3-4092-ac2e-414e5012280f"}],"id":"b128f3b0-1e84-0c00-f31e-6d291cd40400","description":"<p>A <code>payment account</code> holds <code>transactions</code> from a bank account.</p>\n<p>\nA <code>transaction</code> that is matched to a entity indicates that the transaction represents a <code>payment</code> for that <code>invoice</code>,  <code>expense</code> or <code>income</code>.\n</p>","event":[{"listen":"prerequest","script":{"id":"db18556f-c22d-4679-9ff9-ad5d84beaa24","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"753a9e10-30c9-4237-ab51-e88db587f281","type":"text/javascript","exec":[""]}}],"_postman_id":"b128f3b0-1e84-0c00-f31e-6d291cd40400","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"EXPENSE","item":[],"id":"37e4912d-bb49-4978-9092-7c9022321271","_postman_id":"37e4912d-bb49-4978-9092-7c9022321271","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"SUPPLIER","item":[],"id":"4f023325-828e-49e5-a6ac-ea2258bc9afe","_postman_id":"4f023325-828e-49e5-a6ac-ea2258bc9afe","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"PRODUCTION","item":[{"name":"[enum] status","event":[{"listen":"test","script":{"id":"5eaa7195-5365-4a59-9dfa-be4ef53f7418","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"fa021e85-0a6c-42fe-acfb-e30446563290","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"array\",\r","    \"default\": [],\r","    \"additionalItems\": true,\r","    \"items\": {\r","        \"$id\": \"#/items\",\r","        \"anyOf\": [\r","            {\r","                \"$id\": \"#/items/anyOf/0\",\r","                \"type\": \"object\",\r","                \"default\": {},\r","                \"required\": [\r","                    \"name\",\r","                    \"value\"\r","                ],\r","                \"properties\": {\r","                    \"name\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/name\",\r","                        \"type\": \"string\",\r","                        \"default\": \"\"\r","                    },\r","                    \"value\": {\r","                        \"$id\": \"#/items/anyOf/0/properties/value\",\r","                        \"type\": \"integer\",\r","                        \"default\": 0\r","                    }\r","                },\r","                \"additionalProperties\": true\r","            }\r","        ]\r","    }\r","});"],"type":"text/javascript"}}],"id":"cfa214a9-7019-41a0-be4d-fcbda63f2d2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/production.svc/enum-status","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["production.svc","enum-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cfa214a9-7019-41a0-be4d-fcbda63f2d2d"},{"name":"list","event":[{"listen":"test","script":{"id":"8f2872b3-f891-49d9-836c-8ba1d6a1346a","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ed9066ce-7170-492e-8d76-dcda965da69d","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_Result\": {\r","            \"$id\": \"#/properties/_LIST_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"client\",\r","                            \"client_reference\",\r","                            \"delivery_date\",\r","                            \"delivery_time1\",\r","                            \"delivery_time2\",\r","                            \"haschanged\",\r","                            \"hasnotes\",\r","                            \"number\",\r","                            \"production_id\",\r","                            \"reference\",\r","                            \"release_date\",\r","                            \"status\"\r","                        ],\r","                        \"properties\": {\r","                            \"client\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/client\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"client_reference\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/client_reference\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"delivery_date\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/delivery_date\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"delivery_time1\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/delivery_time1\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"delivery_time2\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/delivery_time2\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"haschanged\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/haschanged\",\r","                                \"type\": \"boolean\",\r","                                \"default\": false\r","                            },\r","                            \"hasnotes\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/hasnotes\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"number\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/number\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"production_id\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/production_id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/reference\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"release_date\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/release_date\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"status\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/status\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"39008640-bdb9-3d7e-a9bb-776034be7677","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n\t\"params\": {\n\t\t\"folder\" : 0,\n\t\t\"pagination\" : {\n\t\t\t\"perpage\": 20,\n\t\t\t\"page\" :1\n\t\t}\n\t}\n}"},"url":"{{url}}/production.svc/list","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["production.svc","list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"39008640-bdb9-3d7e-a9bb-776034be7677"},{"name":"get","event":[{"listen":"test","script":{"id":"894f465b-fc43-4b5e-b644-ed88d3470449","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"7b589753-ec37-4eec-a818-87e45abef47c","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_Result\": {\r","            \"$id\": \"#/properties/_GET_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"composition\",\r","                \"customfields_delivery\",\r","                \"delivery_address_str\",\r","                \"delivery_contact\",\r","                \"delivery_contact_phone\",\r","                \"delivery_date\",\r","                \"delivery_notes\",\r","                \"delivery_time1\",\r","                \"delivery_time2\",\r","                \"number\",\r","                \"production_id\",\r","                \"reference\",\r","                \"release_date\",\r","                \"status\"\r","            ],\r","            \"properties\": {\r","                \"composition\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/composition\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_Result/properties/composition/items\",\r","                        \"anyOf\": [\r","                            {\r","                                \"$id\": \"#/properties/_GET_Result/properties/composition/items/anyOf/0\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"family\",\r","                                    \"items\"\r","                                ],\r","                                \"properties\": {\r","                                    \"family\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/composition/items/anyOf/0/properties/family\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"items\": {\r","                                        \"$id\": \"#/properties/_GET_Result/properties/composition/items/anyOf/0/properties/items\",\r","                                        \"type\": \"array\",\r","                                        \"default\": [],\r","                                        \"additionalItems\": true,\r","                                        \"items\": {\r","                                            \"$id\": \"#/properties/_GET_Result/properties/composition/items/anyOf/0/properties/items/items\",\r","                                            \"anyOf\": [\r","                                                {\r","                                                    \"$id\": \"#/properties/_GET_Result/properties/composition/items/anyOf/0/properties/items/items/anyOf/0\",\r","                                                    \"type\": \"object\",\r","                                                    \"default\": {},\r","                                                    \"required\": [\r","                                                        \"description\",\r","                                                        \"value\"\r","                                                    ],\r","                                                    \"properties\": {\r","                                                        \"description\": {\r","                                                            \"$id\": \"#/properties/_GET_Result/properties/composition/items/anyOf/0/properties/items/items/anyOf/0/properties/description\",\r","                                                            \"type\": \"string\",\r","                                                            \"default\": \"\"\r","                                                        },\r","                                                        \"value\": {\r","                                                            \"$id\": \"#/properties/_GET_Result/properties/composition/items/anyOf/0/properties/items/items/anyOf/0/properties/value\",\r","                                                            \"type\": \"number\",\r","                                                            \"default\": 0.0\r","                                                        }\r","                                                    },\r","                                                    \"additionalProperties\": true\r","                                                }\r","                                            ]\r","                                        }\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            }\r","                        ]\r","                    }\r","                },\r","                \"customfields_delivery\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/customfields_delivery\",\r","                    \"type\": \"array\",\r","                    \"default\": [],\r","                    \"additionalItems\": true,\r","                    \"items\": {\r","                        \"$id\": \"#/properties/_GET_Result/properties/customfields_delivery/items\"\r","                    }\r","                },\r","                \"delivery_address_str\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery_address_str\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"delivery_contact\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery_contact\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"delivery_contact_phone\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery_contact_phone\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"delivery_date\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery_date\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"delivery_notes\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery_notes\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"delivery_time1\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery_time1\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"delivery_time2\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/delivery_time2\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"number\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/number\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"production_id\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/production_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"reference\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/reference\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"release_date\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/release_date\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"status\": {\r","                    \"$id\": \"#/properties/_GET_Result/properties/status\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"3c0c4481-68b8-8a84-bc4c-27dc51d3ca61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"production_id\": \"{{production_id}}\"\n}"},"url":"{{url}}/production.svc/get","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["production.svc","get"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c0c4481-68b8-8a84-bc4c-27dc51d3ca61"},{"name":"delete","event":[{"listen":"test","script":{"id":"17b7610f-07b8-4825-a54c-bff74a22011b","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f5166a66-ced6-4fe8-a738-70ef70c6664b","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_DELETE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_DELETE_Result\": {\r","            \"$id\": \"#/properties/_DELETE_Result\",\r","            \"type\": \"null\",\r","            \"default\": null\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"418a15b1-93db-440f-a309-c52ec9bdbe61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"production_id\": \"8c397013-e30f-4079-9d74-1b5a16d4ccc6\"\n}"},"url":"{{url}}/production.svc/delete","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["production.svc","delete"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"418a15b1-93db-440f-a309-c52ec9bdbe61"},{"name":"get production PDF link","event":[{"listen":"test","script":{"id":"e185b69a-ee0a-494a-b4a6-56463fc940bb","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"864d1cd4-6d0b-400b-bbb8-b86dd0e2bfed","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_FILE_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_FILE_Result\": {\r","            \"$id\": \"#/properties/_GET_FILE_Result\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"c8aa0145-aa80-a8f2-485d-fd893dbad512","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"production_id\": \"{{production_id}}\"\n}"},"url":"{{url}}/production.svc/get-file","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["production.svc","get-file"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c8aa0145-aa80-a8f2-485d-fd893dbad512"},{"name":"get status","event":[{"listen":"test","script":{"id":"34dd1c5e-279a-4dda-8495-1cc3b4eedd64","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"2a9d4ee0-7fcf-4a9d-9bf0-80df2bf75e57","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_GET_STATUS_Result\"\r","    ],\r","    \"properties\": {\r","        \"_GET_STATUS_Result\": {\r","            \"$id\": \"#/properties/_GET_STATUS_Result\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"has_changed\",\r","                \"number\",\r","                \"production_id\",\r","                \"status\"\r","            ],\r","            \"properties\": {\r","                \"has_changed\": {\r","                    \"$id\": \"#/properties/_GET_STATUS_Result/properties/has_changed\",\r","                    \"type\": \"boolean\",\r","                    \"default\": false\r","                },\r","                \"number\": {\r","                    \"$id\": \"#/properties/_GET_STATUS_Result/properties/number\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"production_id\": {\r","                    \"$id\": \"#/properties/_GET_STATUS_Result/properties/production_id\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"status\": {\r","                    \"$id\": \"#/properties/_GET_STATUS_Result/properties/status\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                }\r","            },\r","            \"additionalProperties\": true\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"97919356-4229-41f1-a6bd-37e708887244","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"production_id\": \"{{production_id}}\"\n}"},"url":"{{url}}/production.svc/get-status","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["production.svc","get-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"97919356-4229-41f1-a6bd-37e708887244"},{"name":"update status","event":[{"listen":"prerequest","script":{"id":"0b048caa-af0e-483e-82de-9582c33a5a10","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_UPDATE_STATUS_Result\"\r","    ],\r","    \"properties\": {\r","        \"_UPDATE_STATUS_Result\": {\r","            \"$id\": \"#/properties/_UPDATE_STATUS_Result\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"9006424f-9f65-4ad6-ac18-4ebee6d12310","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"status\": \"BLOCKED\",\n        \"production_id\": \"{{production_id}}\"\n    }\n}"},"url":"{{url}}/production.svc/update-status","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["production.svc","update-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9006424f-9f65-4ad6-ac18-4ebee6d12310"}],"id":"d74650d4-cac5-2bb3-7161-cf19de2ec38d","_postman_id":"d74650d4-cac5-2bb3-7161-cf19de2ec38d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"SHIPMENT","item":[{"name":"[model]","event":[{"listen":"test","script":{"id":"fee74864-a0fb-406f-96ea-897831b9f334","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ae71ec42-f7a9-47d9-81a1-e384e53f6bc5","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"courier\",\r","        \"currency\",\r","        \"description\",\r","        \"destination\",\r","        \"dimensions\",\r","        \"id\",\r","        \"items\",\r","        \"notes\",\r","        \"number\",\r","        \"origin\",\r","        \"schedule_destination\",\r","        \"schedule_origin\",\r","        \"status\"\r","    ],\r","    \"properties\": {\r","        \"courier\": {\r","            \"$id\": \"#/properties/courier\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"id\",\r","                \"information\",\r","                \"name\"\r","            ],\r","            \"properties\": {\r","                \"id\": {\r","                    \"$id\": \"#/properties/courier/properties/id\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"information\": {\r","                    \"$id\": \"#/properties/courier/properties/information\",\r","                    \"type\": \"object\",\r","                    \"default\": {},\r","                    \"required\": [\r","                        \"direct\",\r","                        \"signature\"\r","                    ],\r","                    \"properties\": {\r","                        \"direct\": {\r","                            \"$id\": \"#/properties/courier/properties/information/properties/direct\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        },\r","                        \"signature\": {\r","                            \"$id\": \"#/properties/courier/properties/information/properties/signature\",\r","                            \"type\": \"boolean\",\r","                            \"default\": false\r","                        }\r","                    },\r","                    \"additionalProperties\": true\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/courier/properties/name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"currency\": {\r","            \"$id\": \"#/properties/currency\",\r","            \"type\": \"integer\",\r","            \"default\": 0\r","        },\r","        \"description\": {\r","            \"$id\": \"#/properties/description\",\r","            \"type\": \"null\",\r","            \"default\": null\r","        },\r","        \"destination\": {\r","            \"$id\": \"#/properties/destination\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"city\",\r","                \"client_name\",\r","                \"client_reference\",\r","                \"company_name\",\r","                \"contact_name\",\r","                \"country\",\r","                \"email\",\r","                \"fax\",\r","                \"mobile\",\r","                \"name\",\r","                \"notes\",\r","                \"phone\",\r","                \"state\",\r","                \"street1\",\r","                \"street2\",\r","                \"zipcode\"\r","            ],\r","            \"properties\": {\r","                \"city\": {\r","                    \"$id\": \"#/properties/destination/properties/city\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"client_name\": {\r","                    \"$id\": \"#/properties/destination/properties/client_name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"client_reference\": {\r","                    \"$id\": \"#/properties/destination/properties/client_reference\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"company_name\": {\r","                    \"$id\": \"#/properties/destination/properties/company_name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"contact_name\": {\r","                    \"$id\": \"#/properties/destination/properties/contact_name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"country\": {\r","                    \"$id\": \"#/properties/destination/properties/country\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"email\": {\r","                    \"$id\": \"#/properties/destination/properties/email\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"fax\": {\r","                    \"$id\": \"#/properties/destination/properties/fax\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"mobile\": {\r","                    \"$id\": \"#/properties/destination/properties/mobile\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/destination/properties/name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"notes\": {\r","                    \"$id\": \"#/properties/destination/properties/notes\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"phone\": {\r","                    \"$id\": \"#/properties/destination/properties/phone\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"state\": {\r","                    \"$id\": \"#/properties/destination/properties/state\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"street1\": {\r","                    \"$id\": \"#/properties/destination/properties/street1\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"street2\": {\r","                    \"$id\": \"#/properties/destination/properties/street2\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"zipcode\": {\r","                    \"$id\": \"#/properties/destination/properties/zipcode\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"dimensions\": {\r","            \"$id\": \"#/properties/dimensions\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"height\",\r","                \"length\",\r","                \"volume\",\r","                \"weight\",\r","                \"width\"\r","            ],\r","            \"properties\": {\r","                \"height\": {\r","                    \"$id\": \"#/properties/dimensions/properties/height\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"length\": {\r","                    \"$id\": \"#/properties/dimensions/properties/length\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"volume\": {\r","                    \"$id\": \"#/properties/dimensions/properties/volume\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"weight\": {\r","                    \"$id\": \"#/properties/dimensions/properties/weight\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"width\": {\r","                    \"$id\": \"#/properties/dimensions/properties/width\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"null\",\r","            \"default\": null\r","        },\r","        \"items\": {\r","            \"$id\": \"#/properties/items\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/items/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/items/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"description\",\r","                            \"quantity\",\r","                            \"reference\"\r","                        ],\r","                        \"properties\": {\r","                            \"description\": {\r","                                \"$id\": \"#/properties/items/items/anyOf/0/properties/description\",\r","                                \"type\": \"null\",\r","                                \"default\": null\r","                            },\r","                            \"quantity\": {\r","                                \"$id\": \"#/properties/items/items/anyOf/0/properties/quantity\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"reference\": {\r","                                \"$id\": \"#/properties/items/items/anyOf/0/properties/reference\",\r","                                \"type\": \"null\",\r","                                \"default\": null\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        },\r","        \"notes\": {\r","            \"$id\": \"#/properties/notes\",\r","            \"type\": \"null\",\r","            \"default\": null\r","        },\r","        \"number\": {\r","            \"$id\": \"#/properties/number\",\r","            \"type\": \"null\",\r","            \"default\": null\r","        },\r","        \"origin\": {\r","            \"$id\": \"#/properties/origin\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"city\",\r","                \"client_name\",\r","                \"client_reference\",\r","                \"company_name\",\r","                \"contact_name\",\r","                \"country\",\r","                \"email\",\r","                \"fax\",\r","                \"mobile\",\r","                \"name\",\r","                \"notes\",\r","                \"phone\",\r","                \"state\",\r","                \"street1\",\r","                \"street2\",\r","                \"zipcode\"\r","            ],\r","            \"properties\": {\r","                \"city\": {\r","                    \"$id\": \"#/properties/origin/properties/city\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"client_name\": {\r","                    \"$id\": \"#/properties/origin/properties/client_name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"client_reference\": {\r","                    \"$id\": \"#/properties/origin/properties/client_reference\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"company_name\": {\r","                    \"$id\": \"#/properties/origin/properties/company_name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"contact_name\": {\r","                    \"$id\": \"#/properties/origin/properties/contact_name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"country\": {\r","                    \"$id\": \"#/properties/origin/properties/country\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"email\": {\r","                    \"$id\": \"#/properties/origin/properties/email\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"fax\": {\r","                    \"$id\": \"#/properties/origin/properties/fax\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"mobile\": {\r","                    \"$id\": \"#/properties/origin/properties/mobile\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"name\": {\r","                    \"$id\": \"#/properties/origin/properties/name\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"notes\": {\r","                    \"$id\": \"#/properties/origin/properties/notes\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"phone\": {\r","                    \"$id\": \"#/properties/origin/properties/phone\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"state\": {\r","                    \"$id\": \"#/properties/origin/properties/state\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"street1\": {\r","                    \"$id\": \"#/properties/origin/properties/street1\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"street2\": {\r","                    \"$id\": \"#/properties/origin/properties/street2\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                },\r","                \"zipcode\": {\r","                    \"$id\": \"#/properties/origin/properties/zipcode\",\r","                    \"type\": \"null\",\r","                    \"default\": null\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"schedule_destination\": {\r","            \"$id\": \"#/properties/schedule_destination\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"date\",\r","                \"time01\",\r","                \"time02\"\r","            ],\r","            \"properties\": {\r","                \"date\": {\r","                    \"$id\": \"#/properties/schedule_destination/properties/date\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"time01\": {\r","                    \"$id\": \"#/properties/schedule_destination/properties/time01\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"time02\": {\r","                    \"$id\": \"#/properties/schedule_destination/properties/time02\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"schedule_origin\": {\r","            \"$id\": \"#/properties/schedule_origin\",\r","            \"type\": \"object\",\r","            \"default\": {},\r","            \"required\": [\r","                \"date\",\r","                \"time01\",\r","                \"time02\"\r","            ],\r","            \"properties\": {\r","                \"date\": {\r","                    \"$id\": \"#/properties/schedule_origin/properties/date\",\r","                    \"type\": \"string\",\r","                    \"default\": \"\"\r","                },\r","                \"time01\": {\r","                    \"$id\": \"#/properties/schedule_origin/properties/time01\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                },\r","                \"time02\": {\r","                    \"$id\": \"#/properties/schedule_origin/properties/time02\",\r","                    \"type\": \"integer\",\r","                    \"default\": 0\r","                }\r","            },\r","            \"additionalProperties\": true\r","        },\r","        \"status\": {\r","            \"$id\": \"#/properties/status\",\r","            \"type\": \"null\",\r","            \"default\": null\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"a2a8f7d6-c2e3-e1db-a4dc-b07b9780f28c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/shipment.svc/","description":"<p>These are all the JSON-schemas for SalenGo API.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["shipment.svc",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2a8f7d6-c2e3-e1db-a4dc-b07b9780f28c"},{"name":"LIST","event":[{"listen":"test","script":{"id":"9b7b27ff-42e5-4992-9e25-e8f49a8071e8","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f81bbe81-3e3b-4ef6-aadd-e6d959445a88","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"_LIST_Result\"\r","    ],\r","    \"properties\": {\r","        \"_LIST_Result\": {\r","            \"$id\": \"#/properties/_LIST_Result\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/_LIST_Result/items\",\r","                \"anyOf\": [\r","                    {\r","                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0\",\r","                        \"type\": \"object\",\r","                        \"default\": {},\r","                        \"required\": [\r","                            \"courier\",\r","                            \"currency\",\r","                            \"description\",\r","                            \"destination\",\r","                            \"dimensions\",\r","                            \"id\",\r","                            \"items\",\r","                            \"notes\",\r","                            \"number\",\r","                            \"origin\",\r","                            \"schedule_destination\",\r","                            \"schedule_origin\",\r","                            \"status\"\r","                        ],\r","                        \"properties\": {\r","                            \"courier\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/courier\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"id\",\r","                                    \"information\",\r","                                    \"name\"\r","                                ],\r","                                \"properties\": {\r","                                    \"id\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/courier/properties/id\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"information\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/courier/properties/information\",\r","                                        \"type\": \"object\",\r","                                        \"default\": {},\r","                                        \"required\": [\r","                                            \"direct\",\r","                                            \"signature\"\r","                                        ],\r","                                        \"properties\": {\r","                                            \"direct\": {\r","                                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/courier/properties/information/properties/direct\",\r","                                                \"type\": \"boolean\",\r","                                                \"default\": false\r","                                            },\r","                                            \"signature\": {\r","                                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/courier/properties/information/properties/signature\",\r","                                                \"type\": \"boolean\",\r","                                                \"default\": false\r","                                            }\r","                                        },\r","                                        \"additionalProperties\": true\r","                                    },\r","                                    \"name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/courier/properties/name\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"currency\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/currency\",\r","                                \"type\": \"integer\",\r","                                \"default\": 0\r","                            },\r","                            \"description\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/description\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"destination\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"city\",\r","                                    \"client_name\",\r","                                    \"client_reference\",\r","                                    \"company_name\",\r","                                    \"contact_name\",\r","                                    \"country\",\r","                                    \"email\",\r","                                    \"fax\",\r","                                    \"mobile\",\r","                                    \"name\",\r","                                    \"notes\",\r","                                    \"phone\",\r","                                    \"state\",\r","                                    \"street1\",\r","                                    \"street2\",\r","                                    \"zipcode\"\r","                                ],\r","                                \"properties\": {\r","                                    \"city\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/city\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"client_name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/client_name\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"client_reference\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/client_reference\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"company_name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/company_name\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"contact_name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/contact_name\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"country\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/country\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"email\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/email\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"fax\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/fax\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"mobile\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/mobile\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/name\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"notes\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/notes\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"phone\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/phone\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"state\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/state\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"street1\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/street1\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"street2\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/street2\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"zipcode\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/destination/properties/zipcode\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"dimensions\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/dimensions\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"height\",\r","                                    \"length\",\r","                                    \"volume\",\r","                                    \"weight\",\r","                                    \"width\"\r","                                ],\r","                                \"properties\": {\r","                                    \"height\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/dimensions/properties/height\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"length\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/dimensions/properties/length\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"volume\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/dimensions/properties/volume\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"weight\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/dimensions/properties/weight\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"width\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/dimensions/properties/width\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"id\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/id\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"items\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/items\",\r","                                \"type\": \"array\",\r","                                \"default\": [],\r","                                \"additionalItems\": true,\r","                                \"items\": {\r","                                    \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/items/items\"\r","                                }\r","                            },\r","                            \"notes\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/notes\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"number\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/number\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            },\r","                            \"origin\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"city\",\r","                                    \"client_name\",\r","                                    \"client_reference\",\r","                                    \"company_name\",\r","                                    \"contact_name\",\r","                                    \"country\",\r","                                    \"email\",\r","                                    \"fax\",\r","                                    \"mobile\",\r","                                    \"name\",\r","                                    \"notes\",\r","                                    \"phone\",\r","                                    \"state\",\r","                                    \"street1\",\r","                                    \"street2\",\r","                                    \"zipcode\"\r","                                ],\r","                                \"properties\": {\r","                                    \"city\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/city\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"client_name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/client_name\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"client_reference\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/client_reference\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"company_name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/company_name\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"contact_name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/contact_name\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"country\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/country\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"email\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/email\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"fax\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/fax\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"mobile\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/mobile\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"name\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/name\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"notes\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/notes\",\r","                                        \"type\": \"null\",\r","                                        \"default\": null\r","                                    },\r","                                    \"phone\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/phone\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"state\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/state\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"street1\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/street1\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"street2\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/street2\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"zipcode\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/origin/properties/zipcode\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"schedule_destination\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/schedule_destination\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"date\",\r","                                    \"time01\",\r","                                    \"time02\"\r","                                ],\r","                                \"properties\": {\r","                                    \"date\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/schedule_destination/properties/date\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"time01\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/schedule_destination/properties/time01\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"time02\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/schedule_destination/properties/time02\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"schedule_origin\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/schedule_origin\",\r","                                \"type\": \"object\",\r","                                \"default\": {},\r","                                \"required\": [\r","                                    \"date\",\r","                                    \"time01\",\r","                                    \"time02\"\r","                                ],\r","                                \"properties\": {\r","                                    \"date\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/schedule_origin/properties/date\",\r","                                        \"type\": \"string\",\r","                                        \"default\": \"\"\r","                                    },\r","                                    \"time01\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/schedule_origin/properties/time01\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    },\r","                                    \"time02\": {\r","                                        \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/schedule_origin/properties/time02\",\r","                                        \"type\": \"integer\",\r","                                        \"default\": 0\r","                                    }\r","                                },\r","                                \"additionalProperties\": true\r","                            },\r","                            \"status\": {\r","                                \"$id\": \"#/properties/_LIST_Result/items/anyOf/0/properties/status\",\r","                                \"type\": \"string\",\r","                                \"default\": \"\"\r","                            }\r","                        },\r","                        \"additionalProperties\": true\r","                    }\r","                ]\r","            }\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"089e781c-d02c-0ea7-5a54-9cf72b3ca2bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\n  \"lang\" : \"fr\",\n  \"search\": {\n     \"delivery_date_from\": \"2018/01/01\",\n     \"delivery_date_to\": \"2018/05/29\"\n  },\n  \"params\": {\n    \"folder\" : 0,\n    \"pagination\" : {\n      \"perpage\": 10,\n      \"page\" :1\n    }\n  }\n}"},"url":"{{url}}/shipment.svc/list","description":"<p>You can list all orders created by sending a POST request to the orders endpoint. The result will be paginated.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["shipment.svc","list"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"089e781c-d02c-0ea7-5a54-9cf72b3ca2bb"}],"id":"a3da1285-851d-a65e-e16e-da119a7e2e3b","event":[{"listen":"prerequest","script":{"id":"f27302dd-1249-4111-a402-303b7b7afabd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3a023b50-f85e-49d7-90e7-fec6582032df","type":"text/javascript","exec":[""]}}],"_postman_id":"a3da1285-851d-a65e-e16e-da119a7e2e3b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"STOCK","item":[],"id":"de297c8a-cbb9-4a62-99bd-584543b4e486","_postman_id":"de297c8a-cbb9-4a62-99bd-584543b4e486","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"STAFF","item":[{"name":"[model]","event":[{"listen":"test","script":{"id":"982d0362-7c77-4a0d-a998-51e639b59479","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"ffcc1875-86af-415c-9dfd-2f144335d9db","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"default\": {},\r","    \"required\": [\r","        \"admin_rights\",\r","        \"company_owner\",\r","        \"email\",\r","        \"fullname\",\r","        \"id\",\r","        \"lastlogin\",\r","        \"licences\",\r","        \"permission_shield\",\r","        \"privilege\",\r","        \"profile\",\r","        \"role\"\r","    ],\r","    \"properties\": {\r","        \"admin_rights\": {\r","            \"$id\": \"#/properties/admin_rights\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        },\r","        \"company_owner\": {\r","            \"$id\": \"#/properties/company_owner\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        },\r","        \"email\": {\r","            \"$id\": \"#/properties/email\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"fullname\": {\r","            \"$id\": \"#/properties/fullname\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"lastlogin\": {\r","            \"$id\": \"#/properties/lastlogin\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"licences\": {\r","            \"$id\": \"#/properties/licences\",\r","            \"type\": \"array\",\r","            \"default\": [],\r","            \"additionalItems\": true,\r","            \"items\": {\r","                \"$id\": \"#/properties/licences/items\"\r","            }\r","        },\r","        \"permission_shield\": {\r","            \"$id\": \"#/properties/permission_shield\",\r","            \"type\": \"boolean\",\r","            \"default\": false\r","        },\r","        \"privilege\": {\r","            \"$id\": \"#/properties/privilege\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"profile\": {\r","            \"$id\": \"#/properties/profile\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        },\r","        \"role\": {\r","            \"$id\": \"#/properties/role\",\r","            \"type\": \"string\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"9e77b957-4992-b1ef-c3ee-c8b554359460","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/staff.svc/","description":"<p>These are all the JSON-schemas for SalenGo API.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["staff.svc",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9e77b957-4992-b1ef-c3ee-c8b554359460"}],"id":"0a1583c8-4814-e62b-9695-82e0508f2625","_postman_id":"0a1583c8-4814-e62b-9695-82e0508f2625","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}},{"name":"SYSTEM","item":[{"name":"status","event":[{"listen":"test","script":{"id":"501a7b16-3563-43f5-bb5f-cb4e90cef68f","exec":["pm.test(\"Validate BODY test\", function () { ","   pm.expect(pm.response.text()).to.include(\"0\");","});",""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"e89183ca-38f3-4175-bafd-c7cae966407b","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"string\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": \"\"\r","});"],"type":"text/javascript","packages":{}}}],"id":"fbaf947a-5ec7-519b-d1f6-1cbd5c4a60fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/system.svc/status","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["system.svc","status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fbaf947a-5ec7-519b-d1f6-1cbd5c4a60fa"},{"name":"hello","event":[{"listen":"test","script":{"id":"724a8a33-8cdd-4803-88bc-bce0c74f84e4","exec":["pm.test(\"Validate BODY test\", function () { \r","    var jsonData = pm.response.json();\r","\r","    pm.expect(jsonData.title).to.include(\"All good for demo@salengo.com\"); \r","});\r","\r",""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"1ddccec0-8aa4-4af6-a81f-eddc6227f050","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"object\",\r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": {},\r","    \"required\": [\r","        \"content\",\r","        \"data\",\r","        \"error\",\r","        \"i\",\r","        \"id\",\r","        \"r\",\r","        \"refresh\",\r","        \"title\",\r","        \"url\"\r","    ],\r","    \"properties\": {\r","        \"content\": {\r","            \"$id\": \"#/properties/content\",\r","            \"type\": \"string\",\r","            \"title\": \"The content schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"data\": {\r","            \"$id\": \"#/properties/data\",\r","            \"type\": \"string\",\r","            \"title\": \"The data schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"error\": {\r","            \"$id\": \"#/properties/error\",\r","            \"type\": \"string\",\r","            \"title\": \"The error schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"i\": {\r","            \"$id\": \"#/properties/i\",\r","            \"type\": \"string\",\r","            \"title\": \"The i schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"id\": {\r","            \"$id\": \"#/properties/id\",\r","            \"type\": \"string\",\r","            \"title\": \"The id schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"r\": {\r","            \"$id\": \"#/properties/r\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The r schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"refresh\": {\r","            \"$id\": \"#/properties/refresh\",\r","            \"type\": \"boolean\",\r","            \"title\": \"The refresh schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": false\r","        },\r","        \"title\": {\r","            \"$id\": \"#/properties/title\",\r","            \"type\": \"string\",\r","            \"title\": \"The title schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        },\r","        \"url\": {\r","            \"$id\": \"#/properties/url\",\r","            \"type\": \"string\",\r","            \"title\": \"The url schema\",\r","            \"description\": \"An explanation about the purpose of this instance.\",\r","            \"default\": \"\"\r","        }\r","    },\r","    \"additionalProperties\": true\r","});"],"type":"text/javascript"}}],"id":"2ece68f4-9be1-712f-9071-33e328d6ebcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/system.svc/","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["system.svc",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ece68f4-9be1-712f-9071-33e328d6ebcc"},{"name":"hello","event":[{"listen":"test","script":{"id":"c2069801-3d9b-4659-961c-033c9d1e7691","exec":["pm.test(\"Validate BODY test\", function () { ","    var jsonData = pm.response.json();","","    pm.expect(jsonData.content).to.include(\"NONE\"); ","    pm.expect(jsonData.title).to.include(\"All good for demo@salengo.com\"); ","    pm.expect(jsonData.r).to.be.true; ","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"968b7817-4a64-4124-92c6-99dd1784f2c8","exec":["pm.variables.set(\"schema\", {\r","    \"content\": \"NONE\",\r","    \"data\": \"Licences Access List : API, CATERER, COMPANYOWNER, DELIVERY, PURCHASES, STAFF, STOCK, TRIGGERS\",\r","    \"error\": \"\",\r","    \"i\": \"\",\r","    \"id\": \"\",\r","    \"r\": true,\r","    \"refresh\": false,\r","    \"title\": \"All good for demo@salengo.com\",\r","    \"url\": \"\"\r","});"],"type":"text/javascript"}}],"id":"d682843b-1ffa-6342-a33f-78e100552257","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"body":{"mode":"raw","raw":"{\r\n  \"content\" : \"NONE\"\r\n}"},"url":"{{url}}/system.svc/","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["system.svc",""],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d682843b-1ffa-6342-a33f-78e100552257"},{"name":"time","event":[{"listen":"test","script":{"id":"9980454d-411a-4e1c-a3f8-cb19f4cbde72","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"a492dae5-b310-4433-b95b-fe6162c3cedd","exec":["pm.variables.set(\"schema\", {\r","    \"$schema\": \"http://json-schema.org/draft-07/schema\",\r","    \"$id\": \"http://example.com/example.json\",\r","    \"type\": \"string\", \r","    \"title\": \"The root schema\",\r","    \"description\": \"The root schema comprises the entire JSON document.\",\r","    \"default\": \"\"\r","}\r",");"],"type":"text/javascript"}}],"id":"34fccdab-b4f6-f567-7019-81eb1c58a698","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"apikey","value":"{{APIKEY}}"}],"url":"{{url}}/system.svc/time","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}},"urlObject":{"path":["system.svc","time"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"34fccdab-b4f6-f567-7019-81eb1c58a698"}],"id":"ba0ab547-f0b5-63f5-ab35-2120f3caa9a7","_postman_id":"ba0ab547-f0b5-63f5-ab35-2120f3caa9a7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]},"isInherited":true,"source":{"_postman_id":"29a03add-b9ae-17bc-c411-c51d27d32327","id":"29a03add-b9ae-17bc-c411-c51d27d32327","name":"SALENGO - API","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{apikey}}"}]}},"event":[{"listen":"prerequest","script":{"id":"51ff0534-58a6-4fab-99b3-5f1eb03073e4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bc47547e-1268-48a9-ae2d-107385f36884","type":"text/javascript","exec":["var Ajv = require('ajv'),","    ajv = new Ajv({logger: console, allErrors: true});","","pm.test(\"Validate REQUEST\", function() {","    pm.response.to.have.status(200);","    pm.response.to.be.ok;","    pm.response.to.be.json;","});","","pm.test(\"Validate STRUCTURE\", function() {","    let schema = pm.variables.get(\"schema\");","    //let jsonData = JSON.parse(pm.response.json());","    let jsonData = pm.response.json();","    ","    //pm.response.to.have.jsonSchema(schema);","    pm.expect(tv4.validate(jsonData, schema),true,true).to.be.true;","    pm.expect(ajv.validate( schema, jsonData), JSON.stringify(ajv.errors)).to.be.true","})"]}}]}